/** * <copyright> * </copyright> * * $Id: XsdType.java,v 1.2 2011/03/05 21:37:36 auhl Exp $ */ package abapmapping.abapdictionary; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Xsd Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link abapmapping.abapdictionary.XsdType#getXsdType <em>Xsd Type</em>}</li> * <li>{@link abapmapping.abapdictionary.XsdType#getLength <em>Length</em>}</li> * <li>{@link abapmapping.abapdictionary.XsdType#getPattern <em>Pattern</em>}</li> * <li>{@link abapmapping.abapdictionary.XsdType#getTotalDigits <em>Total Digits</em>}</li> * <li>{@link abapmapping.abapdictionary.XsdType#getFractionDigits <em>Fraction Digits</em>}</li> * </ul> * </p> * * @see abapmapping.abapdictionary.AbapdictionaryPackage#getXsdType() * @model * @generated */ public interface XsdType extends EObject { /** * Returns the value of the '<em><b>Xsd Type</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Xsd Type</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Xsd Type</em>' attribute. * @see #setXsdType(String) * @see abapmapping.abapdictionary.AbapdictionaryPackage#getXsdType_XsdType() * @model unique="false" required="true" ordered="false" * @generated */ String getXsdType(); /** * Sets the value of the '{@link abapmapping.abapdictionary.XsdType#getXsdType <em>Xsd Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Xsd Type</em>' attribute. * @see #getXsdType() * @generated */ void setXsdType(String value); /** * Returns the value of the '<em><b>Length</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Length</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Length</em>' attribute. * @see #setLength(int) * @see abapmapping.abapdictionary.AbapdictionaryPackage#getXsdType_Length() * @model unique="false" required="true" ordered="false" * @generated */ int getLength(); /** * Sets the value of the '{@link abapmapping.abapdictionary.XsdType#getLength <em>Length</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Length</em>' attribute. * @see #getLength() * @generated */ void setLength(int value); /** * Returns the value of the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Pattern</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Pattern</em>' attribute. * @see #setPattern(String) * @see abapmapping.abapdictionary.AbapdictionaryPackage#getXsdType_Pattern() * @model unique="false" required="true" ordered="false" * @generated */ String getPattern(); /** * Sets the value of the '{@link abapmapping.abapdictionary.XsdType#getPattern <em>Pattern</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Pattern</em>' attribute. * @see #getPattern() * @generated */ void setPattern(String value); /** * Returns the value of the '<em><b>Total Digits</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Total Digits</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Total Digits</em>' attribute. * @see #setTotalDigits(int) * @see abapmapping.abapdictionary.AbapdictionaryPackage#getXsdType_TotalDigits() * @model unique="false" required="true" ordered="false" * @generated */ int getTotalDigits(); /** * Sets the value of the '{@link abapmapping.abapdictionary.XsdType#getTotalDigits <em>Total Digits</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Total Digits</em>' attribute. * @see #getTotalDigits() * @generated */ void setTotalDigits(int value); /** * Returns the value of the '<em><b>Fraction Digits</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Fraction Digits</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Fraction Digits</em>' attribute. * @see #setFractionDigits(int) * @see abapmapping.abapdictionary.AbapdictionaryPackage#getXsdType_FractionDigits() * @model unique="false" required="true" ordered="false" * @generated */ int getFractionDigits(); /** * Sets the value of the '{@link abapmapping.abapdictionary.XsdType#getFractionDigits <em>Fraction Digits</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Fraction Digits</em>' attribute. * @see #getFractionDigits() * @generated */ void setFractionDigits(int value); } // XsdType