|
From: jistrawn <jis...@us...> - 2006-10-24 21:44:30
|
Update of /cvsroot/modelwizard/source/Model Wizard Plugin/src/net/sourceforge/modelWizard/ShoppingCartSchema In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv3866/src/net/sourceforge/modelWizard/ShoppingCartSchema Modified Files: ShoppingCartType.java DocumentRoot.java Profile.java Log Message: removed unused imports or reformatted import order (ctrl-shift-o) Index: ShoppingCartType.java =================================================================== RCS file: /cvsroot/modelwizard/source/Model Wizard Plugin/src/net/sourceforge/modelWizard/ShoppingCartSchema/ShoppingCartType.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ShoppingCartType.java 6 Oct 2005 15:59:05 -0000 1.1 --- ShoppingCartType.java 24 Oct 2006 21:44:26 -0000 1.2 *************** *** 1,66 **** ! /** ! * <copyright> ! * </copyright> ! * ! * $Id$ ! */ ! package net.sourceforge.modelWizard.ShoppingCartSchema; ! ! import org.eclipse.emf.common.util.EList; ! ! import org.eclipse.emf.ecore.EObject; ! ! import org.eclipse.emf.ecore.util.FeatureMap; ! ! /** ! * <!-- begin-user-doc --> ! * A representation of the model object '<em><b>Shopping Cart Type</b></em>'. ! * <!-- end-user-doc --> ! * ! * <p> ! * The following features are supported: ! * <ul> ! * <li>{@link net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartType#getGroup <em>Group</em>}</li> ! * <li>{@link net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartType#getProfile <em>Profile</em>}</li> ! * </ul> ! * </p> ! * ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getShoppingCartType() ! * @model extendedMetaData="name='ShoppingCart_._type' kind='elementOnly'" ! * @generated ! */ ! public interface ShoppingCartType extends EObject { ! /** ! * Returns the value of the '<em><b>Group</b></em>' attribute list. ! * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. ! * <!-- begin-user-doc --> ! * <p> ! * If the meaning of the '<em>Group</em>' attribute list isn't clear, ! * there really should be more of a description here... ! * </p> ! * <!-- end-user-doc --> ! * @return the value of the '<em>Group</em>' attribute list. ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getShoppingCartType_Group() ! * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" ! * extendedMetaData="kind='group' name='group:0'" ! * @generated ! */ ! FeatureMap getGroup(); ! ! /** ! * Returns the value of the '<em><b>Profile</b></em>' containment reference list. ! * The list contents are of type {@link net.sourceforge.modelWizard.ShoppingCartSchema.Profile}. ! * <!-- begin-user-doc --> ! * <!-- end-user-doc --> ! * <!-- begin-model-doc --> ! * One per profile in the cart ! * <!-- end-model-doc --> ! * @return the value of the '<em>Profile</em>' containment reference list. ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getShoppingCartType_Profile() ! * @model type="net.sourceforge.modelWizard.ShoppingCartSchema.Profile" containment="true" resolveProxies="false" transient="true" volatile="true" derived="true" ! * extendedMetaData="kind='element' name='Profile' namespace='##targetNamespace' group='group:0'" ! * @generated ! */ ! EList getProfile(); ! ! } // ShoppingCartType --- 1,64 ---- ! /** ! * <copyright> ! * </copyright> ! * ! * $Id$ ! */ ! package net.sourceforge.modelWizard.ShoppingCartSchema; ! ! import org.eclipse.emf.common.util.EList; ! import org.eclipse.emf.ecore.EObject; ! import org.eclipse.emf.ecore.util.FeatureMap; ! ! /** ! * <!-- begin-user-doc --> ! * A representation of the model object '<em><b>Shopping Cart Type</b></em>'. ! * <!-- end-user-doc --> ! * ! * <p> ! * The following features are supported: ! * <ul> ! * <li>{@link net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartType#getGroup <em>Group</em>}</li> ! * <li>{@link net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartType#getProfile <em>Profile</em>}</li> ! * </ul> ! * </p> ! * ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getShoppingCartType() ! * @model extendedMetaData="name='ShoppingCart_._type' kind='elementOnly'" ! * @generated ! */ ! public interface ShoppingCartType extends EObject { ! /** ! * Returns the value of the '<em><b>Group</b></em>' attribute list. ! * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. ! * <!-- begin-user-doc --> ! * <p> ! * If the meaning of the '<em>Group</em>' attribute list isn't clear, ! * there really should be more of a description here... ! * </p> ! * <!-- end-user-doc --> ! * @return the value of the '<em>Group</em>' attribute list. ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getShoppingCartType_Group() ! * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" ! * extendedMetaData="kind='group' name='group:0'" ! * @generated ! */ ! FeatureMap getGroup(); ! ! /** ! * Returns the value of the '<em><b>Profile</b></em>' containment reference list. ! * The list contents are of type {@link net.sourceforge.modelWizard.ShoppingCartSchema.Profile}. ! * <!-- begin-user-doc --> ! * <!-- end-user-doc --> ! * <!-- begin-model-doc --> ! * One per profile in the cart ! * <!-- end-model-doc --> ! * @return the value of the '<em>Profile</em>' containment reference list. ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getShoppingCartType_Profile() ! * @model type="net.sourceforge.modelWizard.ShoppingCartSchema.Profile" containment="true" resolveProxies="false" transient="true" volatile="true" derived="true" ! * extendedMetaData="kind='element' name='Profile' namespace='##targetNamespace' group='group:0'" ! * @generated ! */ ! EList getProfile(); ! ! } // ShoppingCartType Index: DocumentRoot.java =================================================================== RCS file: /cvsroot/modelwizard/source/Model Wizard Plugin/src/net/sourceforge/modelWizard/ShoppingCartSchema/DocumentRoot.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DocumentRoot.java 6 Oct 2005 15:59:05 -0000 1.1 --- DocumentRoot.java 24 Oct 2006 21:44:26 -0000 1.2 *************** *** 1,114 **** ! /** ! * <copyright> ! * </copyright> ! * ! * $Id$ ! */ ! package net.sourceforge.modelWizard.ShoppingCartSchema; ! ! import org.eclipse.emf.common.util.EMap; ! ! import org.eclipse.emf.ecore.EObject; ! ! import org.eclipse.emf.ecore.util.FeatureMap; ! ! /** ! * <!-- begin-user-doc --> ! * A representation of the model object '<em><b>Document Root</b></em>'. ! * <!-- end-user-doc --> ! * ! * <p> ! * The following features are supported: ! * <ul> ! * <li>{@link net.sourceforge.modelWizard.ShoppingCartSchema.DocumentRoot#getMixed <em>Mixed</em>}</li> ! * <li>{@link net.sourceforge.modelWizard.ShoppingCartSchema.DocumentRoot#getXMLNSPrefixMap <em>XMLNS Prefix Map</em>}</li> ! * <li>{@link net.sourceforge.modelWizard.ShoppingCartSchema.DocumentRoot#getXSISchemaLocation <em>XSI Schema Location</em>}</li> ! * <li>{@link net.sourceforge.modelWizard.ShoppingCartSchema.DocumentRoot#getShoppingCart <em>Shopping Cart</em>}</li> ! * </ul> ! * </p> ! * ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getDocumentRoot() ! * @model extendedMetaData="name='' kind='mixed'" ! * @generated ! */ ! public interface DocumentRoot extends EObject { ! /** ! * Returns the value of the '<em><b>Mixed</b></em>' attribute list. ! * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. ! * <!-- begin-user-doc --> ! * <p> ! * If the meaning of the '<em>Mixed</em>' attribute list isn't clear, ! * there really should be more of a description here... ! * </p> ! * <!-- end-user-doc --> ! * @return the value of the '<em>Mixed</em>' attribute list. ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getDocumentRoot_Mixed() ! * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" ! * extendedMetaData="kind='elementWildcard' name=':mixed'" ! * @generated ! */ ! FeatureMap getMixed(); ! ! /** ! * Returns the value of the '<em><b>XMLNS Prefix Map</b></em>' map. ! * The key is of type {@link java.lang.String}, ! * and the value is of type {@link java.lang.String}, ! * <!-- begin-user-doc --> ! * <p> ! * If the meaning of the '<em>XMLNS Prefix Map</em>' map isn't clear, ! * there really should be more of a description here... ! * </p> ! * <!-- end-user-doc --> ! * @return the value of the '<em>XMLNS Prefix Map</em>' map. ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getDocumentRoot_XMLNSPrefixMap() ! * @model mapType="org.eclipse.emf.ecore.EStringToStringMapEntry" keyType="java.lang.String" valueType="java.lang.String" transient="true" ! * extendedMetaData="kind='attribute' name='xmlns:prefix'" ! * @generated ! */ ! EMap getXMLNSPrefixMap(); ! ! /** ! * Returns the value of the '<em><b>XSI Schema Location</b></em>' map. ! * The key is of type {@link java.lang.String}, ! * and the value is of type {@link java.lang.String}, ! * <!-- begin-user-doc --> ! * <p> ! * If the meaning of the '<em>XSI Schema Location</em>' map isn't clear, ! * there really should be more of a description here... ! * </p> ! * <!-- end-user-doc --> ! * @return the value of the '<em>XSI Schema Location</em>' map. ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getDocumentRoot_XSISchemaLocation() ! * @model mapType="org.eclipse.emf.ecore.EStringToStringMapEntry" keyType="java.lang.String" valueType="java.lang.String" transient="true" ! * extendedMetaData="kind='attribute' name='xsi:schemaLocation'" ! * @generated ! */ ! EMap getXSISchemaLocation(); ! ! /** ! * Returns the value of the '<em><b>Shopping Cart</b></em>' containment reference. ! * <!-- begin-user-doc --> ! * <!-- end-user-doc --> ! * <!-- begin-model-doc --> ! * The top level elemnt. The shopping cart itself. ! * <!-- end-model-doc --> ! * @return the value of the '<em>Shopping Cart</em>' containment reference. ! * @see #setShoppingCart(ShoppingCartType) ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getDocumentRoot_ShoppingCart() ! * @model containment="true" resolveProxies="false" upper="-2" transient="true" volatile="true" derived="true" ! * extendedMetaData="kind='element' name='ShoppingCart' namespace='##targetNamespace'" ! * @generated ! */ ! ShoppingCartType getShoppingCart(); ! ! /** ! * Sets the value of the '{@link net.sourceforge.modelWizard.ShoppingCartSchema.DocumentRoot#getShoppingCart <em>Shopping Cart</em>}' containment reference. ! * <!-- begin-user-doc --> ! * <!-- end-user-doc --> ! * @param value the new value of the '<em>Shopping Cart</em>' containment reference. ! * @see #getShoppingCart() ! * @generated ! */ ! void setShoppingCart(ShoppingCartType value); ! ! } // DocumentRoot --- 1,112 ---- ! /** ! * <copyright> ! * </copyright> ! * ! * $Id$ ! */ ! package net.sourceforge.modelWizard.ShoppingCartSchema; ! ! import org.eclipse.emf.common.util.EMap; ! import org.eclipse.emf.ecore.EObject; ! import org.eclipse.emf.ecore.util.FeatureMap; ! ! /** ! * <!-- begin-user-doc --> ! * A representation of the model object '<em><b>Document Root</b></em>'. ! * <!-- end-user-doc --> ! * ! * <p> ! * The following features are supported: ! * <ul> ! * <li>{@link net.sourceforge.modelWizard.ShoppingCartSchema.DocumentRoot#getMixed <em>Mixed</em>}</li> ! * <li>{@link net.sourceforge.modelWizard.ShoppingCartSchema.DocumentRoot#getXMLNSPrefixMap <em>XMLNS Prefix Map</em>}</li> ! * <li>{@link net.sourceforge.modelWizard.ShoppingCartSchema.DocumentRoot#getXSISchemaLocation <em>XSI Schema Location</em>}</li> ! * <li>{@link net.sourceforge.modelWizard.ShoppingCartSchema.DocumentRoot#getShoppingCart <em>Shopping Cart</em>}</li> ! * </ul> ! * </p> ! * ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getDocumentRoot() ! * @model extendedMetaData="name='' kind='mixed'" ! * @generated ! */ ! public interface DocumentRoot extends EObject { ! /** ! * Returns the value of the '<em><b>Mixed</b></em>' attribute list. ! * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. ! * <!-- begin-user-doc --> ! * <p> ! * If the meaning of the '<em>Mixed</em>' attribute list isn't clear, ! * there really should be more of a description here... ! * </p> ! * <!-- end-user-doc --> ! * @return the value of the '<em>Mixed</em>' attribute list. ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getDocumentRoot_Mixed() ! * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" ! * extendedMetaData="kind='elementWildcard' name=':mixed'" ! * @generated ! */ ! FeatureMap getMixed(); ! ! /** ! * Returns the value of the '<em><b>XMLNS Prefix Map</b></em>' map. ! * The key is of type {@link java.lang.String}, ! * and the value is of type {@link java.lang.String}, ! * <!-- begin-user-doc --> ! * <p> ! * If the meaning of the '<em>XMLNS Prefix Map</em>' map isn't clear, ! * there really should be more of a description here... ! * </p> ! * <!-- end-user-doc --> ! * @return the value of the '<em>XMLNS Prefix Map</em>' map. ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getDocumentRoot_XMLNSPrefixMap() ! * @model mapType="org.eclipse.emf.ecore.EStringToStringMapEntry" keyType="java.lang.String" valueType="java.lang.String" transient="true" ! * extendedMetaData="kind='attribute' name='xmlns:prefix'" ! * @generated ! */ ! EMap getXMLNSPrefixMap(); ! ! /** ! * Returns the value of the '<em><b>XSI Schema Location</b></em>' map. ! * The key is of type {@link java.lang.String}, ! * and the value is of type {@link java.lang.String}, ! * <!-- begin-user-doc --> ! * <p> ! * If the meaning of the '<em>XSI Schema Location</em>' map isn't clear, ! * there really should be more of a description here... ! * </p> ! * <!-- end-user-doc --> ! * @return the value of the '<em>XSI Schema Location</em>' map. ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getDocumentRoot_XSISchemaLocation() ! * @model mapType="org.eclipse.emf.ecore.EStringToStringMapEntry" keyType="java.lang.String" valueType="java.lang.String" transient="true" ! * extendedMetaData="kind='attribute' name='xsi:schemaLocation'" ! * @generated ! */ ! EMap getXSISchemaLocation(); ! ! /** ! * Returns the value of the '<em><b>Shopping Cart</b></em>' containment reference. ! * <!-- begin-user-doc --> ! * <!-- end-user-doc --> ! * <!-- begin-model-doc --> ! * The top level elemnt. The shopping cart itself. ! * <!-- end-model-doc --> ! * @return the value of the '<em>Shopping Cart</em>' containment reference. ! * @see #setShoppingCart(ShoppingCartType) ! * @see net.sourceforge.modelWizard.ShoppingCartSchema.ShoppingCartSchemaPackage#getDocumentRoot_ShoppingCart() ! * @model containment="true" resolveProxies="false" upper="-2" transient="true" volatile="true" derived="true" ! * extendedMetaData="kind='element' name='ShoppingCart' namespace='##targetNamespace'" ! * @generated ! */ ! ShoppingCartType getShoppingCart(); ! ! /** ! * Sets the value of the '{@link net.sourceforge.modelWizard.ShoppingCartSchema.DocumentRoot#getShoppingCart <em>Shopping Cart</em>}' containment reference. ! * <!-- begin-user-doc --> ! * <!-- end-user-doc --> ! * @param value the new value of the '<em>Shopping Cart</em>' containment reference. ! * @see #getShoppingCart() ! * @generated ! */ ! void setShoppingCart(ShoppingCartType value); ! ! } // DocumentRoot Index: Profile.java =================================================================== RCS file: /cvsroot/modelwizard/source/Model Wizard Plugin/src/net/sourceforge/modelWizard/ShoppingCartSchema/Profile.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Profile.java 1 Feb 2006 09:26:38 -0000 1.2 --- Profile.java 24 Oct 2006 21:44:26 -0000 1.3 *************** *** 8,14 **** import org.eclipse.emf.common.util.EList; - import org.eclipse.emf.ecore.EObject; - import org.eclipse.emf.ecore.util.FeatureMap; --- 8,12 ---- |