001    /*******************************************************************************
002     * Portions created by Sebastian Thomschke are copyright (c) 2005-2011 Sebastian
003     * Thomschke.
004     * 
005     * All Rights Reserved. This program and the accompanying materials
006     * are made available under the terms of the Eclipse Public License v1.0
007     * which accompanies this distribution, and is available at
008     * http://www.eclipse.org/legal/epl-v10.html
009     * 
010     * Contributors:
011     *     Sebastian Thomschke - initial implementation.
012     *******************************************************************************/
013    package net.sf.oval.configuration.pojo.elements;
014    
015    import java.util.List;
016    
017    import net.sf.oval.Check;
018    
019    /**
020     * @author Sebastian Thomschke
021     */
022    public class ConstraintSetConfiguration extends ConfigurationElement
023    {
024            private static final long serialVersionUID = 1L;
025            
026            public List<Check> checks;
027    
028            /**
029             * the id of the constraint set
030             */
031            public String id;
032    }