/*
 * ECatalog is a database front-end, with two main features:
 * 1. Use of preferences
 *  A preference-based approach, where the user is allowed to define the importance of each criterion.
 *  Then the items are ranked accordingly to his criteria.
 * 2. Trade-off analysis
 *  A cooperative database approach, where the system "argues" with the user about his criteria.
 *  When there are no matching items, the system explains the minimal conflicting set and
 *  give some possible strong and weak relaxations about his criteria.
 * This package also containts the software and the set-up details used for our User Study,
 * comparing the use or not of the two previous features mentioned above.
 *
 * Copyright (C) 2006 David Portabella Clotet, Artificial Intelligence Laboratory, EPFL
 * 
 * This file is part of ecatalog-1.0.zip
 * 
 * ECatalog is free software and a free user study set-up;
 * you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * 
 * ECatalog is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with ECatalog; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 * 
 * @version 1.0
 * @author David Portabella
 * To contact the author:
 * email: david@portabella.name and david.portabella@epfl.ch
 * 
 * More information about ECatalog:
 *  http://sourceforge.net/projects/ecatalog/
 *  http://icwww.epfl.ch/~portabel/ecatalogs/
 */

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2006.07.13 at 01:17:36 PM CEST 
//


package ecatalog.jaxb.multipleValuesConstraintConfig;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
import ecatalog.jaxb.multipleValuesConstraintConfig.MultipleValuesConstraintConfigType;
import ecatalog.jaxb.multipleValuesConstraintConfig.ObjectFactory;


/**
 * This object contains factory methods for each 
 * Java content interface and Java element interface 
 * generated in the ecatalog.jaxb.multipleValuesConstraintConfig package. 
 * <p>An ObjectFactory allows you to programatically 
 * construct new instances of the Java representation 
 * for XML content. The Java representation of XML 
 * content can consist of schema derived interfaces 
 * and classes representing the binding of schema 
 * type definitions, element declarations and model 
 * groups.  Factory methods for each of these are 
 * provided in this class.
 * 
 */
@XmlRegistry
public class ObjectFactory {

    private final static QName _Cconfig_QNAME = new QName("", "cconfig");

    /**
     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: ecatalog.jaxb.multipleValuesConstraintConfig
     * 
     */
    public ObjectFactory() {
    }

    /**
     * Create an instance of {@link MultipleValuesConstraintConfigType }
     * 
     */
    public MultipleValuesConstraintConfigType createMultipleValuesConstraintConfigType() {
        return new MultipleValuesConstraintConfigType();
    }

    /**
     * Create an instance of {@link JAXBElement }{@code <}{@link MultipleValuesConstraintConfigType }{@code >}}
     * 
     */
    @XmlElementDecl(namespace = "", name = "cconfig")
    public JAXBElement<MultipleValuesConstraintConfigType> createCconfig(MultipleValuesConstraintConfigType value) {
        return new JAXBElement<MultipleValuesConstraintConfigType>(_Cconfig_QNAME, MultipleValuesConstraintConfigType.class, null, value);
    }

}

