From 2e68a7b7c248b9292741762e64d6f0eac011001c Mon Sep 17 00:00:00 2001 From: Camille Letavernier Date: Mon, 25 Aug 2014 16:02:46 +0200 Subject: [Code style] Apply clean-up profile to Papyrus Main plug-ins --- .../metamodel/v0_2_0/custom/CustomFactory.java | 16 +- .../metamodel/v0_2_0/custom/CustomPackage.java | 170 ++++++++++----------- .../metamodel/v0_2_0/custom/Customization.java | 8 +- .../metamodel/v0_2_0/custom/ETypedElementCase.java | 9 +- .../v0_2_0/custom/ETypedElementSwitchQuery.java | 3 +- .../v0_2_0/custom/FacetCustomization.java | 4 +- .../v0_2_0/custom/impl/CustomFactoryImpl.java | 30 ++-- .../v0_2_0/custom/impl/CustomPackageImpl.java | 54 +++---- .../v0_2_0/custom/impl/CustomizationImpl.java | 32 ++-- .../custom/impl/EClassCustomizationImpl.java | 6 +- .../v0_2_0/custom/impl/ETypedElementCaseImpl.java | 32 ++-- .../custom/impl/ETypedElementSwitchQueryImpl.java | 20 +-- .../v0_2_0/custom/impl/FacetCustomizationImpl.java | 24 +-- .../v0_2_0/custom/util/CustomAdapterFactory.java | 47 +++--- .../metamodel/v0_2_0/custom/util/CustomSwitch.java | 47 +++--- .../CustomizationcatalogFactory.java | 8 +- .../CustomizationcatalogPackage.java | 36 ++--- .../impl/CustomizationCatalogImpl.java | 26 ++-- .../impl/CustomizationPropertiesCatalogImpl.java | 26 ++-- .../impl/CustomizationcatalogFactoryImpl.java | 21 +-- .../impl/CustomizationcatalogPackageImpl.java | 26 ++-- .../util/CustomizationcatalogAdapterFactory.java | 24 +-- .../util/CustomizationcatalogSwitch.java | 24 +-- .../metamodel/v0_2_0/custompt/Alignment.java | 40 ++--- .../metamodel/v0_2_0/custompt/CustomptFactory.java | 4 +- .../metamodel/v0_2_0/custompt/CustomptPackage.java | 38 ++--- .../custom/metamodel/v0_2_0/custompt/Shadow.java | 40 ++--- .../v0_2_0/custompt/impl/CustomptFactoryImpl.java | 37 ++--- .../v0_2_0/custompt/impl/CustomptPackageImpl.java | 34 ++--- .../internal/treeproxy/EAttributeTreeElement.java | 4 +- .../metamodel/v0_3_0/query/QueryFactory.java | 6 +- .../metamodel/v0_3_0/query/QueryPackage.java | 33 ++-- .../metamodel/v0_3_0/query/URIImageQuery.java | 4 +- .../v0_3_0/query/impl/QueryFactoryImpl.java | 18 ++- .../v0_3_0/query/impl/QueryPackageImpl.java | 28 ++-- .../v0_3_0/query/impl/URIImageQueryImpl.java | 24 +-- .../v0_3_0/query/util/QueryAdapterFactory.java | 21 +-- .../metamodel/v0_3_0/query/util/QuerySwitch.java | 20 +-- 38 files changed, 535 insertions(+), 509 deletions(-) (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel') diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/CustomFactory.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/CustomFactory.java index 18a66a9c14e..4d84891500d 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/CustomFactory.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/CustomFactory.java @@ -18,7 +18,7 @@ import org.eclipse.emf.ecore.EFactory; /** * The Factory for the model. It provides a * create method for each non-abstract class of the model. - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage * @generated */ @@ -27,7 +27,7 @@ public interface CustomFactory extends EFactory { * The singleton instance of the factory. * * - * + * * @generated */ CustomFactory eINSTANCE = org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomFactoryImpl.init(); @@ -36,7 +36,7 @@ public interface CustomFactory extends EFactory { * Returns a new object of class 'Customization'. * * - * + * * @return a new object of class 'Customization'. * @generated */ @@ -46,7 +46,7 @@ public interface CustomFactory extends EFactory { * Returns a new object of class 'EClass Customization'. * * - * + * * @return a new object of class 'EClass Customization'. * @generated */ @@ -56,7 +56,7 @@ public interface CustomFactory extends EFactory { * Returns a new object of class 'Facet Customization'. * * - * + * * @return a new object of class 'Facet Customization'. * @generated */ @@ -66,7 +66,7 @@ public interface CustomFactory extends EFactory { * Returns a new object of class 'ETyped Element Switch Query'. * * - * + * * @return a new object of class 'ETyped Element Switch Query'. * @generated */ @@ -76,7 +76,7 @@ public interface CustomFactory extends EFactory { * Returns a new object of class 'ETyped Element Case'. * * - * + * * @return a new object of class 'ETyped Element Case'. * @generated */ @@ -86,7 +86,7 @@ public interface CustomFactory extends EFactory { * Returns the package supported by this factory. * * - * + * * @return the package supported by this factory. * @generated */ diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/CustomPackage.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/CustomPackage.java index 7cbea9bc030..57112f94add 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/CustomPackage.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/CustomPackage.java @@ -31,7 +31,7 @@ import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.E *
  • and each data type
  • * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomFactory * @model kind="package" * @generated @@ -41,7 +41,7 @@ public interface CustomPackage extends EPackage { * The package name. * * - * + * * @generated */ String eNAME = "custom"; @@ -50,7 +50,7 @@ public interface CustomPackage extends EPackage { * The package namespace URI. * * - * + * * @generated */ String eNS_URI = "http://www.eclipse.org/papyrus/emf/facet/custom/0.2.incubation/custom"; @@ -59,7 +59,7 @@ public interface CustomPackage extends EPackage { * The package namespace name. * * - * + * * @generated */ String eNS_PREFIX = "custom"; @@ -68,7 +68,7 @@ public interface CustomPackage extends EPackage { * The singleton instance of the package. * * - * + * * @generated */ CustomPackage eINSTANCE = org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomPackageImpl.init(); @@ -77,7 +77,7 @@ public interface CustomPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomizationImpl Customization}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomizationImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomPackageImpl#getCustomization() * @generated @@ -88,7 +88,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'EAnnotations' containment reference list. * * - * + * * @generated * @ordered */ @@ -98,7 +98,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Name' attribute. * * - * + * * @generated * @ordered */ @@ -108,7 +108,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Ns URI' attribute. * * - * + * * @generated * @ordered */ @@ -118,7 +118,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Ns Prefix' attribute. * * - * + * * @generated * @ordered */ @@ -128,7 +128,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'EFactory Instance' reference. * * - * + * * @generated * @ordered */ @@ -138,7 +138,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'EClassifiers' containment reference list. * * - * + * * @generated * @ordered */ @@ -148,7 +148,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'ESubpackages' containment reference list. * * - * + * * @generated * @ordered */ @@ -158,7 +158,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'ESuper Package' container reference. * * - * + * * @generated * @ordered */ @@ -168,7 +168,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Documentation' attribute. * * - * + * * @generated * @ordered */ @@ -178,7 +178,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Categories' containment reference list. * * - * + * * @generated * @ordered */ @@ -188,7 +188,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Must Be Loaded By Default' attribute. * * - * + * * @generated * @ordered */ @@ -198,7 +198,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Rank' attribute. * * - * + * * @generated * @ordered */ @@ -208,7 +208,7 @@ public interface CustomPackage extends EPackage { * The number of structural features of the 'Customization' class. * * - * + * * @generated * @ordered */ @@ -218,7 +218,7 @@ public interface CustomPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.EClassCustomizationImpl EClass Customization}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.EClassCustomizationImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomPackageImpl#getEClassCustomization() * @generated @@ -229,7 +229,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'EAnnotations' containment reference list. * * - * + * * @generated * @ordered */ @@ -239,7 +239,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Name' attribute. * * - * + * * @generated * @ordered */ @@ -249,7 +249,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Instance Class Name' attribute. * * - * + * * @generated * @ordered */ @@ -259,7 +259,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Instance Class' attribute. * * - * + * * @generated * @ordered */ @@ -269,7 +269,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Default Value' attribute. * * - * + * * @generated * @ordered */ @@ -279,7 +279,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Instance Type Name' attribute. * * - * + * * @generated * @ordered */ @@ -289,7 +289,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'EPackage' container reference. * * - * + * * @generated * @ordered */ @@ -299,7 +299,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'EType Parameters' containment reference list. * * - * + * * @generated * @ordered */ @@ -309,7 +309,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Documentation' attribute. * * - * + * * @generated * @ordered */ @@ -319,7 +319,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Extended Metaclass' reference. * * - * + * * @generated * @ordered */ @@ -329,7 +329,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Facet Elements' containment reference list. * * - * + * * @generated * @ordered */ @@ -339,7 +339,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Facet Operations' containment reference list. * * - * + * * @generated * @ordered */ @@ -349,7 +349,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Conformance Typed Element' reference. * * - * + * * @generated * @ordered */ @@ -359,7 +359,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Extended Facets' reference list. * * - * + * * @generated * @ordered */ @@ -369,7 +369,7 @@ public interface CustomPackage extends EPackage { * The number of structural features of the 'EClass Customization' class. * * - * + * * @generated * @ordered */ @@ -379,7 +379,7 @@ public interface CustomPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.FacetCustomizationImpl Facet Customization}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.FacetCustomizationImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomPackageImpl#getFacetCustomization() * @generated @@ -390,7 +390,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'EAnnotations' containment reference list. * * - * + * * @generated * @ordered */ @@ -400,7 +400,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Name' attribute. * * - * + * * @generated * @ordered */ @@ -410,7 +410,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Instance Class Name' attribute. * * - * + * * @generated * @ordered */ @@ -420,7 +420,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Instance Class' attribute. * * - * + * * @generated * @ordered */ @@ -430,7 +430,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Default Value' attribute. * * - * + * * @generated * @ordered */ @@ -440,7 +440,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Instance Type Name' attribute. * * - * + * * @generated * @ordered */ @@ -450,7 +450,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'EPackage' container reference. * * - * + * * @generated * @ordered */ @@ -460,7 +460,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'EType Parameters' containment reference list. * * - * + * * @generated * @ordered */ @@ -470,7 +470,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Documentation' attribute. * * - * + * * @generated * @ordered */ @@ -480,7 +480,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Extended Metaclass' reference. * * - * + * * @generated * @ordered */ @@ -490,7 +490,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Facet Elements' containment reference list. * * - * + * * @generated * @ordered */ @@ -500,7 +500,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Facet Operations' containment reference list. * * - * + * * @generated * @ordered */ @@ -510,7 +510,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Conformance Typed Element' reference. * * - * + * * @generated * @ordered */ @@ -520,7 +520,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Extended Facets' reference list. * * - * + * * @generated * @ordered */ @@ -530,7 +530,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Customized Facet' reference. * * - * + * * @generated * @ordered */ @@ -540,7 +540,7 @@ public interface CustomPackage extends EPackage { * The number of structural features of the 'Facet Customization' class. * * - * + * * @generated * @ordered */ @@ -550,7 +550,7 @@ public interface CustomPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.ETypedElementSwitchQueryImpl ETyped Element Switch Query}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.ETypedElementSwitchQueryImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomPackageImpl#getETypedElementSwitchQuery() * @generated @@ -561,7 +561,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Can Have Side Effects' attribute. * * - * + * * @generated * @ordered */ @@ -571,7 +571,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Can Be Cached' attribute. * * - * + * * @generated * @ordered */ @@ -581,7 +581,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Cases' containment reference list. * * - * + * * @generated * @ordered */ @@ -591,7 +591,7 @@ public interface CustomPackage extends EPackage { * The number of structural features of the 'ETyped Element Switch Query' class. * * - * + * * @generated * @ordered */ @@ -601,7 +601,7 @@ public interface CustomPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.ETypedElementCaseImpl ETyped Element Case}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.ETypedElementCaseImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomPackageImpl#getETypedElementCase() * @generated @@ -612,7 +612,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Case' reference. * * - * + * * @generated * @ordered */ @@ -622,7 +622,7 @@ public interface CustomPackage extends EPackage { * The feature id for the 'Value' containment reference. * * - * + * * @generated * @ordered */ @@ -632,7 +632,7 @@ public interface CustomPackage extends EPackage { * The number of structural features of the 'ETyped Element Case' class. * * - * + * * @generated * @ordered */ @@ -643,7 +643,7 @@ public interface CustomPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization Customization}'. * * - * + * * @return the meta object for class 'Customization'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization * @generated @@ -654,7 +654,7 @@ public interface CustomPackage extends EPackage { * Returns the meta object for the attribute '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization#isMustBeLoadedByDefault Must Be Loaded By Default}'. * * - * + * * @return the meta object for the attribute 'Must Be Loaded By Default'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization#isMustBeLoadedByDefault() * @see #getCustomization() @@ -666,7 +666,7 @@ public interface CustomPackage extends EPackage { * Returns the meta object for the attribute '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization#getRank Rank}'. * * - * + * * @return the meta object for the attribute 'Rank'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization#getRank() * @see #getCustomization() @@ -678,7 +678,7 @@ public interface CustomPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.EClassCustomization EClass Customization}'. * * - * + * * @return the meta object for class 'EClass Customization'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.EClassCustomization * @generated @@ -689,7 +689,7 @@ public interface CustomPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.FacetCustomization Facet Customization}'. * * - * + * * @return the meta object for class 'Facet Customization'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.FacetCustomization * @generated @@ -700,7 +700,7 @@ public interface CustomPackage extends EPackage { * Returns the meta object for the reference '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.FacetCustomization#getCustomizedFacet Customized Facet}'. * * - * + * * @return the meta object for the reference 'Customized Facet'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.FacetCustomization#getCustomizedFacet() * @see #getFacetCustomization() @@ -712,7 +712,7 @@ public interface CustomPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementSwitchQuery ETyped Element Switch Query}'. * * - * + * * @return the meta object for class 'ETyped Element Switch Query'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementSwitchQuery * @generated @@ -723,7 +723,7 @@ public interface CustomPackage extends EPackage { * Returns the meta object for the containment reference list '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementSwitchQuery#getCases Cases}'. * * - * + * * @return the meta object for the containment reference list 'Cases'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementSwitchQuery#getCases() * @see #getETypedElementSwitchQuery() @@ -735,7 +735,7 @@ public interface CustomPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase ETyped Element Case}'. * * - * + * * @return the meta object for class 'ETyped Element Case'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase * @generated @@ -746,7 +746,7 @@ public interface CustomPackage extends EPackage { * Returns the meta object for the reference '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase#getCase Case}'. * * - * + * * @return the meta object for the reference 'Case'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase#getCase() * @see #getETypedElementCase() @@ -758,7 +758,7 @@ public interface CustomPackage extends EPackage { * Returns the meta object for the containment reference '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase#getValue Value}'. * * - * + * * @return the meta object for the containment reference 'Value'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase#getValue() * @see #getETypedElementCase() @@ -770,7 +770,7 @@ public interface CustomPackage extends EPackage { * Returns the factory that creates the instances of the model. * * - * + * * @return the factory that creates the instances of the model. * @generated */ @@ -786,7 +786,7 @@ public interface CustomPackage extends EPackage { *
  • and each data type
  • * * - * + * * @generated */ interface Literals { @@ -794,7 +794,7 @@ public interface CustomPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomizationImpl Customization}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomizationImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomPackageImpl#getCustomization() * @generated @@ -805,7 +805,7 @@ public interface CustomPackage extends EPackage { * The meta object literal for the 'Must Be Loaded By Default' attribute feature. * * - * + * * @generated */ EAttribute CUSTOMIZATION__MUST_BE_LOADED_BY_DEFAULT = eINSTANCE.getCustomization_MustBeLoadedByDefault(); @@ -814,7 +814,7 @@ public interface CustomPackage extends EPackage { * The meta object literal for the 'Rank' attribute feature. * * - * + * * @generated */ EAttribute CUSTOMIZATION__RANK = eINSTANCE.getCustomization_Rank(); @@ -823,7 +823,7 @@ public interface CustomPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.EClassCustomizationImpl EClass Customization}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.EClassCustomizationImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomPackageImpl#getEClassCustomization() * @generated @@ -834,7 +834,7 @@ public interface CustomPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.FacetCustomizationImpl Facet Customization}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.FacetCustomizationImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomPackageImpl#getFacetCustomization() * @generated @@ -845,7 +845,7 @@ public interface CustomPackage extends EPackage { * The meta object literal for the 'Customized Facet' reference feature. * * - * + * * @generated */ EReference FACET_CUSTOMIZATION__CUSTOMIZED_FACET = eINSTANCE.getFacetCustomization_CustomizedFacet(); @@ -854,7 +854,7 @@ public interface CustomPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.ETypedElementSwitchQueryImpl ETyped Element Switch Query}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.ETypedElementSwitchQueryImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomPackageImpl#getETypedElementSwitchQuery() * @generated @@ -865,7 +865,7 @@ public interface CustomPackage extends EPackage { * The meta object literal for the 'Cases' containment reference list feature. * * - * + * * @generated */ EReference ETYPED_ELEMENT_SWITCH_QUERY__CASES = eINSTANCE.getETypedElementSwitchQuery_Cases(); @@ -874,7 +874,7 @@ public interface CustomPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.ETypedElementCaseImpl ETyped Element Case}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.ETypedElementCaseImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl.CustomPackageImpl#getETypedElementCase() * @generated @@ -885,7 +885,7 @@ public interface CustomPackage extends EPackage { * The meta object literal for the 'Case' reference feature. * * - * + * * @generated */ EReference ETYPED_ELEMENT_CASE__CASE = eINSTANCE.getETypedElementCase_Case(); @@ -894,7 +894,7 @@ public interface CustomPackage extends EPackage { * The meta object literal for the 'Value' containment reference feature. * * - * + * * @generated */ EReference ETYPED_ELEMENT_CASE__VALUE = eINSTANCE.getETypedElementCase_Value(); diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/Customization.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/Customization.java index 4d93a9602b8..988c5b3a515 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/Customization.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/Customization.java @@ -45,7 +45,7 @@ public interface Customization extends FacetSet { * * When Customization::mustBeloadedByDefault is true, the customization will be automatically loaded in the customizable model browsers. * - * + * * @return the value of the 'Must Be Loaded By Default' attribute. * @see #setMustBeLoadedByDefault(boolean) * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage#getCustomization_MustBeLoadedByDefault() @@ -58,7 +58,7 @@ public interface Customization extends FacetSet { * Sets the value of the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization#isMustBeLoadedByDefault Must Be Loaded By Default}' attribute. * * - * + * * @param value * the new value of the 'Must Be Loaded By Default' attribute. * @see #isMustBeLoadedByDefault() @@ -74,7 +74,7 @@ public interface Customization extends FacetSet { * If the meaning of the 'Rank' attribute isn't clear, there really should be more of a description here... *

    * - * + * * @return the value of the 'Rank' attribute. * @see #setRank(int) * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage#getCustomization_Rank() @@ -87,7 +87,7 @@ public interface Customization extends FacetSet { * Sets the value of the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization#getRank Rank}' attribute. * * - * + * * @param value * the new value of the 'Rank' attribute. * @see #getRank() diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/ETypedElementCase.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/ETypedElementCase.java index 95c99d8055f..92b49a4eb82 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/ETypedElementCase.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/ETypedElementCase.java @@ -15,7 +15,6 @@ package org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.ETypedElement; - import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query; /** @@ -47,7 +46,7 @@ public interface ETypedElementCase extends EObject { * If the meaning of the 'Case' reference isn't clear, there really should be more of a description here... *

    * - * + * * @return the value of the 'Case' reference. * @see #setCase(ETypedElement) * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage#getETypedElementCase_Case() @@ -60,7 +59,7 @@ public interface ETypedElementCase extends EObject { * Sets the value of the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase#getCase Case}' reference. * * - * + * * @param value * the new value of the 'Case' reference. * @see #getCase() @@ -75,7 +74,7 @@ public interface ETypedElementCase extends EObject { * If the meaning of the 'Value' containment reference isn't clear, there really should be more of a description here... *

    * - * + * * @return the value of the 'Value' containment reference. * @see #setValue(Query) * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage#getETypedElementCase_Value() @@ -88,7 +87,7 @@ public interface ETypedElementCase extends EObject { * Sets the value of the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase#getValue Value}' containment reference. * * - * + * * @param value * the new value of the 'Value' containment reference. * @see #getValue() diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/ETypedElementSwitchQuery.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/ETypedElementSwitchQuery.java index 5e5eca5c90b..15608da9316 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/ETypedElementSwitchQuery.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/ETypedElementSwitchQuery.java @@ -14,7 +14,6 @@ package org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom; import org.eclipse.emf.common.util.EList; - import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query; /** @@ -46,7 +45,7 @@ public interface ETypedElementSwitchQuery extends Query { * If the meaning of the 'Cases' containment reference list isn't clear, there really should be more of a description here... *

    * - * + * * @return the value of the 'Cases' containment reference list. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage#getETypedElementSwitchQuery_Cases() * @model containment="true" diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/FacetCustomization.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/FacetCustomization.java index df8a191bd24..de65bc76565 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/FacetCustomization.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/FacetCustomization.java @@ -43,7 +43,7 @@ public interface FacetCustomization extends Facet { * If the meaning of the 'Customized Facet' reference isn't clear, there really should be more of a description here... *

    * - * + * * @return the value of the 'Customized Facet' reference. * @see #setCustomizedFacet(Facet) * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage#getFacetCustomization_CustomizedFacet() @@ -56,7 +56,7 @@ public interface FacetCustomization extends Facet { * Sets the value of the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.FacetCustomization#getCustomizedFacet Customized Facet}' reference. * * - * + * * @param value * the new value of the 'Customized Facet' reference. * @see #getCustomizedFacet() diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/CustomFactoryImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/CustomFactoryImpl.java index 5fe78ffefd6..887fec56cbf 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/CustomFactoryImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/CustomFactoryImpl.java @@ -18,13 +18,19 @@ import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.impl.EFactoryImpl; import org.eclipse.emf.ecore.plugin.EcorePlugin; -import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.*; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomFactory; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.EClassCustomization; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementSwitchQuery; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.FacetCustomization; /** * * An implementation of the model Factory. * - * + * * @generated */ public class CustomFactoryImpl extends EFactoryImpl implements CustomFactory { @@ -32,7 +38,7 @@ public class CustomFactoryImpl extends EFactoryImpl implements CustomFactory { * Creates the default factory implementation. * * - * + * * @generated */ public static CustomFactory init() { @@ -51,7 +57,7 @@ public class CustomFactoryImpl extends EFactoryImpl implements CustomFactory { * Creates an instance of the factory. * * - * + * * @generated */ public CustomFactoryImpl() { @@ -61,7 +67,7 @@ public class CustomFactoryImpl extends EFactoryImpl implements CustomFactory { /** * * - * + * * @generated */ @Override @@ -85,7 +91,7 @@ public class CustomFactoryImpl extends EFactoryImpl implements CustomFactory { /** * * - * + * * @generated */ public Customization createCustomization() { @@ -96,7 +102,7 @@ public class CustomFactoryImpl extends EFactoryImpl implements CustomFactory { /** * * - * + * * @generated */ public EClassCustomization createEClassCustomization() { @@ -107,7 +113,7 @@ public class CustomFactoryImpl extends EFactoryImpl implements CustomFactory { /** * * - * + * * @generated */ public FacetCustomization createFacetCustomization() { @@ -118,7 +124,7 @@ public class CustomFactoryImpl extends EFactoryImpl implements CustomFactory { /** * * - * + * * @generated */ public ETypedElementSwitchQuery createETypedElementSwitchQuery() { @@ -129,7 +135,7 @@ public class CustomFactoryImpl extends EFactoryImpl implements CustomFactory { /** * * - * + * * @generated */ public ETypedElementCase createETypedElementCase() { @@ -140,7 +146,7 @@ public class CustomFactoryImpl extends EFactoryImpl implements CustomFactory { /** * * - * + * * @generated */ public CustomPackage getCustomPackage() { @@ -150,7 +156,7 @@ public class CustomFactoryImpl extends EFactoryImpl implements CustomFactory { /** * * - * + * * @deprecated * @generated */ diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/CustomPackageImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/CustomPackageImpl.java index 90194964903..ab65158c64e 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/CustomPackageImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/CustomPackageImpl.java @@ -18,8 +18,6 @@ import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.EReference; import org.eclipse.emf.ecore.impl.EPackageImpl; -import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.EFacetPackage; -import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.ExtensiblePackage; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomFactory; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization; @@ -27,19 +25,21 @@ import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.EClassCustom import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementSwitchQuery; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.FacetCustomization; +import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.EFacetPackage; +import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.ExtensiblePackage; /** * * An implementation of the model Package. * - * + * * @generated */ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ private EClass customizationEClass = null; @@ -47,7 +47,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ private EClass eClassCustomizationEClass = null; @@ -55,7 +55,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ private EClass facetCustomizationEClass = null; @@ -63,7 +63,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ private EClass eTypedElementSwitchQueryEClass = null; @@ -71,7 +71,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ private EClass eTypedElementCaseEClass = null; @@ -81,7 +81,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { * package URI value. *

    * Note: the correct way to create the package is via the static factory method {@link #init init()}, which also performs initialization of the package, or returns the registered package, if one already exists. - * + * * @see org.eclipse.emf.ecore.EPackage.Registry * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage#eNS_URI * @see #init() @@ -94,7 +94,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ private static boolean isInited = false; @@ -104,7 +104,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { * *

    * This method is used to initialize {@link CustomPackage#eINSTANCE} when that field is accessed. Clients should not invoke it directly. Instead, they should simply access that field to obtain the package. - * + * * @see #eNS_URI * @see #createPackageContents() * @see #initializePackageContents() @@ -141,7 +141,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ public EClass getCustomization() { @@ -151,7 +151,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ public EAttribute getCustomization_MustBeLoadedByDefault() { @@ -161,7 +161,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ public EAttribute getCustomization_Rank() { @@ -171,7 +171,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ public EClass getEClassCustomization() { @@ -181,7 +181,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ public EClass getFacetCustomization() { @@ -191,7 +191,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ public EReference getFacetCustomization_CustomizedFacet() { @@ -201,7 +201,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ public EClass getETypedElementSwitchQuery() { @@ -211,7 +211,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ public EReference getETypedElementSwitchQuery_Cases() { @@ -221,7 +221,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ public EClass getETypedElementCase() { @@ -231,7 +231,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ public EReference getETypedElementCase_Case() { @@ -241,7 +241,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ public EReference getETypedElementCase_Value() { @@ -251,7 +251,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ public CustomFactory getCustomFactory() { @@ -261,7 +261,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ private boolean isCreated = false; @@ -271,7 +271,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { * guarded to have no affect on any invocation but its first. * * - * + * * @generated */ public void createPackageContents() { @@ -301,7 +301,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { /** * * - * + * * @generated */ private boolean isInitialized = false; @@ -311,7 +311,7 @@ public class CustomPackageImpl extends EPackageImpl implements CustomPackage { * method is guarded to have no affect on any invocation but its first. * * - * + * * @generated */ public void initializePackageContents() { diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/CustomizationImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/CustomizationImpl.java index e79bc00df8d..cadf24a45fb 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/CustomizationImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/CustomizationImpl.java @@ -16,9 +16,9 @@ package org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; -import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.impl.FacetSetImpl; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization; +import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.impl.FacetSetImpl; /** * @@ -39,7 +39,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { * The default value of the '{@link #isMustBeLoadedByDefault() Must Be Loaded By Default}' attribute. * * - * + * * @see #isMustBeLoadedByDefault() * @generated * @ordered @@ -50,7 +50,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { * The cached value of the '{@link #isMustBeLoadedByDefault() Must Be Loaded By Default}' attribute. * * - * + * * @see #isMustBeLoadedByDefault() * @generated * @ordered @@ -61,7 +61,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { * The default value of the '{@link #getRank() Rank}' attribute. * * - * + * * @see #getRank() * @generated * @ordered @@ -72,7 +72,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { * The cached value of the '{@link #getRank() Rank}' attribute. * * - * + * * @see #getRank() * @generated * @ordered @@ -82,7 +82,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { /** * * - * + * * @generated */ protected CustomizationImpl() { @@ -92,7 +92,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { /** * * - * + * * @generated */ @Override @@ -103,7 +103,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { /** * * - * + * * @generated */ public boolean isMustBeLoadedByDefault() { @@ -113,7 +113,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { /** * * - * + * * @generated */ public void setMustBeLoadedByDefault(boolean newMustBeLoadedByDefault) { @@ -127,7 +127,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { /** * * - * + * * @generated */ public int getRank() { @@ -137,7 +137,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { /** * * - * + * * @generated */ public void setRank(int newRank) { @@ -151,7 +151,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { /** * * - * + * * @generated */ @Override @@ -168,7 +168,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { /** * * - * + * * @generated */ @Override @@ -187,7 +187,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { /** * * - * + * * @generated */ @Override @@ -206,7 +206,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { /** * * - * + * * @generated */ @Override @@ -223,7 +223,7 @@ public class CustomizationImpl extends FacetSetImpl implements Customization { /** * * - * + * * @generated */ @Override diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/EClassCustomizationImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/EClassCustomizationImpl.java index 378c01846f3..769a0f8d37f 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/EClassCustomizationImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/EClassCustomizationImpl.java @@ -14,9 +14,9 @@ package org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.impl; import org.eclipse.emf.ecore.EClass; -import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.impl.FacetImpl; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.EClassCustomization; +import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.impl.FacetImpl; /** * @@ -31,7 +31,7 @@ public class EClassCustomizationImpl extends FacetImpl implements EClassCustomiz /** * * - * + * * @generated */ protected EClassCustomizationImpl() { @@ -41,7 +41,7 @@ public class EClassCustomizationImpl extends FacetImpl implements EClassCustomiz /** * * - * + * * @generated */ @Override diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/ETypedElementCaseImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/ETypedElementCaseImpl.java index 75b43dcf93d..8cac242cfb5 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/ETypedElementCaseImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/ETypedElementCaseImpl.java @@ -20,9 +20,9 @@ import org.eclipse.emf.ecore.ETypedElement; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.EObjectImpl; -import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase; +import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query; /** * @@ -43,7 +43,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC * The cached value of the '{@link #getCase() Case}' reference. * * - * + * * @see #getCase() * @generated * @ordered @@ -54,7 +54,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC * The cached value of the '{@link #getValue() Value}' containment reference. * * - * + * * @see #getValue() * @generated * @ordered @@ -64,7 +64,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ protected ETypedElementCaseImpl() { @@ -74,7 +74,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ @Override @@ -85,7 +85,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ public ETypedElement getCase() { @@ -104,7 +104,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ public ETypedElement basicGetCase() { @@ -114,7 +114,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ public void setCase(ETypedElement newCase) { @@ -128,7 +128,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ public Query getValue() { @@ -138,7 +138,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ public NotificationChain basicSetValue(Query newValue, NotificationChain msgs) { @@ -158,7 +158,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ public void setValue(Query newValue) { @@ -183,7 +183,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ @Override @@ -198,7 +198,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ @Override @@ -218,7 +218,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ @Override @@ -237,7 +237,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ @Override @@ -256,7 +256,7 @@ public class ETypedElementCaseImpl extends EObjectImpl implements ETypedElementC /** * * - * + * * @generated */ @Override diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/ETypedElementSwitchQueryImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/ETypedElementSwitchQueryImpl.java index 7f5a7f5be59..21f9e6403e6 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/ETypedElementSwitchQueryImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/ETypedElementSwitchQueryImpl.java @@ -21,10 +21,10 @@ import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; -import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.impl.QueryImpl; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementSwitchQuery; +import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.impl.QueryImpl; /** * @@ -44,7 +44,7 @@ public class ETypedElementSwitchQueryImpl extends QueryImpl implements ETypedEle * The cached value of the '{@link #getCases() Cases}' containment reference list. * * - * + * * @see #getCases() * @generated * @ordered @@ -54,7 +54,7 @@ public class ETypedElementSwitchQueryImpl extends QueryImpl implements ETypedEle /** * * - * + * * @generated */ protected ETypedElementSwitchQueryImpl() { @@ -64,7 +64,7 @@ public class ETypedElementSwitchQueryImpl extends QueryImpl implements ETypedEle /** * * - * + * * @generated */ @Override @@ -75,7 +75,7 @@ public class ETypedElementSwitchQueryImpl extends QueryImpl implements ETypedEle /** * * - * + * * @generated */ public EList getCases() { @@ -88,7 +88,7 @@ public class ETypedElementSwitchQueryImpl extends QueryImpl implements ETypedEle /** * * - * + * * @generated */ @Override @@ -103,7 +103,7 @@ public class ETypedElementSwitchQueryImpl extends QueryImpl implements ETypedEle /** * * - * + * * @generated */ @Override @@ -118,7 +118,7 @@ public class ETypedElementSwitchQueryImpl extends QueryImpl implements ETypedEle /** * * - * + * * @generated */ @SuppressWarnings("unchecked") @@ -136,7 +136,7 @@ public class ETypedElementSwitchQueryImpl extends QueryImpl implements ETypedEle /** * * - * + * * @generated */ @Override @@ -152,7 +152,7 @@ public class ETypedElementSwitchQueryImpl extends QueryImpl implements ETypedEle /** * * - * + * * @generated */ @Override diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/FacetCustomizationImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/FacetCustomizationImpl.java index 62d38068936..104a5e797e1 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/FacetCustomizationImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/impl/FacetCustomizationImpl.java @@ -17,10 +17,10 @@ import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; -import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.Facet; -import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.impl.FacetImpl; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.FacetCustomization; +import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.Facet; +import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.impl.FacetImpl; /** * @@ -40,7 +40,7 @@ public class FacetCustomizationImpl extends FacetImpl implements FacetCustomizat * The cached value of the '{@link #getCustomizedFacet() Customized Facet}' reference. * * - * + * * @see #getCustomizedFacet() * @generated * @ordered @@ -50,7 +50,7 @@ public class FacetCustomizationImpl extends FacetImpl implements FacetCustomizat /** * * - * + * * @generated */ protected FacetCustomizationImpl() { @@ -60,7 +60,7 @@ public class FacetCustomizationImpl extends FacetImpl implements FacetCustomizat /** * * - * + * * @generated */ @Override @@ -71,7 +71,7 @@ public class FacetCustomizationImpl extends FacetImpl implements FacetCustomizat /** * * - * + * * @generated */ public Facet getCustomizedFacet() { @@ -90,7 +90,7 @@ public class FacetCustomizationImpl extends FacetImpl implements FacetCustomizat /** * * - * + * * @generated */ public Facet basicGetCustomizedFacet() { @@ -100,7 +100,7 @@ public class FacetCustomizationImpl extends FacetImpl implements FacetCustomizat /** * * - * + * * @generated */ public void setCustomizedFacet(Facet newCustomizedFacet) { @@ -114,7 +114,7 @@ public class FacetCustomizationImpl extends FacetImpl implements FacetCustomizat /** * * - * + * * @generated */ @Override @@ -132,7 +132,7 @@ public class FacetCustomizationImpl extends FacetImpl implements FacetCustomizat /** * * - * + * * @generated */ @Override @@ -148,7 +148,7 @@ public class FacetCustomizationImpl extends FacetImpl implements FacetCustomizat /** * * - * + * * @generated */ @Override @@ -164,7 +164,7 @@ public class FacetCustomizationImpl extends FacetImpl implements FacetCustomizat /** * * - * + * * @generated */ @Override diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/util/CustomAdapterFactory.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/util/CustomAdapterFactory.java index 13c0e195363..fc1f7331355 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/util/CustomAdapterFactory.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/util/CustomAdapterFactory.java @@ -21,18 +21,23 @@ import org.eclipse.emf.ecore.EModelElement; import org.eclipse.emf.ecore.ENamedElement; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EPackage; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.EClassCustomization; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementSwitchQuery; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.FacetCustomization; import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.DocumentedElement; import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.Facet; import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.FacetSet; import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query; -import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.*; /** * * The Adapter Factory for the model. * It provides an adapter createXXX method for each class of the model. * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage * @generated */ @@ -41,7 +46,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * The cached model package. * * - * + * * @generated */ protected static CustomPackage modelPackage; @@ -50,7 +55,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * Creates an instance of the adapter factory. * * - * + * * @generated */ public CustomAdapterFactory() { @@ -64,7 +69,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * * This implementation returns true if the object is either the model's package or is an instance object of the model. * - * + * * @return whether this factory is applicable for the type of the object. * @generated */ @@ -83,7 +88,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * The switch that delegates to the createXXX methods. * * - * + * * @generated */ protected CustomSwitch modelSwitch = @@ -163,7 +168,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * Creates an adapter for the target. * * - * + * * @param target * the object to adapt. * @return the adapter for the target. @@ -181,7 +186,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization * @generated @@ -196,7 +201,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.EClassCustomization * @generated @@ -211,7 +216,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.FacetCustomization * @generated @@ -226,7 +231,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementSwitchQuery * @generated @@ -241,7 +246,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase * @generated @@ -256,7 +261,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.emf.ecore.EModelElement * @generated @@ -271,7 +276,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.emf.ecore.ENamedElement * @generated @@ -286,7 +291,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.emf.ecore.EPackage * @generated @@ -301,7 +306,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.DocumentedElement * @generated @@ -316,7 +321,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.FacetSet * @generated @@ -331,7 +336,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.emf.ecore.EClassifier * @generated @@ -346,7 +351,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.Facet * @generated @@ -361,7 +366,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query * @generated @@ -375,7 +380,7 @@ public class CustomAdapterFactory extends AdapterFactoryImpl { * * This default implementation returns null. * - * + * * @return the new adapter. * @generated */ diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/util/CustomSwitch.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/util/CustomSwitch.java index 02e13bda4bc..cb3fb8bc86a 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/util/CustomSwitch.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custom/util/CustomSwitch.java @@ -21,11 +21,16 @@ import org.eclipse.emf.ecore.EModelElement; import org.eclipse.emf.ecore.ENamedElement; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EPackage; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.Customization; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.EClassCustomization; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementSwitchQuery; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.FacetCustomization; import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.DocumentedElement; import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.Facet; import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.FacetSet; import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query; -import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.*; /** * @@ -36,7 +41,7 @@ import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.*; * until a non-null result is returned, * which is the result of the switch. * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.CustomPackage * @generated */ @@ -45,7 +50,7 @@ public class CustomSwitch { * The cached model package * * - * + * * @generated */ protected static CustomPackage modelPackage; @@ -54,7 +59,7 @@ public class CustomSwitch { * Creates an instance of the switch. * * - * + * * @generated */ public CustomSwitch() { @@ -67,7 +72,7 @@ public class CustomSwitch { * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. * * - * + * * @return the first non-null result returned by a caseXXX call. * @generated */ @@ -79,7 +84,7 @@ public class CustomSwitch { * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. * * - * + * * @return the first non-null result returned by a caseXXX call. * @generated */ @@ -99,7 +104,7 @@ public class CustomSwitch { * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. * * - * + * * @return the first non-null result returned by a caseXXX call. * @generated */ @@ -204,7 +209,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'Customization'. @@ -221,7 +226,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'EClass Customization'. @@ -238,7 +243,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'Facet Customization'. @@ -255,7 +260,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'ETyped Element Switch Query'. @@ -272,7 +277,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'ETyped Element Case'. @@ -289,7 +294,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'EModel Element'. @@ -306,7 +311,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'ENamed Element'. @@ -323,7 +328,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'EPackage'. @@ -340,7 +345,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'Documented Element'. @@ -357,7 +362,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'Facet Set'. @@ -374,7 +379,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'EClassifier'. @@ -391,7 +396,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'Facet'. @@ -408,7 +413,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'Query'. @@ -425,7 +430,7 @@ public class CustomSwitch { * This implementation returns null; * returning a non-null result will terminate the switch, but this is the last case anyway. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'EObject'. diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/CustomizationcatalogFactory.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/CustomizationcatalogFactory.java index 74310ed3805..aa0ce1041c8 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/CustomizationcatalogFactory.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/CustomizationcatalogFactory.java @@ -29,7 +29,7 @@ public interface CustomizationcatalogFactory extends EFactory { * The singleton instance of the factory. * * - * + * * @generated */ CustomizationcatalogFactory eINSTANCE = org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationcatalogFactoryImpl.init(); @@ -38,7 +38,7 @@ public interface CustomizationcatalogFactory extends EFactory { * Returns a new object of class 'Customization Catalog'. * * - * + * * @return a new object of class 'Customization Catalog'. * @generated */ @@ -48,7 +48,7 @@ public interface CustomizationcatalogFactory extends EFactory { * Returns a new object of class 'Customization Properties Catalog'. * * - * + * * @return a new object of class 'Customization Properties Catalog'. * @generated */ @@ -58,7 +58,7 @@ public interface CustomizationcatalogFactory extends EFactory { * Returns the package supported by this factory. * * - * + * * @return the package supported by this factory. * @generated */ diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/CustomizationcatalogPackage.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/CustomizationcatalogPackage.java index 3ddf3229063..6ea30ba9bd3 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/CustomizationcatalogPackage.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/CustomizationcatalogPackage.java @@ -39,7 +39,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The package name. * * - * + * * @generated */ String eNAME = "customizationcatalog"; @@ -48,7 +48,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The package namespace URI. * * - * + * * @generated */ String eNS_URI = "http://www.eclipse.org/papyrus/emf/facet/custom/0.2.internal/customizationcatalog"; @@ -57,7 +57,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The package namespace name. * * - * + * * @generated */ String eNS_PREFIX = "customizationcatalog"; @@ -66,7 +66,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The singleton instance of the package. * * - * + * * @generated */ CustomizationcatalogPackage eINSTANCE = org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationcatalogPackageImpl.init(); @@ -75,7 +75,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationCatalogImpl Customization Catalog}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationCatalogImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationcatalogPackageImpl#getCustomizationCatalog() * @generated @@ -86,7 +86,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The feature id for the 'Installed Entries' reference list. * * - * + * * @generated * @ordered */ @@ -96,7 +96,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The feature id for the 'Name' attribute. * * - * + * * @generated * @ordered */ @@ -106,7 +106,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The number of structural features of the 'Customization Catalog' class. * * - * + * * @generated * @ordered */ @@ -116,7 +116,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationPropertiesCatalogImpl Customization Properties Catalog}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationPropertiesCatalogImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationcatalogPackageImpl#getCustomizationPropertiesCatalog() * @generated @@ -127,7 +127,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The feature id for the 'Installed Entries' reference list. * * - * + * * @generated * @ordered */ @@ -137,7 +137,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The feature id for the 'Name' attribute. * * - * + * * @generated * @ordered */ @@ -147,7 +147,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The number of structural features of the 'Customization Properties Catalog' class. * * - * + * * @generated * @ordered */ @@ -158,7 +158,7 @@ public interface CustomizationcatalogPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationCatalog Customization Catalog}'. * * - * + * * @return the meta object for class 'Customization Catalog'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationCatalog * @generated @@ -169,7 +169,7 @@ public interface CustomizationcatalogPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationPropertiesCatalog Customization Properties Catalog}'. * * - * + * * @return the meta object for class 'Customization Properties Catalog'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationPropertiesCatalog * @generated @@ -180,7 +180,7 @@ public interface CustomizationcatalogPackage extends EPackage { * Returns the factory that creates the instances of the model. * * - * + * * @return the factory that creates the instances of the model. * @generated */ @@ -196,7 +196,7 @@ public interface CustomizationcatalogPackage extends EPackage { *

  • and each data type
  • * * - * + * * @generated */ interface Literals { @@ -204,7 +204,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationCatalogImpl Customization Catalog}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationCatalogImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationcatalogPackageImpl#getCustomizationCatalog() * @generated @@ -215,7 +215,7 @@ public interface CustomizationcatalogPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationPropertiesCatalogImpl Customization Properties Catalog}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationPropertiesCatalogImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.impl.CustomizationcatalogPackageImpl#getCustomizationPropertiesCatalog() * @generated diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationCatalogImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationCatalogImpl.java index 0f83e0a2c81..8e5e62bc998 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationCatalogImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationCatalogImpl.java @@ -44,7 +44,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati * The cached value of the '{@link #getInstalledEntries() Installed Entries}' reference list. * * - * + * * @see #getInstalledEntries() * @generated * @ordered @@ -55,7 +55,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati * The default value of the '{@link #getName() Name}' attribute. * * - * + * * @see #getName() * @generated * @ordered @@ -66,7 +66,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati * The cached value of the '{@link #getName() Name}' attribute. * * - * + * * @see #getName() * @generated * @ordered @@ -76,7 +76,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati /** * * - * + * * @generated */ protected CustomizationCatalogImpl() { @@ -86,7 +86,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati /** * * - * + * * @generated */ @Override @@ -97,7 +97,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati /** * * - * + * * @generated */ public EList getInstalledEntries() { @@ -110,7 +110,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati /** * * - * + * * @generated */ public String getName() { @@ -120,7 +120,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati /** * * - * + * * @generated */ public void setName(String newName) { @@ -134,7 +134,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati /** * * - * + * * @generated */ @Override @@ -151,7 +151,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati /** * * - * + * * @generated */ @SuppressWarnings("unchecked") @@ -172,7 +172,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati /** * * - * + * * @generated */ @Override @@ -191,7 +191,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati /** * * - * + * * @generated */ @Override @@ -208,7 +208,7 @@ public class CustomizationCatalogImpl extends EObjectImpl implements Customizati /** * * - * + * * @generated */ @Override diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationPropertiesCatalogImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationPropertiesCatalogImpl.java index b64785ec57e..c7f67d2bb91 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationPropertiesCatalogImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationPropertiesCatalogImpl.java @@ -44,7 +44,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C * The cached value of the '{@link #getInstalledEntries() Installed Entries}' reference list. * * - * + * * @see #getInstalledEntries() * @generated * @ordered @@ -55,7 +55,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C * The default value of the '{@link #getName() Name}' attribute. * * - * + * * @see #getName() * @generated * @ordered @@ -66,7 +66,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C * The cached value of the '{@link #getName() Name}' attribute. * * - * + * * @see #getName() * @generated * @ordered @@ -76,7 +76,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C /** * * - * + * * @generated */ protected CustomizationPropertiesCatalogImpl() { @@ -86,7 +86,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C /** * * - * + * * @generated */ @Override @@ -97,7 +97,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C /** * * - * + * * @generated */ public EList getInstalledEntries() { @@ -110,7 +110,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C /** * * - * + * * @generated */ public String getName() { @@ -120,7 +120,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C /** * * - * + * * @generated */ public void setName(String newName) { @@ -134,7 +134,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C /** * * - * + * * @generated */ @Override @@ -151,7 +151,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C /** * * - * + * * @generated */ @SuppressWarnings("unchecked") @@ -172,7 +172,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C /** * * - * + * * @generated */ @Override @@ -191,7 +191,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C /** * * - * + * * @generated */ @Override @@ -208,7 +208,7 @@ public class CustomizationPropertiesCatalogImpl extends EObjectImpl implements C /** * * - * + * * @generated */ @Override diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationcatalogFactoryImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationcatalogFactoryImpl.java index 942f7d7b587..9178e63e22e 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationcatalogFactoryImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationcatalogFactoryImpl.java @@ -18,13 +18,16 @@ import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.impl.EFactoryImpl; import org.eclipse.emf.ecore.plugin.EcorePlugin; -import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.*; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationCatalog; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationPropertiesCatalog; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationcatalogFactory; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationcatalogPackage; /** * * An implementation of the model Factory. * - * + * * @generated */ public class CustomizationcatalogFactoryImpl extends EFactoryImpl implements CustomizationcatalogFactory { @@ -32,7 +35,7 @@ public class CustomizationcatalogFactoryImpl extends EFactoryImpl implements Cus * Creates the default factory implementation. * * - * + * * @generated */ public static CustomizationcatalogFactory init() { @@ -51,7 +54,7 @@ public class CustomizationcatalogFactoryImpl extends EFactoryImpl implements Cus * Creates an instance of the factory. * * - * + * * @generated */ public CustomizationcatalogFactoryImpl() { @@ -61,7 +64,7 @@ public class CustomizationcatalogFactoryImpl extends EFactoryImpl implements Cus /** * * - * + * * @generated */ @Override @@ -79,7 +82,7 @@ public class CustomizationcatalogFactoryImpl extends EFactoryImpl implements Cus /** * * - * + * * @generated */ public CustomizationCatalog createCustomizationCatalog() { @@ -90,7 +93,7 @@ public class CustomizationcatalogFactoryImpl extends EFactoryImpl implements Cus /** * * - * + * * @generated */ public CustomizationPropertiesCatalog createCustomizationPropertiesCatalog() { @@ -101,7 +104,7 @@ public class CustomizationcatalogFactoryImpl extends EFactoryImpl implements Cus /** * * - * + * * @generated */ public CustomizationcatalogPackage getCustomizationcatalogPackage() { @@ -111,7 +114,7 @@ public class CustomizationcatalogFactoryImpl extends EFactoryImpl implements Cus /** * * - * + * * @deprecated * @generated */ diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationcatalogPackageImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationcatalogPackageImpl.java index c9978444faa..333b3ee3bf0 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationcatalogPackageImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/impl/CustomizationcatalogPackageImpl.java @@ -26,14 +26,14 @@ import org.eclipse.papyrus.emf.facet.util.emf.catalog.CatalogPackage; * * An implementation of the model Package. * - * + * * @generated */ public class CustomizationcatalogPackageImpl extends EPackageImpl implements CustomizationcatalogPackage { /** * * - * + * * @generated */ private EClass customizationCatalogEClass = null; @@ -41,7 +41,7 @@ public class CustomizationcatalogPackageImpl extends EPackageImpl implements Cus /** * * - * + * * @generated */ private EClass customizationPropertiesCatalogEClass = null; @@ -51,7 +51,7 @@ public class CustomizationcatalogPackageImpl extends EPackageImpl implements Cus * package URI value. *

    * Note: the correct way to create the package is via the static factory method {@link #init init()}, which also performs initialization of the package, or returns the registered package, if one already exists. - * + * * @see org.eclipse.emf.ecore.EPackage.Registry * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationcatalogPackage#eNS_URI * @see #init() @@ -64,7 +64,7 @@ public class CustomizationcatalogPackageImpl extends EPackageImpl implements Cus /** * * - * + * * @generated */ private static boolean isInited = false; @@ -75,7 +75,7 @@ public class CustomizationcatalogPackageImpl extends EPackageImpl implements Cus *

    * This method is used to initialize {@link CustomizationcatalogPackage#eINSTANCE} when that field is accessed. Clients should not invoke it directly. Instead, they should simply access that field to obtain the package. - * + * * @see #eNS_URI * @see #createPackageContents() * @see #initializePackageContents() @@ -113,7 +113,7 @@ public class CustomizationcatalogPackageImpl extends EPackageImpl implements Cus /** * * - * + * * @generated */ public EClass getCustomizationCatalog() { @@ -123,7 +123,7 @@ public class CustomizationcatalogPackageImpl extends EPackageImpl implements Cus /** * * - * + * * @generated */ public EClass getCustomizationPropertiesCatalog() { @@ -133,7 +133,7 @@ public class CustomizationcatalogPackageImpl extends EPackageImpl implements Cus /** * * - * + * * @generated */ public CustomizationcatalogFactory getCustomizationcatalogFactory() { @@ -143,7 +143,7 @@ public class CustomizationcatalogPackageImpl extends EPackageImpl implements Cus /** * * - * + * * @generated */ private boolean isCreated = false; @@ -153,7 +153,7 @@ public class CustomizationcatalogPackageImpl extends EPackageImpl implements Cus * guarded to have no affect on any invocation but its first. * * - * + * * @generated */ public void createPackageContents() { @@ -171,7 +171,7 @@ public class CustomizationcatalogPackageImpl extends EPackageImpl implements Cus /** * * - * + * * @generated */ private boolean isInitialized = false; @@ -181,7 +181,7 @@ public class CustomizationcatalogPackageImpl extends EPackageImpl implements Cus * method is guarded to have no affect on any invocation but its first. * * - * + * * @generated */ public void initializePackageContents() { diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/util/CustomizationcatalogAdapterFactory.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/util/CustomizationcatalogAdapterFactory.java index a004b9d2cf0..9731ac036b2 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/util/CustomizationcatalogAdapterFactory.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/util/CustomizationcatalogAdapterFactory.java @@ -17,7 +17,9 @@ import org.eclipse.emf.common.notify.Adapter; import org.eclipse.emf.common.notify.Notifier; import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; import org.eclipse.emf.ecore.EObject; -import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.*; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationCatalog; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationPropertiesCatalog; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationcatalogPackage; import org.eclipse.papyrus.emf.facet.util.emf.catalog.Catalog; /** @@ -25,7 +27,7 @@ import org.eclipse.papyrus.emf.facet.util.emf.catalog.Catalog; * The Adapter Factory for the model. * It provides an adapter createXXX method for each class of the model. * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationcatalogPackage * @generated */ @@ -34,7 +36,7 @@ public class CustomizationcatalogAdapterFactory extends AdapterFactoryImpl { * The cached model package. * * - * + * * @generated */ protected static CustomizationcatalogPackage modelPackage; @@ -43,7 +45,7 @@ public class CustomizationcatalogAdapterFactory extends AdapterFactoryImpl { * Creates an instance of the adapter factory. * * - * + * * @generated */ public CustomizationcatalogAdapterFactory() { @@ -57,7 +59,7 @@ public class CustomizationcatalogAdapterFactory extends AdapterFactoryImpl { * * This implementation returns true if the object is either the model's package or is an instance object of the model. * - * + * * @return whether this factory is applicable for the type of the object. * @generated */ @@ -76,7 +78,7 @@ public class CustomizationcatalogAdapterFactory extends AdapterFactoryImpl { * The switch that delegates to the createXXX methods. * * - * + * * @generated */ protected CustomizationcatalogSwitch modelSwitch = @@ -106,7 +108,7 @@ public class CustomizationcatalogAdapterFactory extends AdapterFactoryImpl { * Creates an adapter for the target. * * - * + * * @param target * the object to adapt. * @return the adapter for the target. @@ -124,7 +126,7 @@ public class CustomizationcatalogAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationCatalog * @generated @@ -139,7 +141,7 @@ public class CustomizationcatalogAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationPropertiesCatalog * @generated @@ -154,7 +156,7 @@ public class CustomizationcatalogAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.util.emf.catalog.Catalog * @generated @@ -168,7 +170,7 @@ public class CustomizationcatalogAdapterFactory extends AdapterFactoryImpl { * * This default implementation returns null. * - * + * * @return the new adapter. * @generated */ diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/util/CustomizationcatalogSwitch.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/util/CustomizationcatalogSwitch.java index 4718c7ec9dd..7f8b47239f3 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/util/CustomizationcatalogSwitch.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/customizationcatalog/util/CustomizationcatalogSwitch.java @@ -17,7 +17,9 @@ import java.util.List; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EObject; -import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.*; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationCatalog; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationPropertiesCatalog; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationcatalogPackage; import org.eclipse.papyrus.emf.facet.util.emf.catalog.Catalog; /** @@ -29,7 +31,7 @@ import org.eclipse.papyrus.emf.facet.util.emf.catalog.Catalog; * until a non-null result is returned, * which is the result of the switch. * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.customizationcatalog.CustomizationcatalogPackage * @generated */ @@ -38,7 +40,7 @@ public class CustomizationcatalogSwitch { * The cached model package * * - * + * * @generated */ protected static CustomizationcatalogPackage modelPackage; @@ -47,7 +49,7 @@ public class CustomizationcatalogSwitch { * Creates an instance of the switch. * * - * + * * @generated */ public CustomizationcatalogSwitch() { @@ -60,7 +62,7 @@ public class CustomizationcatalogSwitch { * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. * * - * + * * @return the first non-null result returned by a caseXXX call. * @generated */ @@ -72,7 +74,7 @@ public class CustomizationcatalogSwitch { * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. * * - * + * * @return the first non-null result returned by a caseXXX call. * @generated */ @@ -92,7 +94,7 @@ public class CustomizationcatalogSwitch { * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. * * - * + * * @return the first non-null result returned by a caseXXX call. * @generated */ @@ -131,7 +133,7 @@ public class CustomizationcatalogSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'Customization Catalog'. @@ -148,7 +150,7 @@ public class CustomizationcatalogSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'Customization Properties Catalog'. @@ -165,7 +167,7 @@ public class CustomizationcatalogSwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'Catalog'. @@ -182,7 +184,7 @@ public class CustomizationcatalogSwitch { * This implementation returns null; * returning a non-null result will terminate the switch, but this is the last case anyway. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'EObject'. diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/Alignment.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/Alignment.java index bc69eeade02..b462da95e88 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/Alignment.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/Alignment.java @@ -24,7 +24,7 @@ import org.eclipse.emf.common.util.Enumerator; * A representation of the literals of the enumeration 'Alignment', * and utility methods for working with them. * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.CustomptPackage#getAlignment() * @model * @generated @@ -34,7 +34,7 @@ public enum Alignment implements Enumerator { * The 'LEFT' literal object. * * - * + * * @see #LEFT_VALUE * @generated * @ordered @@ -45,7 +45,7 @@ public enum Alignment implements Enumerator { * The 'CENTER' literal object. * * - * + * * @see #CENTER_VALUE * @generated * @ordered @@ -56,7 +56,7 @@ public enum Alignment implements Enumerator { * The 'RIGHT' literal object. * * - * + * * @see #RIGHT_VALUE * @generated * @ordered @@ -70,7 +70,7 @@ public enum Alignment implements Enumerator { * If the meaning of 'LEFT' literal object isn't clear, there really should be more of a description here... *

    * - * + * * @see #LEFT * @model * @generated @@ -85,7 +85,7 @@ public enum Alignment implements Enumerator { * If the meaning of 'CENTER' literal object isn't clear, there really should be more of a description here... *

    * - * + * * @see #CENTER * @model * @generated @@ -100,7 +100,7 @@ public enum Alignment implements Enumerator { * If the meaning of 'RIGHT' literal object isn't clear, there really should be more of a description here... *

    * - * + * * @see #RIGHT * @model * @generated @@ -112,7 +112,7 @@ public enum Alignment implements Enumerator { * An array of all the 'Alignment' enumerators. * * - * + * * @generated */ private static final Alignment[] VALUES_ARRAY = @@ -126,7 +126,7 @@ public enum Alignment implements Enumerator { * A public read-only list of all the 'Alignment' enumerators. * * - * + * * @generated */ public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); @@ -135,7 +135,7 @@ public enum Alignment implements Enumerator { * Returns the 'Alignment' literal with the specified literal value. * * - * + * * @generated */ public static Alignment get(String literal) { @@ -152,7 +152,7 @@ public enum Alignment implements Enumerator { * Returns the 'Alignment' literal with the specified name. * * - * + * * @generated */ public static Alignment getByName(String name) { @@ -169,7 +169,7 @@ public enum Alignment implements Enumerator { * Returns the 'Alignment' literal with the specified integer value. * * - * + * * @generated */ public static Alignment get(int value) { @@ -187,7 +187,7 @@ public enum Alignment implements Enumerator { /** * * - * + * * @generated */ private final int value; @@ -195,7 +195,7 @@ public enum Alignment implements Enumerator { /** * * - * + * * @generated */ private final String name; @@ -203,7 +203,7 @@ public enum Alignment implements Enumerator { /** * * - * + * * @generated */ private final String literal; @@ -212,7 +212,7 @@ public enum Alignment implements Enumerator { * Only this class can construct instances. * * - * + * * @generated */ private Alignment(int value, String name, String literal) { @@ -224,7 +224,7 @@ public enum Alignment implements Enumerator { /** * * - * + * * @generated */ public int getValue() { @@ -234,7 +234,7 @@ public enum Alignment implements Enumerator { /** * * - * + * * @generated */ public String getName() { @@ -244,7 +244,7 @@ public enum Alignment implements Enumerator { /** * * - * + * * @generated */ public String getLiteral() { @@ -255,7 +255,7 @@ public enum Alignment implements Enumerator { * Returns the literal value of the enumerator, which is its string representation. * * - * + * * @generated */ @Override diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/CustomptFactory.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/CustomptFactory.java index d7aa279a921..372fbee5c3a 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/CustomptFactory.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/CustomptFactory.java @@ -29,7 +29,7 @@ public interface CustomptFactory extends EFactory { * The singleton instance of the factory. * * - * + * * @generated */ CustomptFactory eINSTANCE = org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.impl.CustomptFactoryImpl.init(); @@ -38,7 +38,7 @@ public interface CustomptFactory extends EFactory { * Returns the package supported by this factory. * * - * + * * @return the package supported by this factory. * @generated */ diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/CustomptPackage.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/CustomptPackage.java index ab5f1d14367..efb373a956d 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/CustomptPackage.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/CustomptPackage.java @@ -28,7 +28,7 @@ import org.eclipse.emf.ecore.EPackage; *
  • and each data type
  • * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.CustomptFactory * @model kind="package" * @generated @@ -38,7 +38,7 @@ public interface CustomptPackage extends EPackage { * The package name. * * - * + * * @generated */ String eNAME = "custompt"; @@ -47,7 +47,7 @@ public interface CustomptPackage extends EPackage { * The package namespace URI. * * - * + * * @generated */ String eNS_URI = "http://www.eclipse.org/papyrus/emf/facet/custom/0.2.incubation/custom_primitive_types"; @@ -56,7 +56,7 @@ public interface CustomptPackage extends EPackage { * The package namespace name. * * - * + * * @generated */ String eNS_PREFIX = "custompt"; @@ -65,7 +65,7 @@ public interface CustomptPackage extends EPackage { * The singleton instance of the package. * * - * + * * @generated */ CustomptPackage eINSTANCE = org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.impl.CustomptPackageImpl.init(); @@ -74,7 +74,7 @@ public interface CustomptPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Shadow Shadow}' enum. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Shadow * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.impl.CustomptPackageImpl#getShadow() * @generated @@ -85,7 +85,7 @@ public interface CustomptPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Alignment Alignment}' enum. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Alignment * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.impl.CustomptPackageImpl#getAlignment() * @generated @@ -96,7 +96,7 @@ public interface CustomptPackage extends EPackage { * The meta object id for the 'Image' data type. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IImage * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.impl.CustomptPackageImpl#getImage() * @generated @@ -107,7 +107,7 @@ public interface CustomptPackage extends EPackage { * The meta object id for the 'Color' data type. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IColor * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.impl.CustomptPackageImpl#getColor() * @generated @@ -118,7 +118,7 @@ public interface CustomptPackage extends EPackage { * Returns the meta object for enum '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Shadow Shadow}'. * * - * + * * @return the meta object for enum 'Shadow'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Shadow * @generated @@ -129,7 +129,7 @@ public interface CustomptPackage extends EPackage { * Returns the meta object for enum '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Alignment Alignment}'. * * - * + * * @return the meta object for enum 'Alignment'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Alignment * @generated @@ -140,7 +140,7 @@ public interface CustomptPackage extends EPackage { * Returns the meta object for data type '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IImage Image}'. * * - * + * * @return the meta object for data type 'Image'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IImage * @model instanceClass="org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IImage" @@ -152,7 +152,7 @@ public interface CustomptPackage extends EPackage { * Returns the meta object for data type '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IColor Color}'. * * - * + * * @return the meta object for data type 'Color'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IColor * @model instanceClass="org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IColor" @@ -164,7 +164,7 @@ public interface CustomptPackage extends EPackage { * Returns the factory that creates the instances of the model. * * - * + * * @return the factory that creates the instances of the model. * @generated */ @@ -180,7 +180,7 @@ public interface CustomptPackage extends EPackage { *
  • and each data type
  • * * - * + * * @generated */ interface Literals { @@ -188,7 +188,7 @@ public interface CustomptPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Shadow Shadow}' enum. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Shadow * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.impl.CustomptPackageImpl#getShadow() * @generated @@ -199,7 +199,7 @@ public interface CustomptPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Alignment Alignment}' enum. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Alignment * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.impl.CustomptPackageImpl#getAlignment() * @generated @@ -210,7 +210,7 @@ public interface CustomptPackage extends EPackage { * The meta object literal for the 'Image' data type. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IImage * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.impl.CustomptPackageImpl#getImage() * @generated @@ -221,7 +221,7 @@ public interface CustomptPackage extends EPackage { * The meta object literal for the 'Color' data type. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IColor * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.impl.CustomptPackageImpl#getColor() * @generated diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/Shadow.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/Shadow.java index 29775f6a66c..7aec54783e6 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/Shadow.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/Shadow.java @@ -24,7 +24,7 @@ import org.eclipse.emf.common.util.Enumerator; * A representation of the literals of the enumeration 'Shadow', * and utility methods for working with them. * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.CustomptPackage#getShadow() * @model * @generated @@ -34,7 +34,7 @@ public enum Shadow implements Enumerator { * The 'NONE' literal object. * * - * + * * @see #NONE_VALUE * @generated * @ordered @@ -45,7 +45,7 @@ public enum Shadow implements Enumerator { * The 'IN' literal object. * * - * + * * @see #IN_VALUE * @generated * @ordered @@ -56,7 +56,7 @@ public enum Shadow implements Enumerator { * The 'OUT' literal object. * * - * + * * @see #OUT_VALUE * @generated * @ordered @@ -70,7 +70,7 @@ public enum Shadow implements Enumerator { * If the meaning of 'NONE' literal object isn't clear, there really should be more of a description here... *

    * - * + * * @see #NONE * @model * @generated @@ -85,7 +85,7 @@ public enum Shadow implements Enumerator { * If the meaning of 'IN' literal object isn't clear, there really should be more of a description here... *

    * - * + * * @see #IN * @model * @generated @@ -100,7 +100,7 @@ public enum Shadow implements Enumerator { * If the meaning of 'OUT' literal object isn't clear, there really should be more of a description here... *

    * - * + * * @see #OUT * @model * @generated @@ -112,7 +112,7 @@ public enum Shadow implements Enumerator { * An array of all the 'Shadow' enumerators. * * - * + * * @generated */ private static final Shadow[] VALUES_ARRAY = @@ -126,7 +126,7 @@ public enum Shadow implements Enumerator { * A public read-only list of all the 'Shadow' enumerators. * * - * + * * @generated */ public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); @@ -135,7 +135,7 @@ public enum Shadow implements Enumerator { * Returns the 'Shadow' literal with the specified literal value. * * - * + * * @generated */ public static Shadow get(String literal) { @@ -152,7 +152,7 @@ public enum Shadow implements Enumerator { * Returns the 'Shadow' literal with the specified name. * * - * + * * @generated */ public static Shadow getByName(String name) { @@ -169,7 +169,7 @@ public enum Shadow implements Enumerator { * Returns the 'Shadow' literal with the specified integer value. * * - * + * * @generated */ public static Shadow get(int value) { @@ -187,7 +187,7 @@ public enum Shadow implements Enumerator { /** * * - * + * * @generated */ private final int value; @@ -195,7 +195,7 @@ public enum Shadow implements Enumerator { /** * * - * + * * @generated */ private final String name; @@ -203,7 +203,7 @@ public enum Shadow implements Enumerator { /** * * - * + * * @generated */ private final String literal; @@ -212,7 +212,7 @@ public enum Shadow implements Enumerator { * Only this class can construct instances. * * - * + * * @generated */ private Shadow(int value, String name, String literal) { @@ -224,7 +224,7 @@ public enum Shadow implements Enumerator { /** * * - * + * * @generated */ public int getValue() { @@ -234,7 +234,7 @@ public enum Shadow implements Enumerator { /** * * - * + * * @generated */ public String getName() { @@ -244,7 +244,7 @@ public enum Shadow implements Enumerator { /** * * - * + * * @generated */ public String getLiteral() { @@ -255,7 +255,7 @@ public enum Shadow implements Enumerator { * Returns the literal value of the enumerator, which is its string representation. * * - * + * * @generated */ @Override diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/impl/CustomptFactoryImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/impl/CustomptFactoryImpl.java index ae7cf52c04a..550a0a25e0e 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/impl/CustomptFactoryImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/impl/CustomptFactoryImpl.java @@ -21,13 +21,16 @@ import org.eclipse.emf.ecore.impl.EFactoryImpl; import org.eclipse.emf.ecore.plugin.EcorePlugin; import org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IColor; import org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IImage; -import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.*; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Alignment; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.CustomptFactory; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.CustomptPackage; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Shadow; /** * * An implementation of the model Factory. * - * + * * @generated */ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory { @@ -35,7 +38,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory * Creates the default factory implementation. * * - * + * * @generated */ public static CustomptFactory init() { @@ -54,7 +57,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory * Creates an instance of the factory. * * - * + * * @generated */ public CustomptFactoryImpl() { @@ -64,7 +67,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @generated */ @Override @@ -78,7 +81,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @generated */ @Override @@ -100,7 +103,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @generated */ @Override @@ -122,7 +125,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @generated */ public Shadow createShadowFromString(EDataType eDataType, String initialValue) { @@ -136,7 +139,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @generated */ public String convertShadowToString(EDataType eDataType, Object instanceValue) { @@ -146,7 +149,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @generated */ public Alignment createAlignmentFromString(EDataType eDataType, String initialValue) { @@ -160,7 +163,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @generated */ public String convertAlignmentToString(EDataType eDataType, Object instanceValue) { @@ -170,7 +173,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @generated */ public IImage createImageFromString(EDataType eDataType, String initialValue) { @@ -180,7 +183,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @generated */ public String convertImageToString(EDataType eDataType, Object instanceValue) { @@ -190,7 +193,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @generated */ public IColor createColorFromString(EDataType eDataType, String initialValue) { @@ -200,7 +203,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @generated */ public String convertColorToString(EDataType eDataType, Object instanceValue) { @@ -210,7 +213,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @generated */ public CustomptPackage getCustomptPackage() { @@ -220,7 +223,7 @@ public class CustomptFactoryImpl extends EFactoryImpl implements CustomptFactory /** * * - * + * * @deprecated * @generated */ diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/impl/CustomptPackageImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/impl/CustomptPackageImpl.java index d3e50d4d366..907647fd4dc 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/impl/CustomptPackageImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/custompt/impl/CustomptPackageImpl.java @@ -28,14 +28,14 @@ import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.Shadow; * * An implementation of the model Package. * - * + * * @generated */ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage { /** * * - * + * * @generated */ private EEnum shadowEEnum = null; @@ -43,7 +43,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage /** * * - * + * * @generated */ private EEnum alignmentEEnum = null; @@ -51,7 +51,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage /** * * - * + * * @generated */ private EDataType imageEDataType = null; @@ -59,7 +59,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage /** * * - * + * * @generated */ private EDataType colorEDataType = null; @@ -69,7 +69,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage * package URI value. *

    * Note: the correct way to create the package is via the static factory method {@link #init init()}, which also performs initialization of the package, or returns the registered package, if one already exists. - * + * * @see org.eclipse.emf.ecore.EPackage.Registry * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custompt.CustomptPackage#eNS_URI * @see #init() @@ -82,7 +82,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage /** * * - * + * * @generated */ private static boolean isInited = false; @@ -92,7 +92,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage * *

    * This method is used to initialize {@link CustomptPackage#eINSTANCE} when that field is accessed. Clients should not invoke it directly. Instead, they should simply access that field to obtain the package. - * + * * @see #eNS_URI * @see #createPackageContents() * @see #initializePackageContents() @@ -126,7 +126,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage /** * * - * + * * @generated */ public EEnum getShadow() { @@ -136,7 +136,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage /** * * - * + * * @generated */ public EEnum getAlignment() { @@ -146,7 +146,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage /** * * - * + * * @generated */ public EDataType getImage() { @@ -156,7 +156,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage /** * * - * + * * @generated */ public EDataType getColor() { @@ -166,7 +166,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage /** * * - * + * * @generated */ public CustomptFactory getCustomptFactory() { @@ -176,7 +176,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage /** * * - * + * * @generated */ private boolean isCreated = false; @@ -186,7 +186,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage * guarded to have no affect on any invocation but its first. * * - * + * * @generated */ public void createPackageContents() { @@ -207,7 +207,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage /** * * - * + * * @generated */ private boolean isInitialized = false; @@ -217,7 +217,7 @@ public class CustomptPackageImpl extends EPackageImpl implements CustomptPackage * method is guarded to have no affect on any invocation but its first. * * - * + * * @generated */ public void initializePackageContents() { diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/internal/treeproxy/EAttributeTreeElement.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/internal/treeproxy/EAttributeTreeElement.java index 4f6f9405ec1..937d1cd1a6d 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/internal/treeproxy/EAttributeTreeElement.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_2_0/internal/treeproxy/EAttributeTreeElement.java @@ -31,7 +31,7 @@ public interface EAttributeTreeElement extends EStructuralFeatureTreeElement { /** * Returns the value of the 'EAttribute' reference. * The EAttribute represented by this tree element - * + * * @return the value of the 'EAttribute' reference. * @see #setEAttribute(EAttribute) * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.internal.treeproxy.TreeproxyPackage#getEAttributeTreeElement_EAttribute() @@ -40,7 +40,7 @@ public interface EAttributeTreeElement extends EStructuralFeatureTreeElement { /** * Sets the value of the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.internal.treeproxy.EAttributeTreeElement#getEAttribute EAttribute}' reference. - * + * * @param value * the new value of the 'EAttribute' reference. * @see #getEAttribute() diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/QueryFactory.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/QueryFactory.java index 3931007fd08..d3fd02d18b8 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/QueryFactory.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/QueryFactory.java @@ -27,7 +27,7 @@ public interface QueryFactory extends EFactory { * The singleton instance of the factory. * * - * + * * @generated */ QueryFactory eINSTANCE = org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.impl.QueryFactoryImpl.init(); @@ -36,7 +36,7 @@ public interface QueryFactory extends EFactory { * Returns a new object of class 'URI Image Query'. * * - * + * * @return a new object of class 'URI Image Query'. * @generated */ @@ -46,7 +46,7 @@ public interface QueryFactory extends EFactory { * Returns the package supported by this factory. * * - * + * * @return the package supported by this factory. * @generated */ diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/QueryPackage.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/QueryPackage.java index 6c270c2834e..e88f726f57d 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/QueryPackage.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/QueryPackage.java @@ -15,7 +15,6 @@ package org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query; import org.eclipse.emf.ecore.EAttribute; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EPackage; - import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.ExtensiblePackage; /** @@ -29,7 +28,7 @@ import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.E *

  • and each data type
  • * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.QueryFactory * @model kind="package" * @generated @@ -39,7 +38,7 @@ public interface QueryPackage extends EPackage { * The package name. * * - * + * * @generated */ String eNAME = "query"; @@ -48,7 +47,7 @@ public interface QueryPackage extends EPackage { * The package namespace URI. * * - * + * * @generated */ String eNS_URI = "http://www.eclipse.org/papyrus/emf/facet/custom/0.3.incubation/query"; @@ -57,7 +56,7 @@ public interface QueryPackage extends EPackage { * The package namespace name. * * - * + * * @generated */ String eNS_PREFIX = "customQuery"; @@ -66,7 +65,7 @@ public interface QueryPackage extends EPackage { * The singleton instance of the package. * * - * + * * @generated */ QueryPackage eINSTANCE = org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.impl.QueryPackageImpl.init(); @@ -75,7 +74,7 @@ public interface QueryPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.impl.URIImageQueryImpl URI Image Query}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.impl.URIImageQueryImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.impl.QueryPackageImpl#getURIImageQuery() * @generated @@ -86,7 +85,7 @@ public interface QueryPackage extends EPackage { * The feature id for the 'Can Have Side Effects' attribute. * * - * + * * @generated * @ordered */ @@ -96,7 +95,7 @@ public interface QueryPackage extends EPackage { * The feature id for the 'Can Be Cached' attribute. * * - * + * * @generated * @ordered */ @@ -106,7 +105,7 @@ public interface QueryPackage extends EPackage { * The feature id for the 'Uri' attribute. * * - * + * * @generated * @ordered */ @@ -116,7 +115,7 @@ public interface QueryPackage extends EPackage { * The number of structural features of the 'URI Image Query' class. * * - * + * * @generated * @ordered */ @@ -127,7 +126,7 @@ public interface QueryPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.URIImageQuery URI Image Query}'. * * - * + * * @return the meta object for class 'URI Image Query'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.URIImageQuery * @generated @@ -138,7 +137,7 @@ public interface QueryPackage extends EPackage { * Returns the meta object for the attribute '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.URIImageQuery#getUri Uri}'. * * - * + * * @return the meta object for the attribute 'Uri'. * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.URIImageQuery#getUri() * @see #getURIImageQuery() @@ -150,7 +149,7 @@ public interface QueryPackage extends EPackage { * Returns the factory that creates the instances of the model. * * - * + * * @return the factory that creates the instances of the model. * @generated */ @@ -166,7 +165,7 @@ public interface QueryPackage extends EPackage { *
  • and each data type
  • * * - * + * * @generated */ interface Literals { @@ -174,7 +173,7 @@ public interface QueryPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.impl.URIImageQueryImpl URI Image Query}' class. * * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.impl.URIImageQueryImpl * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.impl.QueryPackageImpl#getURIImageQuery() * @generated @@ -185,7 +184,7 @@ public interface QueryPackage extends EPackage { * The meta object literal for the 'Uri' attribute feature. * * - * + * * @generated */ EAttribute URI_IMAGE_QUERY__URI = eINSTANCE.getURIImageQuery_Uri(); diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/URIImageQuery.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/URIImageQuery.java index b3e24a5e9e1..1e9871bf1bf 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/URIImageQuery.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/URIImageQuery.java @@ -39,7 +39,7 @@ public interface URIImageQuery extends Query { * If the meaning of the 'Uri' attribute isn't clear, there really should be more of a description here... *

    * - * + * * @return the value of the 'Uri' attribute. * @see #setUri(String) * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.QueryPackage#getURIImageQuery_Uri() @@ -52,7 +52,7 @@ public interface URIImageQuery extends Query { * Sets the value of the '{@link org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.URIImageQuery#getUri Uri}' attribute. * * - * + * * @param value * the new value of the 'Uri' attribute. * @see #getUri() diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/impl/QueryFactoryImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/impl/QueryFactoryImpl.java index 842595d46c0..f4f3484dabc 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/impl/QueryFactoryImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/impl/QueryFactoryImpl.java @@ -17,13 +17,15 @@ import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.impl.EFactoryImpl; import org.eclipse.emf.ecore.plugin.EcorePlugin; -import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.*; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.QueryFactory; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.QueryPackage; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.URIImageQuery; /** * * An implementation of the model Factory. * - * + * * @generated */ public class QueryFactoryImpl extends EFactoryImpl implements QueryFactory { @@ -31,7 +33,7 @@ public class QueryFactoryImpl extends EFactoryImpl implements QueryFactory { * Creates the default factory implementation. * * - * + * * @generated */ public static QueryFactory init() { @@ -50,7 +52,7 @@ public class QueryFactoryImpl extends EFactoryImpl implements QueryFactory { * Creates an instance of the factory. * * - * + * * @generated */ public QueryFactoryImpl() { @@ -60,7 +62,7 @@ public class QueryFactoryImpl extends EFactoryImpl implements QueryFactory { /** * * - * + * * @generated */ @Override @@ -76,7 +78,7 @@ public class QueryFactoryImpl extends EFactoryImpl implements QueryFactory { /** * * - * + * * @generated */ public URIImageQuery createURIImageQuery() { @@ -87,7 +89,7 @@ public class QueryFactoryImpl extends EFactoryImpl implements QueryFactory { /** * * - * + * * @generated */ public QueryPackage getQueryPackage() { @@ -97,7 +99,7 @@ public class QueryFactoryImpl extends EFactoryImpl implements QueryFactory { /** * * - * + * * @deprecated * @generated */ diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/impl/QueryPackageImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/impl/QueryPackageImpl.java index 48717db5903..91766d530d2 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/impl/QueryPackageImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/impl/QueryPackageImpl.java @@ -16,24 +16,24 @@ import org.eclipse.emf.ecore.EAttribute; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.impl.EPackageImpl; -import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.EFacetPackage; -import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.ExtensiblePackage; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.QueryFactory; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.QueryPackage; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.URIImageQuery; +import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.EFacetPackage; +import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.ExtensiblePackage; /** * * An implementation of the model Package. * - * + * * @generated */ public class QueryPackageImpl extends EPackageImpl implements QueryPackage { /** * * - * + * * @generated */ private EClass uriImageQueryEClass = null; @@ -43,7 +43,7 @@ public class QueryPackageImpl extends EPackageImpl implements QueryPackage { * package URI value. *

    * Note: the correct way to create the package is via the static factory method {@link #init init()}, which also performs initialization of the package, or returns the registered package, if one already exists. - * + * * @see org.eclipse.emf.ecore.EPackage.Registry * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.QueryPackage#eNS_URI * @see #init() @@ -56,7 +56,7 @@ public class QueryPackageImpl extends EPackageImpl implements QueryPackage { /** * * - * + * * @generated */ private static boolean isInited = false; @@ -66,7 +66,7 @@ public class QueryPackageImpl extends EPackageImpl implements QueryPackage { * *

    * This method is used to initialize {@link QueryPackage#eINSTANCE} when that field is accessed. Clients should not invoke it directly. Instead, they should simply access that field to obtain the package. - * + * * @see #eNS_URI * @see #createPackageContents() * @see #initializePackageContents() @@ -103,7 +103,7 @@ public class QueryPackageImpl extends EPackageImpl implements QueryPackage { /** * * - * + * * @generated */ public EClass getURIImageQuery() { @@ -113,7 +113,7 @@ public class QueryPackageImpl extends EPackageImpl implements QueryPackage { /** * * - * + * * @generated */ public EAttribute getURIImageQuery_Uri() { @@ -123,7 +123,7 @@ public class QueryPackageImpl extends EPackageImpl implements QueryPackage { /** * * - * + * * @generated */ public QueryFactory getQueryFactory() { @@ -133,7 +133,7 @@ public class QueryPackageImpl extends EPackageImpl implements QueryPackage { /** * * - * + * * @generated */ private boolean isCreated = false; @@ -143,7 +143,7 @@ public class QueryPackageImpl extends EPackageImpl implements QueryPackage { * guarded to have no affect on any invocation but its first. * * - * + * * @generated */ public void createPackageContents() { @@ -160,7 +160,7 @@ public class QueryPackageImpl extends EPackageImpl implements QueryPackage { /** * * - * + * * @generated */ private boolean isInitialized = false; @@ -170,7 +170,7 @@ public class QueryPackageImpl extends EPackageImpl implements QueryPackage { * method is guarded to have no affect on any invocation but its first. * * - * + * * @generated */ public void initializePackageContents() { diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/impl/URIImageQueryImpl.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/impl/URIImageQueryImpl.java index 7f92e7366ee..e09f3d5c273 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/impl/URIImageQueryImpl.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/impl/URIImageQueryImpl.java @@ -15,9 +15,9 @@ package org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; -import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.impl.QueryImpl; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.QueryPackage; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.URIImageQuery; +import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.impl.QueryImpl; /** * @@ -37,7 +37,7 @@ public class URIImageQueryImpl extends QueryImpl implements URIImageQuery { * The default value of the '{@link #getUri() Uri}' attribute. * * - * + * * @see #getUri() * @generated * @ordered @@ -48,7 +48,7 @@ public class URIImageQueryImpl extends QueryImpl implements URIImageQuery { * The cached value of the '{@link #getUri() Uri}' attribute. * * - * + * * @see #getUri() * @generated * @ordered @@ -58,7 +58,7 @@ public class URIImageQueryImpl extends QueryImpl implements URIImageQuery { /** * * - * + * * @generated */ protected URIImageQueryImpl() { @@ -68,7 +68,7 @@ public class URIImageQueryImpl extends QueryImpl implements URIImageQuery { /** * * - * + * * @generated */ @Override @@ -79,7 +79,7 @@ public class URIImageQueryImpl extends QueryImpl implements URIImageQuery { /** * * - * + * * @generated */ public String getUri() { @@ -89,7 +89,7 @@ public class URIImageQueryImpl extends QueryImpl implements URIImageQuery { /** * * - * + * * @generated */ public void setUri(String newUri) { @@ -103,7 +103,7 @@ public class URIImageQueryImpl extends QueryImpl implements URIImageQuery { /** * * - * + * * @generated */ @Override @@ -118,7 +118,7 @@ public class URIImageQueryImpl extends QueryImpl implements URIImageQuery { /** * * - * + * * @generated */ @Override @@ -134,7 +134,7 @@ public class URIImageQueryImpl extends QueryImpl implements URIImageQuery { /** * * - * + * * @generated */ @Override @@ -150,7 +150,7 @@ public class URIImageQueryImpl extends QueryImpl implements URIImageQuery { /** * * - * + * * @generated */ @Override @@ -165,7 +165,7 @@ public class URIImageQueryImpl extends QueryImpl implements URIImageQuery { /** * * - * + * * @generated */ @Override diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/util/QueryAdapterFactory.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/util/QueryAdapterFactory.java index 2febbf62138..40fb7a30299 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/util/QueryAdapterFactory.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/util/QueryAdapterFactory.java @@ -16,15 +16,16 @@ import org.eclipse.emf.common.notify.Adapter; import org.eclipse.emf.common.notify.Notifier; import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; import org.eclipse.emf.ecore.EObject; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.QueryPackage; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.URIImageQuery; import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query; -import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.*; /** * * The Adapter Factory for the model. * It provides an adapter createXXX method for each class of the model. * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.QueryPackage * @generated */ @@ -33,7 +34,7 @@ public class QueryAdapterFactory extends AdapterFactoryImpl { * The cached model package. * * - * + * * @generated */ protected static QueryPackage modelPackage; @@ -42,7 +43,7 @@ public class QueryAdapterFactory extends AdapterFactoryImpl { * Creates an instance of the adapter factory. * * - * + * * @generated */ public QueryAdapterFactory() { @@ -56,7 +57,7 @@ public class QueryAdapterFactory extends AdapterFactoryImpl { * * This implementation returns true if the object is either the model's package or is an instance object of the model. * - * + * * @return whether this factory is applicable for the type of the object. * @generated */ @@ -75,7 +76,7 @@ public class QueryAdapterFactory extends AdapterFactoryImpl { * The switch that delegates to the createXXX methods. * * - * + * * @generated */ protected QuerySwitch modelSwitch = @@ -100,7 +101,7 @@ public class QueryAdapterFactory extends AdapterFactoryImpl { * Creates an adapter for the target. * * - * + * * @param target * the object to adapt. * @return the adapter for the target. @@ -118,7 +119,7 @@ public class QueryAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see query.URIImageQuery * @generated @@ -133,7 +134,7 @@ public class QueryAdapterFactory extends AdapterFactoryImpl { * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * - * + * * @return the new adapter. * @see org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query * @generated @@ -147,7 +148,7 @@ public class QueryAdapterFactory extends AdapterFactoryImpl { * * This default implementation returns null. * - * + * * @return the new adapter. * @generated */ diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/util/QuerySwitch.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/util/QuerySwitch.java index c489e3444c4..9c4b794d553 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/util/QuerySwitch.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.metamodel/src/org/eclipse/papyrus/emf/facet/custom/metamodel/v0_3_0/query/util/QuerySwitch.java @@ -16,9 +16,9 @@ import java.util.List; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EObject; -import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.QueryPackage; import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.URIImageQuery; +import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query; /** * @@ -29,7 +29,7 @@ import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.URIImageQuery * until a non-null result is returned, * which is the result of the switch. * - * + * * @see org.eclipse.papyrus.emf.facet.custom.metamodel.v0_3_0.query.QueryPackage * @generated */ @@ -38,7 +38,7 @@ public class QuerySwitch { * The cached model package * * - * + * * @generated */ protected static QueryPackage modelPackage; @@ -47,7 +47,7 @@ public class QuerySwitch { * Creates an instance of the switch. * * - * + * * @generated */ public QuerySwitch() { @@ -60,7 +60,7 @@ public class QuerySwitch { * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. * * - * + * * @return the first non-null result returned by a caseXXX call. * @generated */ @@ -72,7 +72,7 @@ public class QuerySwitch { * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. * * - * + * * @return the first non-null result returned by a caseXXX call. * @generated */ @@ -92,7 +92,7 @@ public class QuerySwitch { * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. * * - * + * * @return the first non-null result returned by a caseXXX call. * @generated */ @@ -120,7 +120,7 @@ public class QuerySwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'URI Image Query'. @@ -137,7 +137,7 @@ public class QuerySwitch { * This implementation returns null; * returning a non-null result will terminate the switch. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'Query'. @@ -154,7 +154,7 @@ public class QuerySwitch { * This implementation returns null; * returning a non-null result will terminate the switch, but this is the last case anyway. * - * + * * @param object * the target of the switch. * @return the result of interpreting the object as an instance of 'EObject'. -- cgit v1.2.3