/* * JBoss, Home of Professional Open Source. * * See the LEGAL.txt file distributed with this work for information regarding copyright ownership and licensing. * * See the AUTHORS.txt file distributed with this work for a full listing of individual contributors. */ package org.teiid.designer.metamodels.xml; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Choice Option</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.teiid.designer.metamodels.xml.ChoiceOption#getChoiceCriteria <em>Choice Criteria</em>}</li> * <li>{@link org.teiid.designer.metamodels.xml.ChoiceOption#getChoiceOrder <em>Choice Order</em>}</li> * <li>{@link org.teiid.designer.metamodels.xml.ChoiceOption#getDefaultFor <em>Default For</em>}</li> * </ul> * </p> * * @see org.teiid.designer.metamodels.xml.XmlDocumentPackage#getChoiceOption() * @model interface="true" abstract="true" * @generated * * @since 8.0 */ public interface ChoiceOption extends EObject{ /** * Returns the value of the '<em><b>Choice Criteria</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Choice Criteria</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Choice Criteria</em>' attribute. * @see #setChoiceCriteria(String) * @see org.teiid.designer.metamodels.xml.XmlDocumentPackage#getChoiceOption_ChoiceCriteria() * @model * @generated */ String getChoiceCriteria(); /** * Sets the value of the '{@link org.teiid.designer.metamodels.xml.ChoiceOption#getChoiceCriteria <em>Choice Criteria</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Choice Criteria</em>' attribute. * @see #getChoiceCriteria() * @generated */ void setChoiceCriteria(String value); /** * Returns the value of the '<em><b>Choice Order</b></em>' attribute. * The default value is <code>"-1"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Choice Order</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * <!-- begin-model-doc --> * Represents the order that this choice option appears in the choice, with a default value of -1 if the choice value hasn't been set (or doesn't apply). * <!-- end-model-doc --> * @return the value of the '<em>Choice Order</em>' attribute. * @see #setChoiceOrder(int) * @see org.teiid.designer.metamodels.xml.XmlDocumentPackage#getChoiceOption_ChoiceOrder() * @model default="-1" * @generated */ int getChoiceOrder(); /** * Sets the value of the '{@link org.teiid.designer.metamodels.xml.ChoiceOption#getChoiceOrder <em>Choice Order</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Choice Order</em>' attribute. * @see #getChoiceOrder() * @generated */ void setChoiceOrder(int value); /** * Returns the value of the '<em><b>Default For</b></em>' reference. * It is bidirectional and its opposite is '{@link org.teiid.designer.metamodels.xml.XmlChoice#getDefaultOption <em>Default Option</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Default For</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Default For</em>' reference. * @see #setDefaultFor(XmlChoice) * @see org.teiid.designer.metamodels.xml.XmlDocumentPackage#getChoiceOption_DefaultFor() * @see org.teiid.designer.metamodels.xml.XmlChoice#getDefaultOption * @model opposite="defaultOption" * @generated */ XmlChoice getDefaultFor(); /** * Sets the value of the '{@link org.teiid.designer.metamodels.xml.ChoiceOption#getDefaultFor <em>Default For</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Default For</em>' reference. * @see #getDefaultFor() * @generated */ void setDefaultFor(XmlChoice value); } // ChoiceOption