diff options
author | Camille Letavernier | 2014-08-21 11:37:18 +0000 |
---|---|---|
committer | Camille Letavernier | 2014-08-21 11:37:18 +0000 |
commit | ea48a20561464c3cbb7895d430583669a9f82fcc (patch) | |
tree | 0fdf9eebacbbb301b13bafce3ca4a6952ff6e91c /extraplugins/eastadl | |
parent | f91b71175fd97557cf378cdcad845a44a6274b16 (diff) | |
download | org.eclipse.papyrus-ea48a20561464c3cbb7895d430583669a9f82fcc.tar.gz org.eclipse.papyrus-ea48a20561464c3cbb7895d430583669a9f82fcc.tar.xz org.eclipse.papyrus-ea48a20561464c3cbb7895d430583669a9f82fcc.zip |
[Code style] Apply clean-up and formatter on Extra plug-ins
Diffstat (limited to 'extraplugins/eastadl')
846 files changed, 46924 insertions, 24087 deletions
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/Activator.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/Activator.java index 176ef0d4eb6..bf09d21de95 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/Activator.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/Activator.java @@ -13,7 +13,7 @@ public class Activator extends AbstractUIPlugin { // The shared instance
private static Activator plugin;
-
+
/**
* The constructor
*/
@@ -22,8 +22,10 @@ public class Activator extends AbstractUIPlugin { /*
* (non-Javadoc)
+ *
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
+ @Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
@@ -31,8 +33,10 @@ public class Activator extends AbstractUIPlugin { /*
* (non-Javadoc)
+ *
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
+ @Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/handler/CreateFunctionAllocationHandler.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/handler/CreateFunctionAllocationHandler.java index b57f69dcd2a..f1ebd03f936 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/handler/CreateFunctionAllocationHandler.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/handler/CreateFunctionAllocationHandler.java @@ -1,5 +1,5 @@ /**
- *
+ *
*/
package org.eclipse.papyrus.eastadl.nattable.allocation.config.handler;
@@ -17,9 +17,9 @@ public class CreateFunctionAllocationHandler extends FunctionAllocationHandler { public static final String TABLE_ALLOCATION_TYPE = "EAST-ADLFunctionAllocationTable"; //$NON-NLS-1$
/**
- *
+ *
* @see org.eclipse.papyrus.sysml.nattable.menu.handlers.AbstractSysmlNattableCreateCommandHandler#setEnabled(java.lang.Object)
- *
+ *
* @param evaluationContext
*/
@Override
@@ -28,7 +28,7 @@ public class CreateFunctionAllocationHandler extends FunctionAllocationHandler { boolean isEnabled = command.canExecute();
INattableModelManager tableManager = INattableModelManagerUtils.getTableManagerFromWorkbenchPart(getActiveWorkbenchPart());
isEnabled = isEnabled && tableManager.getTable().getTableConfiguration().getType().equals(TABLE_ALLOCATION_TYPE);
- if(isEnabled) {
+ if (isEnabled) {
IElementType newElementType = getElementTypeToCreate();
String id = newElementType.getId();
isEnabled = tableManager.canCreateRowElement(id);
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/tester/AllocationPropertyTester.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/tester/AllocationPropertyTester.java index 253736bacda..fceacfae23b 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/tester/AllocationPropertyTester.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/tester/AllocationPropertyTester.java @@ -1,7 +1,7 @@ /*****************************************************************************
* Copyright (c) 2013 CEA LIST.
*
- *
+ *
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -25,8 +25,8 @@ public class AllocationPropertyTester extends NattableWidgetPropertyTester { @Override
public boolean test(Object receiver, String property, Object[] args, Object expectedValue) {
final INattableModelManager manager = getNattableModelManager();
- if(manager != null) {
- if(IS_ALLOCATION_TABLE.equals(property) && expectedValue instanceof Boolean) {
+ if (manager != null) {
+ if (IS_ALLOCATION_TABLE.equals(property) && expectedValue instanceof Boolean) {
return expectedValue.equals(manager.getTable().getTableConfiguration().getType().equals(CreateFunctionAllocationHandler.TABLE_ALLOCATION_TYPE));
}
}
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/tester/TableAllocationCreationTester.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/tester/TableAllocationCreationTester.java index 5dc5f6a0764..ecfbff85743 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/tester/TableAllocationCreationTester.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation.config/src/org/eclipse/papyrus/eastadl/nattable/allocation/config/tester/TableAllocationCreationTester.java @@ -1,7 +1,7 @@ /*****************************************************************************
* Copyright (c) 2013 CEA LIST.
*
- *
+ *
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -26,20 +26,21 @@ import org.eclipse.uml2.uml.util.UMLUtil; public class TableAllocationCreationTester implements ITableTester {
/**
- *
+ *
* @see org.eclipse.papyrus.infra.nattable.tester.ITableTester#isAllowed(java.lang.Object)
- *
+ *
* @param context
* @return
*/
+ @Override
public IStatus isAllowed(Object context) {
- if(context instanceof Element) {
- Element el = (Element)context;
+ if (context instanceof Element) {
+ Element el = (Element) context;
boolean result = context instanceof Component;
- if(result) {
+ if (result) {
final String packageQN = UMLUtil.getProfile(FunctionmodelingPackage.eINSTANCE, el).getQualifiedName();
result = result && el.getNearestPackage().getAppliedProfile(packageQN, true) != null;
- if(result) {
+ if (result) {
return new Status(IStatus.OK, Activator.PLUGIN_ID, Messages.TableAllocationCreationTester_OKMessage);
} else {
return new Status(IStatus.ERROR, Activator.PLUGIN_ID, String.format(Messages.TableAllocationCreationTester_ProfileNotApplied, packageQN));
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation/src/org/eclipse/papyrus/eastadl/nattable/allocation/Activator.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation/src/org/eclipse/papyrus/eastadl/nattable/allocation/Activator.java index f04aabc473f..c1edfcb788c 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation/src/org/eclipse/papyrus/eastadl/nattable/allocation/Activator.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.allocation/src/org/eclipse/papyrus/eastadl/nattable/allocation/Activator.java @@ -13,7 +13,7 @@ public class Activator extends AbstractUIPlugin { // The shared instance
private static Activator plugin;
-
+
/**
* The constructor
*/
@@ -22,8 +22,10 @@ public class Activator extends AbstractUIPlugin { /*
* (non-Javadoc)
+ *
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
+ @Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
@@ -31,8 +33,10 @@ public class Activator extends AbstractUIPlugin { /*
* (non-Javadoc)
+ *
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
+ @Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/Activator.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/Activator.java index d5ba8da5f08..c738b51080f 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/Activator.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/Activator.java @@ -13,7 +13,7 @@ public class Activator extends AbstractUIPlugin { // The shared instance
private static Activator plugin;
-
+
/**
* The constructor
*/
@@ -22,8 +22,10 @@ public class Activator extends AbstractUIPlugin { /*
* (non-Javadoc)
+ *
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
+ @Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
@@ -31,8 +33,10 @@ public class Activator extends AbstractUIPlugin { /*
* (non-Javadoc)
+ *
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
+ @Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/PropertyTester.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/PropertyTester.java index ffda53d70bd..c0732dfd45e 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/PropertyTester.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/PropertyTester.java @@ -19,25 +19,25 @@ public class PropertyTester extends org.eclipse.core.expressions.PropertyTester /** * Checks whether each element in the StructuredSelection can be adapted to an org.eclipse.uml2.uml.StructuredClassifier - * + * * @param structuredSelection * @return result of test */ private boolean isStructuredClassifier(IStructuredSelection structuredSelection) { - if(structuredSelection != null) { + if (structuredSelection != null) { @SuppressWarnings("rawtypes") Iterator iterator = structuredSelection.iterator(); - while(iterator.hasNext()) { + while (iterator.hasNext()) { Object selection = iterator.next(); - if(!(selection instanceof IAdaptable)) { + if (!(selection instanceof IAdaptable)) { return false; } - EObject object = (EObject)((IAdaptable)selection).getAdapter(EObject.class); - if(object == null) { + EObject object = (EObject) ((IAdaptable) selection).getAdapter(EObject.class); + if (object == null) { return false; } - if(!(object instanceof StructuredClassifier)) { + if (!(object instanceof StructuredClassifier)) { return false; } } @@ -48,25 +48,25 @@ public class PropertyTester extends org.eclipse.core.expressions.PropertyTester /** * Checks whether each element in the StructuredSelection can be adapted to an org.eclipse.uml2.uml.NamedElement - * + * * @param structuredSelection * @return result of test */ private boolean isNamedElement(IStructuredSelection structuredSelection) { - if(structuredSelection != null) { + if (structuredSelection != null) { @SuppressWarnings("rawtypes") Iterator iterator = structuredSelection.iterator(); - while(iterator.hasNext()) { + while (iterator.hasNext()) { Object selection = iterator.next(); - if(!(selection instanceof IAdaptable)) { + if (!(selection instanceof IAdaptable)) { return false; } - EObject object = (EObject)((IAdaptable)selection).getAdapter(EObject.class); - if(object == null) { + EObject object = (EObject) ((IAdaptable) selection).getAdapter(EObject.class); + if (object == null) { return false; } - if(!(object instanceof NamedElement)) { + if (!(object instanceof NamedElement)) { return false; } } @@ -78,25 +78,25 @@ public class PropertyTester extends org.eclipse.core.expressions.PropertyTester /** * Checks whether each element in the StructuredSelection can be adapted to an org.eclipse.uml2.uml.Package - * + * * @param structuredSelection * @return result of test */ private boolean isPackage(IStructuredSelection structuredSelection) { - if(structuredSelection != null) { + if (structuredSelection != null) { @SuppressWarnings("rawtypes") Iterator iterator = structuredSelection.iterator(); - while(iterator.hasNext()) { + while (iterator.hasNext()) { Object selection = iterator.next(); - if(!(selection instanceof IAdaptable)) { + if (!(selection instanceof IAdaptable)) { return false; } - EObject object = (EObject)((IAdaptable)selection).getAdapter(EObject.class); - if(object == null) { + EObject object = (EObject) ((IAdaptable) selection).getAdapter(EObject.class); + if (object == null) { return false; } - if(!(object instanceof org.eclipse.uml2.uml.Package)) { + if (!(object instanceof org.eclipse.uml2.uml.Package)) { return false; } } @@ -108,28 +108,29 @@ public class PropertyTester extends org.eclipse.core.expressions.PropertyTester /** * This is the method called when displaying menu whose visibility is conditioned by the tester. * The property to be tested is passed as a String parameter - * + * * @see org.eclipse.core.expressions.IPropertyTester#test(java.lang.Object, java.lang.String, java.lang.Object[], java.lang.Object) - * + * * @param receiver * @param property * @param args * @param expectedValue * @return */ + @Override public boolean test(Object receiver, String property, Object[] args, Object expectedValue) { - if(isPackage.equals(property)) { - boolean testResult = isPackage((IStructuredSelection)receiver); + if (isPackage.equals(property)) { + boolean testResult = isPackage((IStructuredSelection) receiver); return expectedValue.equals(new Boolean(testResult)); } - if(isStructuredClassifier.equals(property)) { - boolean testResult = isStructuredClassifier((IStructuredSelection)receiver); + if (isStructuredClassifier.equals(property)) { + boolean testResult = isStructuredClassifier((IStructuredSelection) receiver); return expectedValue.equals(new Boolean(testResult)); } - if(isNamedElement.equals(property)) { - boolean testResult = isNamedElement((IStructuredSelection)receiver); + if (isNamedElement.equals(property)) { + boolean testResult = isNamedElement((IStructuredSelection) receiver); return expectedValue.equals(new Boolean(testResult)); } diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/handlers/AbstractEastadlNattableCreateCommandHandler.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/handlers/AbstractEastadlNattableCreateCommandHandler.java index c89a86e0c8c..3026f97afdc 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/handlers/AbstractEastadlNattableCreateCommandHandler.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/handlers/AbstractEastadlNattableCreateCommandHandler.java @@ -13,15 +13,16 @@ public abstract class AbstractEastadlNattableCreateCommandHandler extends /**
* <pre>
- *
+ *
* Build the create command for an element creation in the selected container.
- * The create command is given by the {@link IElementEditService} of selected
+ * The create command is given by the {@link IElementEditService} of selected
* element.
*
* @return the composite creation command for current selection
- *
+ *
* </pre>
*/
+ @Override
protected Command buildCommand() {
Command createCmd = super.buildCommand();
@@ -31,11 +32,12 @@ public abstract class AbstractEastadlNattableCreateCommandHandler extends /**
* Obtain the context of the active table editor.
- *
+ *
* @see org.eclipse.papyrus.uml.service.types.handlers.AbstractCommandHandler#getCommandContext()
- *
+ *
* @return
*/
+ @Override
protected ICommandContext getCommandContext() {
return TableMenuUtils.getTableCommandContext(INattableModelManagerUtils
.getTableManagerFromWorkbenchPart(getActiveWorkbenchPart()));
@@ -45,11 +47,12 @@ public abstract class AbstractEastadlNattableCreateCommandHandler extends /**
* Verify if this handler is currently active and the command can execute.
* Additionally, verify if this table can add this type of element.
- *
+ *
* @see org.eclipse.papyrus.uml.service.types.handlers.AbstractCreateCommandHandler#setEnabled(java.lang.Object)
- *
+ *
* @param evaluationContext
*/
+ @Override
public void setEnabled(Object evaluationContext) {
INattableModelManager tableManager = INattableModelManagerUtils
.getTableManagerFromWorkbenchPart(getActiveWorkbenchPart());
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/handlers/EastAdlNattableCreateMenu.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/handlers/EastAdlNattableCreateMenu.java index 8069a09c0bf..c80e8e0be2b 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/handlers/EastAdlNattableCreateMenu.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/handlers/EastAdlNattableCreateMenu.java @@ -14,7 +14,7 @@ public class EastAdlNattableCreateMenu extends AbstractCreateEastadlChildMenu { @Override
public void createContributionItems(IServiceLocator serviceLocator, IContributionRoot additions) {
IWorkbenchPart part = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActivePart();
- if(tester.test(part, NattableWidgetPropertyTester.IS_NATTABLE_WIDGET, null, Boolean.TRUE)) {
+ if (tester.test(part, NattableWidgetPropertyTester.IS_NATTABLE_WIDGET, null, Boolean.TRUE)) {
super.createContributionItems(serviceLocator, additions);
}
}
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/handlers/FunctionAllocationHandler.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/handlers/FunctionAllocationHandler.java index 7ec96daa757..206cb393ec4 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/handlers/FunctionAllocationHandler.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable.menu/src/org/eclipse/papyrus/eastadl/nattable/menu/handlers/FunctionAllocationHandler.java @@ -10,11 +10,12 @@ public class FunctionAllocationHandler extends AbstractEastadlNattableCreateComm * @see org.eclipse.papyrus.uml.service.types.handlers.AbstractCreateCommandHandler#getElementTypeToCreate()
*
* @return the IElementType this handler is supposed to create
- *
+ *
* </pre>
- *
+ *
* @generated
*/
+ @Override
protected IElementType getElementTypeToCreate() {
return EastadlElementTypes.FUNCTION_ALLOCATE;
}
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable/src/org/eclipse/papyrus/eastadl/nattable/Activator.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable/src/org/eclipse/papyrus/eastadl/nattable/Activator.java index 2352ef2a156..d6ec53f2253 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable/src/org/eclipse/papyrus/eastadl/nattable/Activator.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable/src/org/eclipse/papyrus/eastadl/nattable/Activator.java @@ -13,7 +13,7 @@ public class Activator extends AbstractUIPlugin { // The shared instance
private static Activator plugin;
-
+
/**
* The constructor
*/
@@ -22,8 +22,10 @@ public class Activator extends AbstractUIPlugin { /*
* (non-Javadoc)
+ *
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
+ @Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
@@ -31,8 +33,10 @@ public class Activator extends AbstractUIPlugin { /*
* (non-Javadoc)
+ *
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
+ @Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable/src/org/eclipse/papyrus/eastadl/nattable/manager/axis/AllocateAxisManager.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable/src/org/eclipse/papyrus/eastadl/nattable/manager/axis/AllocateAxisManager.java index 8e1a20ce726..876deeb23e3 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable/src/org/eclipse/papyrus/eastadl/nattable/manager/axis/AllocateAxisManager.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable/src/org/eclipse/papyrus/eastadl/nattable/manager/axis/AllocateAxisManager.java @@ -28,7 +28,7 @@ public class AllocateAxisManager @Override
protected FunctionAllocation getStereotypeApplication(Element element) {
- FunctionAllocation adlFunctionAllocation = (FunctionAllocation) UMLUtil
+ FunctionAllocation adlFunctionAllocation = UMLUtil
.getStereotypeApplication(element, FunctionAllocation.class);
return adlFunctionAllocation;
}
@@ -40,6 +40,7 @@ public class AllocateAxisManager return name;
}
+ @Override
public boolean canCreateAxisElement(final String elementId) {
return ((ISpecializationType) EastadlElementTypes.FUNCTION_ALLOCATE)
.getId().equals(elementId);
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable/src/org/eclipse/papyrus/eastadl/nattable/utils/Constants.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable/src/org/eclipse/papyrus/eastadl/nattable/utils/Constants.java index 6e7d10910b4..f81a9666744 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable/src/org/eclipse/papyrus/eastadl/nattable/utils/Constants.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.nattable/src/org/eclipse/papyrus/eastadl/nattable/utils/Constants.java @@ -3,7 +3,7 @@ package org.eclipse.papyrus.eastadl.nattable.utils; public class Constants {
private Constants() {
- //to prevent instanciation
+ // to prevent instanciation
}
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/Activator.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/Activator.java index ba2dbb4bb3d..da09a05ec5a 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/Activator.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/Activator.java @@ -13,7 +13,7 @@ public class Activator extends AbstractUIPlugin { // The shared instance
private static Activator plugin;
-
+
/**
* The constructor
*/
@@ -22,8 +22,10 @@ public class Activator extends AbstractUIPlugin { /*
* (non-Javadoc)
+ *
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
+ @Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
@@ -31,8 +33,10 @@ public class Activator extends AbstractUIPlugin { /*
* (non-Javadoc)
+ *
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
+ @Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/elements/EastadlElementTypes.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/elements/EastadlElementTypes.java index fda6739baa6..f1bc0e70518 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/elements/EastadlElementTypes.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/elements/EastadlElementTypes.java @@ -3,11 +3,11 @@ package org.eclipse.papyrus.eastadl.service.types.elements; import org.eclipse.gmf.runtime.emf.type.core.AbstractElementTypeEnumerator;
import org.eclipse.gmf.runtime.emf.type.core.IHintedType;
-public class EastadlElementTypes extends AbstractElementTypeEnumerator{
+public class EastadlElementTypes extends AbstractElementTypeEnumerator {
/** Constant for SysML nature */
public static final String SYSML_NATURE = "East-adl_Nature";
-
+
/** IElementType for SysML Allocate */
- public static final IHintedType FUNCTION_ALLOCATE = (IHintedType)getElementType("org.eclipse.papyrus.eastadl.structure.functionmodeling.FunctionAllocation"); //$NON-NLS-1$
+ public static final IHintedType FUNCTION_ALLOCATE = (IHintedType) getElementType("org.eclipse.papyrus.eastadl.structure.functionmodeling.FunctionAllocation"); //$NON-NLS-1$
}
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/filter/EastadlCommandFilter.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/filter/EastadlCommandFilter.java index be17bb2ad2a..d933ee2ab94 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/filter/EastadlCommandFilter.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/filter/EastadlCommandFilter.java @@ -12,21 +12,24 @@ import org.eclipse.papyrus.uml.service.types.filter.ICommandFilter; public class EastadlCommandFilter implements ICommandFilter {
public static final EastadlCommandFilter INSTANCE = new EastadlCommandFilter();
+
private EastadlCommandFilter() {
-
+
}
+
private List<IElementType> visibleCommands;
+
@Override
public List<IElementType> getVisibleCommands() {
if (visibleCommands == null) {
List<IElementType> localVisibleCommands = new ArrayList<IElementType>();
localVisibleCommands = new ArrayList<IElementType>();
-
+
localVisibleCommands.add(EastadlElementTypes.FUNCTION_ALLOCATE);
-
+
localVisibleCommands.add(UMLElementTypes.PROPERTY);
-
+
this.visibleCommands = Collections.unmodifiableList(localVisibleCommands);
}
return visibleCommands;
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/handlers/AbstractEastadlCreateCommandHandler.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/handlers/AbstractEastadlCreateCommandHandler.java index 5d29f8193f3..a8035cf5eda 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/handlers/AbstractEastadlCreateCommandHandler.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/handlers/AbstractEastadlCreateCommandHandler.java @@ -8,6 +8,8 @@ public abstract class AbstractEastadlCreateCommandHandler extends AbstractCreateCommandHandler {
private static final ICommandFilter filter = EastadlCommandFilter.INSTANCE;
+
+ @Override
public ICommandFilter getCommandFilter() {
return filter;
}
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/helper/AllocateEditHelperAdvice.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/helper/AllocateEditHelperAdvice.java index 16e886365fe..e5dc0c487b3 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/helper/AllocateEditHelperAdvice.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/helper/AllocateEditHelperAdvice.java @@ -13,7 +13,7 @@ import org.eclipse.papyrus.uml.service.types.utils.NamedElementHelper; import org.eclipse.uml2.uml.NamedElement;
import org.eclipse.uml2.uml.util.UMLUtil.StereotypeApplicationHelper;
-public class AllocateEditHelperAdvice extends AbstractStereotypedElementEditHelperAdvice {
+public class AllocateEditHelperAdvice extends AbstractStereotypedElementEditHelperAdvice {
/** Default constructor */
public AllocateEditHelperAdvice() {
@@ -26,9 +26,10 @@ public class AllocateEditHelperAdvice extends AbstractStereotypedElementEditHel return new ConfigureElementCommand(request) {
+ @Override
protected CommandResult doExecuteWithResult(IProgressMonitor progressMonitor, IAdaptable info) throws ExecutionException {
- NamedElement element = (NamedElement)request.getElementToConfigure();
- if(element != null) {
+ NamedElement element = (NamedElement) request.getElementToConfigure();
+ if (element != null) {
StereotypeApplicationHelper.INSTANCE.applyStereotype(element, FunctionmodelingPackage.eINSTANCE.getFunctionAllocation());
// Set default name
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/matcher/AllocateMatcher.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/matcher/AllocateMatcher.java index fcf31bd268a..98992557193 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/matcher/AllocateMatcher.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/matcher/AllocateMatcher.java @@ -8,13 +8,14 @@ import org.eclipse.uml2.uml.util.UMLUtil; public class AllocateMatcher implements IElementMatcher {
+ @Override
public boolean matches(EObject eObject) {
boolean isMatch = false;
- if(eObject instanceof Abstraction) {
+ if (eObject instanceof Abstraction) {
- Abstraction element = (Abstraction)eObject;
- if(UMLUtil.getStereotypeApplication(element, FunctionAllocation.class) != null) {
+ Abstraction element = (Abstraction) eObject;
+ if (UMLUtil.getStereotypeApplication(element, FunctionAllocation.class) != null) {
isMatch = true;
}
}
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/menu/AbstractCreateEastadlChildMenu.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/menu/AbstractCreateEastadlChildMenu.java index 0e504a65251..8a8ee4ed2d9 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/menu/AbstractCreateEastadlChildMenu.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl.service.types/src/org/eclipse/papyrus/eastadl/service/types/menu/AbstractCreateEastadlChildMenu.java @@ -9,7 +9,7 @@ public class AbstractCreateEastadlChildMenu extends AbstractCreateMenuFromComman /**
* Constructor.
- *
+ *
*/
public AbstractCreateEastadlChildMenu() {
super(SYSML_CREATION_COMMAND_CATEGORY);
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/EastadlFactory.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/EastadlFactory.java index e6260c46caf..5da47c0310b 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/EastadlFactory.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/EastadlFactory.java @@ -1,7 +1,7 @@ /*****************************************************************************
* Copyright (c) 2010 CEA LIST.
*
- *
+ *
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -20,6 +20,7 @@ import org.eclipse.emf.ecore.EFactory; /**
* <!-- begin-user-doc --> The <b>Factory</b> for the model. It provides a create method for each
* non-abstract class of the model. <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.EastadlPackage
* @generated
*/
@@ -28,6 +29,7 @@ public interface EastadlFactory extends EFactory { /**
* The singleton instance of the factory.
* <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
EastadlFactory eINSTANCE = org.eclipse.papyrus.eastadl.impl.EastadlFactoryImpl.init();
@@ -35,6 +37,7 @@ public interface EastadlFactory extends EFactory { /**
* Returns the package supported by this factory.
* <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @return the package supported by this factory.
* @generated
*/
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/EastadlPackage.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/EastadlPackage.java index a213f4181c5..232636eb33e 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/EastadlPackage.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/EastadlPackage.java @@ -1,7 +1,7 @@ /*****************************************************************************
* Copyright (c) 2010 CEA LIST.
*
- *
+ *
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -28,6 +28,7 @@ import org.eclipse.emf.ecore.EPackage; * <li>and each data type</li>
* </ul>
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.EastadlFactory
* @model kind="package"
* annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='EAST-ADL2'"
@@ -44,6 +45,7 @@ public interface EastadlPackage extends EPackage { * <li>and each data type</li>
* </ul>
* <!-- end-user-doc -->
+ *
* @generated
*/
interface Literals {
@@ -52,6 +54,7 @@ public interface EastadlPackage extends EPackage { * The meta object literal for the '<em>Dummy</em>' data type.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
+ *
* @see java.lang.String
* @see org.eclipse.papyrus.eastadl.impl.EastadlPackageImpl#getDummy()
* @generated
@@ -63,6 +66,7 @@ public interface EastadlPackage extends EPackage { /**
* The package name.
* <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
String eNAME = "eastadl";
@@ -70,6 +74,7 @@ public interface EastadlPackage extends EPackage { /**
* The package namespace URI.
* <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
String eNS_URI = "http://www.papyrusuml.org/EAST-ADL2/1";
@@ -77,6 +82,7 @@ public interface EastadlPackage extends EPackage { /**
* The package namespace name.
* <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
String eNS_PREFIX = "EAST-ADL2";
@@ -84,6 +90,7 @@ public interface EastadlPackage extends EPackage { /**
* The singleton instance of the package.
* <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
EastadlPackage eINSTANCE = org.eclipse.papyrus.eastadl.impl.EastadlPackageImpl.init();
@@ -92,6 +99,7 @@ public interface EastadlPackage extends EPackage { * The meta object id for the '<em>Dummy</em>' data type.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
+ *
* @see java.lang.String
* @see org.eclipse.papyrus.eastadl.impl.EastadlPackageImpl#getDummy()
* @generated
@@ -102,6 +110,7 @@ public interface EastadlPackage extends EPackage { * Returns the meta object for data type '{@link java.lang.String <em>Dummy</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for data type '<em>Dummy</em>'.
* @see java.lang.String
* @model instanceClass="java.lang.String"
@@ -113,6 +122,7 @@ public interface EastadlPackage extends EPackage { * Returns the factory that creates the instances of the model.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
+ *
* @return the factory that creates the instances of the model.
* @generated
*/
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/AnnexFactory.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/AnnexFactory.java index ed812fd7839..ebbe3c04ce6 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/AnnexFactory.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/AnnexFactory.java @@ -1,7 +1,7 @@ /***************************************************************************** * Copyright (c) 2010 CEA LIST. * - * + * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -22,6 +22,7 @@ import org.eclipse.emf.ecore.EFactory; * The <b>Factory</b> for the model. * It provides a create method for each non-abstract class of the model. * <!-- end-user-doc --> + * * @see org.eclipse.papyrus.eastadl.annex.AnnexPackage * @generated */ @@ -30,6 +31,7 @@ public interface AnnexFactory extends EFactory { * The singleton instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> + * * @generated */ AnnexFactory eINSTANCE = org.eclipse.papyrus.eastadl.annex.impl.AnnexFactoryImpl.init(); @@ -38,9 +40,10 @@ public interface AnnexFactory extends EFactory { * Returns the package supported by this factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> + * * @return the package supported by this factory. * @generated */ AnnexPackage getAnnexPackage(); -} //AnnexFactory +} // AnnexFactory diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/AnnexPackage.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/AnnexPackage.java index e19f868dc94..25524716a47 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/AnnexPackage.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/AnnexPackage.java @@ -1,7 +1,7 @@ /***************************************************************************** * Copyright (c) 2010 CEA LIST. * - * + * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -23,12 +23,13 @@ import org.eclipse.emf.ecore.EPackage; * The <b>Package</b> for the model. * It contains accessors for the meta objects to represent * <ul> - * <li>each class,</li> - * <li>each feature of each class,</li> - * <li>each enum,</li> - * <li>and each data type</li> + * <li>each class,</li> + * <li>each feature of each class,</li> + * <li>each enum,</li> + * <li>and each data type</li> * </ul> * <!-- end-user-doc --> + * * @see org.eclipse.papyrus.eastadl.annex.AnnexFactory * @model kind="package" * @generated @@ -38,12 +39,13 @@ public interface AnnexPackage extends EPackage { * <!-- begin-user-doc --> * Defines literals for the meta objects that represent * <ul> - * <li>each class,</li> - * <li>each feature of each class,</li> - * <li>each enum,</li> - * <li>and each data type</li> + * <li>each class,</li> + * <li>each feature of each class,</li> + * <li>each enum,</li> + * <li>and each data type</li> * </ul> * <!-- end-user-doc --> + * * @generated */ interface Literals { @@ -51,6 +53,7 @@ public interface AnnexPackage extends EPackage { * The meta object literal for the '<em>Dummy</em>' data type. * <!-- begin-user-doc --> * <!-- end-user-doc --> + * * @see java.lang.String * @see org.eclipse.papyrus.eastadl.annex.impl.AnnexPackageImpl#getDummy() * @generated @@ -63,6 +66,7 @@ public interface AnnexPackage extends EPackage { * The package name. * <!-- begin-user-doc --> * <!-- end-user-doc --> + * * @generated */ String eNAME = "annex"; @@ -71,6 +75,7 @@ public interface AnnexPackage extends EPackage { * The package namespace URI. * <!-- begin-user-doc --> * <!-- end-user-doc --> + * * @generated */ String eNS_URI = "http://www.papyrusuml.org/EAST-ADL2/Annex/1"; @@ -79,6 +84,7 @@ public interface AnnexPackage extends EPackage { * The package namespace name. * <!-- begin-user-doc --> * <!-- end-user-doc --> + * * @generated */ String eNS_PREFIX = "Annex"; @@ -87,6 +93,7 @@ public interface AnnexPackage extends EPackage { * The singleton instance of the package. * <!-- begin-user-doc --> * <!-- end-user-doc --> + * * @generated */ AnnexPackage eINSTANCE = org.eclipse.papyrus.eastadl.annex.impl.AnnexPackageImpl.init(); @@ -96,6 +103,7 @@ public interface AnnexPackage extends EPackage { * The meta object id for the '<em>Dummy</em>' data type. * <!-- begin-user-doc --> * <!-- end-user-doc --> + * * @see java.lang.String * @see org.eclipse.papyrus.eastadl.annex.impl.AnnexPackageImpl#getDummy() * @generated @@ -106,6 +114,7 @@ public interface AnnexPackage extends EPackage { * Returns the factory that creates the instances of the model. * <!-- begin-user-doc --> * <!-- end-user-doc --> + * * @return the factory that creates the instances of the model. * @generated */ @@ -115,6 +124,7 @@ public interface AnnexPackage extends EPackage { * Returns the meta object for data type '{@link java.lang.String <em>Dummy</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> + * * @return the meta object for data type '<em>Dummy</em>'. * @see java.lang.String * @model instanceClass="java.lang.String" @@ -122,4 +132,4 @@ public interface AnnexPackage extends EPackage { */ EDataType getDummy(); -} //AnnexPackage +} // AnnexPackage diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/Attribute.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/Attribute.java index e6ed3ab9d15..af28cf8c306 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/Attribute.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/Attribute.java @@ -14,8 +14,8 @@ import org.eclipse.papyrus.eastadl.infrastructure.elements.EAElement; * <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute#isIsExternVisible <em>Is Extern Visible</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute#getType <em>Type</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute#isIsExternVisible <em>Is Extern Visible</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute#getType <em>Type</em>}</li>
* </ul>
* </p>
*
@@ -29,10 +29,10 @@ public interface Attribute extends EAElement, BehaviorConstraintParameter { * The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Is Extern Visible</em>' attribute isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Is Extern Visible</em>' attribute isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Is Extern Visible</em>' attribute.
* @see #setIsExternVisible(boolean)
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#getAttribute_IsExternVisible()
@@ -45,7 +45,9 @@ public interface Attribute extends EAElement, BehaviorConstraintParameter { * Sets the value of the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute#isIsExternVisible <em>Is Extern Visible</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
- * @param value the new value of the '<em>Is Extern Visible</em>' attribute.
+ *
+ * @param value
+ * the new value of the '<em>Is Extern Visible</em>' attribute.
* @see #isIsExternVisible()
* @generated
*/
@@ -55,10 +57,10 @@ public interface Attribute extends EAElement, BehaviorConstraintParameter { * Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Type</em>' reference isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Type</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Type</em>' reference.
* @see #setType(EADatatype)
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#getAttribute_Type()
@@ -71,7 +73,9 @@ public interface Attribute extends EAElement, BehaviorConstraintParameter { * Sets the value of the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
- * @param value the new value of the '<em>Type</em>' reference.
+ *
+ * @param value
+ * the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/AttributeQuantificationconstraint.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/AttributeQuantificationconstraint.java index a8e23a10042..f3cbac19212 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/AttributeQuantificationconstraint.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/AttributeQuantificationconstraint.java @@ -14,8 +14,8 @@ import org.eclipse.papyrus.eastadl.infrastructure.elements.EAElement; * <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint#getAttribute <em>Attribute</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint#getQuantification <em>Quantification</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint#getAttribute <em>Attribute</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint#getQuantification <em>Quantification</em>}</li>
* </ul>
* </p>
*
@@ -29,10 +29,10 @@ public interface AttributeQuantificationconstraint extends EAElement, BehaviorCo * The list contents are of type {@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Attribute</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Attribute</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Attribute</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#getAttributeQuantificationconstraint_Attribute()
* @model ordered="false"
@@ -45,10 +45,10 @@ public interface AttributeQuantificationconstraint extends EAElement, BehaviorCo * The list contents are of type {@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Quantification}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Quantification</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Quantification</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Quantification</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#getAttributeQuantificationconstraint_Quantification()
* @model ordered="false"
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/AttributequantificationconstraintFactory.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/AttributequantificationconstraintFactory.java index 924e7e59e2e..936a528be8a 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/AttributequantificationconstraintFactory.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/AttributequantificationconstraintFactory.java @@ -9,6 +9,7 @@ import org.eclipse.emf.ecore.EFactory; * The <b>Factory</b> for the model.
* It provides a create method for each non-abstract class of the model.
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage
* @generated
*/
@@ -17,6 +18,7 @@ public interface AttributequantificationconstraintFactory extends EFactory { * The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
AttributequantificationconstraintFactory eINSTANCE = org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributequantificationconstraintFactoryImpl.init();
@@ -25,6 +27,7 @@ public interface AttributequantificationconstraintFactory extends EFactory { * Returns a new object of class '<em>Attribute Quantificationconstraint</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return a new object of class '<em>Attribute Quantificationconstraint</em>'.
* @generated
*/
@@ -34,6 +37,7 @@ public interface AttributequantificationconstraintFactory extends EFactory { * Returns a new object of class '<em>Quantification</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return a new object of class '<em>Quantification</em>'.
* @generated
*/
@@ -43,6 +47,7 @@ public interface AttributequantificationconstraintFactory extends EFactory { * Returns a new object of class '<em>Behavior Attribute Binding</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return a new object of class '<em>Behavior Attribute Binding</em>'.
* @generated
*/
@@ -52,6 +57,7 @@ public interface AttributequantificationconstraintFactory extends EFactory { * Returns a new object of class '<em>Logical Event</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return a new object of class '<em>Logical Event</em>'.
* @generated
*/
@@ -61,6 +67,7 @@ public interface AttributequantificationconstraintFactory extends EFactory { * Returns a new object of class '<em>Attribute</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return a new object of class '<em>Attribute</em>'.
* @generated
*/
@@ -70,9 +77,10 @@ public interface AttributequantificationconstraintFactory extends EFactory { * Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the package supported by this factory.
* @generated
*/
AttributequantificationconstraintPackage getAttributequantificationconstraintPackage();
-} //AttributequantificationconstraintFactory
+} // AttributequantificationconstraintFactory
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/AttributequantificationconstraintPackage.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/AttributequantificationconstraintPackage.java index 01430106e61..d548165f3fe 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/AttributequantificationconstraintPackage.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/AttributequantificationconstraintPackage.java @@ -13,13 +13,14 @@ import org.eclipse.papyrus.eastadl.infrastructure.elements.ElementsPackage; * The <b>Package</b> for the model.
* It contains accessors for the meta objects to represent
* <ul>
- * <li>each class,</li>
- * <li>each feature of each class,</li>
- * <li>each operation of each class,</li>
- * <li>each enum,</li>
- * <li>and each data type</li>
+ * <li>each class,</li>
+ * <li>each feature of each class,</li>
+ * <li>each operation of each class,</li>
+ * <li>each enum,</li>
+ * <li>and each data type</li>
* </ul>
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintFactory
* @model kind="package"
* @generated
@@ -29,6 +30,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The package name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
String eNAME = "attributequantificationconstraint";
@@ -37,6 +39,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The package namespace URI.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
String eNS_URI = "http://www.papyrusuml.org/EAST-ADL2/Annex/AttributeQuantificationConstraint/1";
@@ -45,6 +48,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The package namespace name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
String eNS_PREFIX = "AttributeQuantificationConstraint";
@@ -53,6 +57,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The singleton instance of the package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
AttributequantificationconstraintPackage eINSTANCE = org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributequantificationconstraintPackageImpl.init();
@@ -61,6 +66,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeQuantificationconstraintImpl <em>Attribute Quantificationconstraint</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeQuantificationconstraintImpl
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributequantificationconstraintPackageImpl#getAttributeQuantificationconstraint()
* @generated
@@ -71,6 +77,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Base Named Element</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -80,6 +87,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -89,6 +97,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Owned Comment</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -98,6 +107,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Attribute</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -107,6 +117,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Quantification</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -116,6 +127,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The number of structural features of the '<em>Attribute Quantificationconstraint</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -125,6 +137,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The number of operations of the '<em>Attribute Quantificationconstraint</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -134,6 +147,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.QuantificationImpl <em>Quantification</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.QuantificationImpl
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributequantificationconstraintPackageImpl#getQuantification()
* @generated
@@ -144,6 +158,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Base Named Element</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -153,6 +168,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -162,6 +178,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Owned Comment</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -171,6 +188,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -180,6 +198,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Base Value Specification</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -189,6 +208,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Operand</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -198,6 +218,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The number of structural features of the '<em>Quantification</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -207,6 +228,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The number of operations of the '<em>Quantification</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -216,6 +238,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl <em>Behavior Attribute Binding</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributequantificationconstraintPackageImpl#getBehaviorAttributeBinding()
* @generated
@@ -226,6 +249,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Base Named Element</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -235,6 +259,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -244,6 +269,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Owned Comment</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -253,6 +279,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Visible Through Function Port</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -262,6 +289,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Visible Through Hardware Pin</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -271,6 +299,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Visible Through Hardware Port</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -280,6 +309,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Attribute</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -289,6 +319,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Visible Through Anomaly</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -298,6 +329,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The number of structural features of the '<em>Behavior Attribute Binding</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -307,6 +339,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The number of operations of the '<em>Behavior Attribute Binding</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -316,6 +349,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.LogicalEventImpl <em>Logical Event</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.LogicalEventImpl
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributequantificationconstraintPackageImpl#getLogicalEvent()
* @generated
@@ -326,6 +360,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Base Named Element</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -335,6 +370,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -344,6 +380,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Owned Comment</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -353,6 +390,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -362,6 +400,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Base Value Specification</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -371,6 +410,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Operand</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -380,6 +420,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Is Extern Visible</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -389,6 +430,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Visible Through Function Port</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -398,6 +440,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The number of structural features of the '<em>Logical Event</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -407,6 +450,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The number of operations of the '<em>Logical Event</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -416,6 +460,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object id for the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeImpl <em>Attribute</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeImpl
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributequantificationconstraintPackageImpl#getAttribute()
* @generated
@@ -426,6 +471,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Base Named Element</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -435,6 +481,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -444,6 +491,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Owned Comment</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -453,6 +501,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Is Extern Visible</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -462,6 +511,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The feature id for the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -471,6 +521,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The number of structural features of the '<em>Attribute</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -480,6 +531,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The number of operations of the '<em>Attribute</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
* @ordered
*/
@@ -490,6 +542,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint <em>Attribute Quantificationconstraint</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for class '<em>Attribute Quantificationconstraint</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint
* @generated
@@ -500,6 +553,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for the reference list '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint#getAttribute <em>Attribute</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for the reference list '<em>Attribute</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint#getAttribute()
* @see #getAttributeQuantificationconstraint()
@@ -511,6 +565,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for the reference list '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint#getQuantification <em>Quantification</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for the reference list '<em>Quantification</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint#getQuantification()
* @see #getAttributeQuantificationconstraint()
@@ -522,6 +577,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Quantification <em>Quantification</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for class '<em>Quantification</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Quantification
* @generated
@@ -532,6 +588,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for the reference list '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Quantification#getOperand <em>Operand</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for the reference list '<em>Operand</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Quantification#getOperand()
* @see #getQuantification()
@@ -543,6 +600,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding <em>Behavior Attribute Binding</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for class '<em>Behavior Attribute Binding</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding
* @generated
@@ -553,6 +611,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for the reference list '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughFunctionPort <em>Visible Through Function Port</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for the reference list '<em>Visible Through Function Port</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughFunctionPort()
* @see #getBehaviorAttributeBinding()
@@ -564,6 +623,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for the reference list '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughHardwarePin <em>Visible Through Hardware Pin</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for the reference list '<em>Visible Through Hardware Pin</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughHardwarePin()
* @see #getBehaviorAttributeBinding()
@@ -575,6 +635,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for the reference list '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughHardwarePort <em>Visible Through Hardware Port</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for the reference list '<em>Visible Through Hardware Port</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughHardwarePort()
* @see #getBehaviorAttributeBinding()
@@ -586,6 +647,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for the reference list '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getAttribute <em>Attribute</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for the reference list '<em>Attribute</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getAttribute()
* @see #getBehaviorAttributeBinding()
@@ -597,6 +659,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for the reference list '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughAnomaly <em>Visible Through Anomaly</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for the reference list '<em>Visible Through Anomaly</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughAnomaly()
* @see #getBehaviorAttributeBinding()
@@ -608,6 +671,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.LogicalEvent <em>Logical Event</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for class '<em>Logical Event</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.LogicalEvent
* @generated
@@ -618,6 +682,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for the attribute '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.LogicalEvent#isIsExternVisible <em>Is Extern Visible</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for the attribute '<em>Is Extern Visible</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.LogicalEvent#isIsExternVisible()
* @see #getLogicalEvent()
@@ -629,6 +694,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for the reference list '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.LogicalEvent#getVisibleThroughFunctionPort <em>Visible Through Function Port</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for the reference list '<em>Visible Through Function Port</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.LogicalEvent#getVisibleThroughFunctionPort()
* @see #getLogicalEvent()
@@ -640,6 +706,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for class '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute <em>Attribute</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for class '<em>Attribute</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute
* @generated
@@ -650,6 +717,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for the attribute '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute#isIsExternVisible <em>Is Extern Visible</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for the attribute '<em>Is Extern Visible</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute#isIsExternVisible()
* @see #getAttribute()
@@ -661,6 +729,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the meta object for the reference '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute#getType <em>Type</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the meta object for the reference '<em>Type</em>'.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute#getType()
* @see #getAttribute()
@@ -672,6 +741,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * Returns the factory that creates the instances of the model.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the factory that creates the instances of the model.
* @generated
*/
@@ -681,13 +751,14 @@ public interface AttributequantificationconstraintPackage extends EPackage { * <!-- begin-user-doc -->
* Defines literals for the meta objects that represent
* <ul>
- * <li>each class,</li>
- * <li>each feature of each class,</li>
- * <li>each operation of each class,</li>
- * <li>each enum,</li>
- * <li>and each data type</li>
+ * <li>each class,</li>
+ * <li>each feature of each class,</li>
+ * <li>each operation of each class,</li>
+ * <li>each enum,</li>
+ * <li>and each data type</li>
* </ul>
* <!-- end-user-doc -->
+ *
* @generated
*/
interface Literals {
@@ -695,6 +766,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeQuantificationconstraintImpl <em>Attribute Quantificationconstraint</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeQuantificationconstraintImpl
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributequantificationconstraintPackageImpl#getAttributeQuantificationconstraint()
* @generated
@@ -705,6 +777,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '<em><b>Attribute</b></em>' reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
EReference ATTRIBUTE_QUANTIFICATIONCONSTRAINT__ATTRIBUTE = eINSTANCE.getAttributeQuantificationconstraint_Attribute();
@@ -713,6 +786,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '<em><b>Quantification</b></em>' reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
EReference ATTRIBUTE_QUANTIFICATIONCONSTRAINT__QUANTIFICATION = eINSTANCE.getAttributeQuantificationconstraint_Quantification();
@@ -721,6 +795,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.QuantificationImpl <em>Quantification</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.QuantificationImpl
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributequantificationconstraintPackageImpl#getQuantification()
* @generated
@@ -731,6 +806,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '<em><b>Operand</b></em>' reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
EReference QUANTIFICATION__OPERAND = eINSTANCE.getQuantification_Operand();
@@ -739,6 +815,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl <em>Behavior Attribute Binding</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributequantificationconstraintPackageImpl#getBehaviorAttributeBinding()
* @generated
@@ -749,6 +826,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '<em><b>Visible Through Function Port</b></em>' reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
EReference BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_FUNCTION_PORT = eINSTANCE.getBehaviorAttributeBinding_VisibleThroughFunctionPort();
@@ -757,6 +835,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '<em><b>Visible Through Hardware Pin</b></em>' reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
EReference BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PIN = eINSTANCE.getBehaviorAttributeBinding_VisibleThroughHardwarePin();
@@ -765,6 +844,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '<em><b>Visible Through Hardware Port</b></em>' reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
EReference BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PORT = eINSTANCE.getBehaviorAttributeBinding_VisibleThroughHardwarePort();
@@ -773,6 +853,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '<em><b>Attribute</b></em>' reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
EReference BEHAVIOR_ATTRIBUTE_BINDING__ATTRIBUTE = eINSTANCE.getBehaviorAttributeBinding_Attribute();
@@ -781,6 +862,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '<em><b>Visible Through Anomaly</b></em>' reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
EReference BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_ANOMALY = eINSTANCE.getBehaviorAttributeBinding_VisibleThroughAnomaly();
@@ -789,6 +871,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.LogicalEventImpl <em>Logical Event</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.LogicalEventImpl
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributequantificationconstraintPackageImpl#getLogicalEvent()
* @generated
@@ -799,6 +882,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '<em><b>Is Extern Visible</b></em>' attribute feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
EAttribute LOGICAL_EVENT__IS_EXTERN_VISIBLE = eINSTANCE.getLogicalEvent_IsExternVisible();
@@ -807,6 +891,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '<em><b>Visible Through Function Port</b></em>' reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
EReference LOGICAL_EVENT__VISIBLE_THROUGH_FUNCTION_PORT = eINSTANCE.getLogicalEvent_VisibleThroughFunctionPort();
@@ -815,6 +900,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeImpl <em>Attribute</em>}' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeImpl
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributequantificationconstraintPackageImpl#getAttribute()
* @generated
@@ -825,6 +911,7 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '<em><b>Is Extern Visible</b></em>' attribute feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
EAttribute ATTRIBUTE__IS_EXTERN_VISIBLE = eINSTANCE.getAttribute_IsExternVisible();
@@ -833,10 +920,11 @@ public interface AttributequantificationconstraintPackage extends EPackage { * The meta object literal for the '<em><b>Type</b></em>' reference feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
EReference ATTRIBUTE__TYPE = eINSTANCE.getAttribute_Type();
}
-} //AttributequantificationconstraintPackage
+} // AttributequantificationconstraintPackage
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/BehaviorAttributeBinding.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/BehaviorAttributeBinding.java index f3b7b1c43be..307ed147642 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/BehaviorAttributeBinding.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/BehaviorAttributeBinding.java @@ -17,11 +17,11 @@ import org.eclipse.papyrus.eastadl.structure.hardwaremodeling.HardwarePort; * <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughFunctionPort <em>Visible Through Function Port</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughHardwarePin <em>Visible Through Hardware Pin</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughHardwarePort <em>Visible Through Hardware Port</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getAttribute <em>Attribute</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughAnomaly <em>Visible Through Anomaly</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughFunctionPort <em>Visible Through Function Port</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughHardwarePin <em>Visible Through Hardware Pin</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughHardwarePort <em>Visible Through Hardware Port</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getAttribute <em>Attribute</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding#getVisibleThroughAnomaly <em>Visible Through Anomaly</em>}</li>
* </ul>
* </p>
*
@@ -35,10 +35,10 @@ public interface BehaviorAttributeBinding extends Relationship { * The list contents are of type {@link org.eclipse.papyrus.eastadl.structure.functionmodeling.FunctionPort}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Visible Through Function Port</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Visible Through Function Port</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Visible Through Function Port</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#getBehaviorAttributeBinding_VisibleThroughFunctionPort()
* @model ordered="false"
@@ -51,10 +51,10 @@ public interface BehaviorAttributeBinding extends Relationship { * The list contents are of type {@link org.eclipse.papyrus.eastadl.structure.hardwaremodeling.HardwarePin}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Visible Through Hardware Pin</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Visible Through Hardware Pin</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Visible Through Hardware Pin</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#getBehaviorAttributeBinding_VisibleThroughHardwarePin()
* @model ordered="false"
@@ -67,10 +67,10 @@ public interface BehaviorAttributeBinding extends Relationship { * The list contents are of type {@link org.eclipse.papyrus.eastadl.structure.hardwaremodeling.HardwarePort}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Visible Through Hardware Port</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Visible Through Hardware Port</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Visible Through Hardware Port</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#getBehaviorAttributeBinding_VisibleThroughHardwarePort()
* @model ordered="false"
@@ -83,10 +83,10 @@ public interface BehaviorAttributeBinding extends Relationship { * The list contents are of type {@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Attribute</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Attribute</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Attribute</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#getBehaviorAttributeBinding_Attribute()
* @model required="true" ordered="false"
@@ -99,10 +99,10 @@ public interface BehaviorAttributeBinding extends Relationship { * The list contents are of type {@link org.eclipse.papyrus.eastadl.dependability.errormodel.Anomaly}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Visible Through Anomaly</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Visible Through Anomaly</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Visible Through Anomaly</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#getBehaviorAttributeBinding_VisibleThroughAnomaly()
* @model required="true" ordered="false"
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/LogicalEvent.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/LogicalEvent.java index ab85c978281..bb72416bec1 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/LogicalEvent.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/LogicalEvent.java @@ -13,8 +13,8 @@ import org.eclipse.papyrus.eastadl.structure.functionmodeling.FunctionPort; * <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.LogicalEvent#isIsExternVisible <em>Is Extern Visible</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.LogicalEvent#getVisibleThroughFunctionPort <em>Visible Through Function Port</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.LogicalEvent#isIsExternVisible <em>Is Extern Visible</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.LogicalEvent#getVisibleThroughFunctionPort <em>Visible Through Function Port</em>}</li>
* </ul>
* </p>
*
@@ -28,10 +28,10 @@ public interface LogicalEvent extends Quantification { * The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Is Extern Visible</em>' attribute isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Is Extern Visible</em>' attribute isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Is Extern Visible</em>' attribute.
* @see #setIsExternVisible(boolean)
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#getLogicalEvent_IsExternVisible()
@@ -44,7 +44,9 @@ public interface LogicalEvent extends Quantification { * Sets the value of the '{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.LogicalEvent#isIsExternVisible <em>Is Extern Visible</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
- * @param value the new value of the '<em>Is Extern Visible</em>' attribute.
+ *
+ * @param value
+ * the new value of the '<em>Is Extern Visible</em>' attribute.
* @see #isIsExternVisible()
* @generated
*/
@@ -55,10 +57,10 @@ public interface LogicalEvent extends Quantification { * The list contents are of type {@link org.eclipse.papyrus.eastadl.structure.functionmodeling.FunctionPort}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Visible Through Function Port</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Visible Through Function Port</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Visible Through Function Port</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#getLogicalEvent_VisibleThroughFunctionPort()
* @model ordered="false"
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/Quantification.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/Quantification.java index 3f5a36af7bc..c3ceca3a520 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/Quantification.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/Quantification.java @@ -14,7 +14,7 @@ import org.eclipse.papyrus.eastadl.infrastructure.values.EAExpression; * <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Quantification#getOperand <em>Operand</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Quantification#getOperand <em>Operand</em>}</li>
* </ul>
* </p>
*
@@ -28,10 +28,10 @@ public interface Quantification extends EAElement, EAExpression { * The list contents are of type {@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Operand</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Operand</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Operand</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#getQuantification_Operand()
* @model required="true" ordered="false"
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributeImpl.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributeImpl.java index 610f3556a0c..8051441e84c 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributeImpl.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributeImpl.java @@ -18,8 +18,8 @@ import org.eclipse.papyrus.eastadl.infrastructure.elements.impl.EAElementImpl; * <p>
* The following features are implemented:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeImpl#isIsExternVisible <em>Is Extern Visible</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeImpl#getType <em>Type</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeImpl#isIsExternVisible <em>Is Extern Visible</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeImpl#getType <em>Type</em>}</li>
* </ul>
* </p>
*
@@ -30,6 +30,7 @@ public class AttributeImpl extends EAElementImpl implements Attribute { * The default value of the '{@link #isIsExternVisible() <em>Is Extern Visible</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #isIsExternVisible()
* @generated
* @ordered
@@ -40,6 +41,7 @@ public class AttributeImpl extends EAElementImpl implements Attribute { * The cached value of the '{@link #isIsExternVisible() <em>Is Extern Visible</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #isIsExternVisible()
* @generated
* @ordered
@@ -50,6 +52,7 @@ public class AttributeImpl extends EAElementImpl implements Attribute { * The cached value of the '{@link #getType() <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #getType()
* @generated
* @ordered
@@ -59,6 +62,7 @@ public class AttributeImpl extends EAElementImpl implements Attribute { /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
protected AttributeImpl() {
@@ -68,6 +72,7 @@ public class AttributeImpl extends EAElementImpl implements Attribute { /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
@@ -78,8 +83,10 @@ public class AttributeImpl extends EAElementImpl implements Attribute { /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public boolean isIsExternVisible() {
return isExternVisible;
}
@@ -87,27 +94,33 @@ public class AttributeImpl extends EAElementImpl implements Attribute { /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public void setIsExternVisible(boolean newIsExternVisible) {
boolean oldIsExternVisible = isExternVisible;
isExternVisible = newIsExternVisible;
- if (eNotificationRequired())
+ if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, AttributequantificationconstraintPackage.ATTRIBUTE__IS_EXTERN_VISIBLE, oldIsExternVisible, isExternVisible));
+ }
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EADatatype getType() {
if (type != null && type.eIsProxy()) {
- InternalEObject oldType = (InternalEObject)type;
- type = (EADatatype)eResolveProxy(oldType);
+ InternalEObject oldType = (InternalEObject) type;
+ type = (EADatatype) eResolveProxy(oldType);
if (type != oldType) {
- if (eNotificationRequired())
+ if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.RESOLVE, AttributequantificationconstraintPackage.ATTRIBUTE__TYPE, oldType, type));
+ }
}
}
return type;
@@ -116,6 +129,7 @@ public class AttributeImpl extends EAElementImpl implements Attribute { /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public EADatatype basicGetType() {
@@ -125,28 +139,34 @@ public class AttributeImpl extends EAElementImpl implements Attribute { /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public void setType(EADatatype newType) {
EADatatype oldType = type;
type = newType;
- if (eNotificationRequired())
+ if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, AttributequantificationconstraintPackage.ATTRIBUTE__TYPE, oldType, type));
+ }
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
- case AttributequantificationconstraintPackage.ATTRIBUTE__IS_EXTERN_VISIBLE:
- return isIsExternVisible();
- case AttributequantificationconstraintPackage.ATTRIBUTE__TYPE:
- if (resolve) return getType();
- return basicGetType();
+ case AttributequantificationconstraintPackage.ATTRIBUTE__IS_EXTERN_VISIBLE:
+ return isIsExternVisible();
+ case AttributequantificationconstraintPackage.ATTRIBUTE__TYPE:
+ if (resolve) {
+ return getType();
+ }
+ return basicGetType();
}
return super.eGet(featureID, resolve, coreType);
}
@@ -154,17 +174,18 @@ public class AttributeImpl extends EAElementImpl implements Attribute { /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
- case AttributequantificationconstraintPackage.ATTRIBUTE__IS_EXTERN_VISIBLE:
- setIsExternVisible((Boolean)newValue);
- return;
- case AttributequantificationconstraintPackage.ATTRIBUTE__TYPE:
- setType((EADatatype)newValue);
- return;
+ case AttributequantificationconstraintPackage.ATTRIBUTE__IS_EXTERN_VISIBLE:
+ setIsExternVisible((Boolean) newValue);
+ return;
+ case AttributequantificationconstraintPackage.ATTRIBUTE__TYPE:
+ setType((EADatatype) newValue);
+ return;
}
super.eSet(featureID, newValue);
}
@@ -172,17 +193,18 @@ public class AttributeImpl extends EAElementImpl implements Attribute { /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
- case AttributequantificationconstraintPackage.ATTRIBUTE__IS_EXTERN_VISIBLE:
- setIsExternVisible(IS_EXTERN_VISIBLE_EDEFAULT);
- return;
- case AttributequantificationconstraintPackage.ATTRIBUTE__TYPE:
- setType((EADatatype)null);
- return;
+ case AttributequantificationconstraintPackage.ATTRIBUTE__IS_EXTERN_VISIBLE:
+ setIsExternVisible(IS_EXTERN_VISIBLE_EDEFAULT);
+ return;
+ case AttributequantificationconstraintPackage.ATTRIBUTE__TYPE:
+ setType((EADatatype) null);
+ return;
}
super.eUnset(featureID);
}
@@ -190,15 +212,16 @@ public class AttributeImpl extends EAElementImpl implements Attribute { /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
- case AttributequantificationconstraintPackage.ATTRIBUTE__IS_EXTERN_VISIBLE:
- return isExternVisible != IS_EXTERN_VISIBLE_EDEFAULT;
- case AttributequantificationconstraintPackage.ATTRIBUTE__TYPE:
- return type != null;
+ case AttributequantificationconstraintPackage.ATTRIBUTE__IS_EXTERN_VISIBLE:
+ return isExternVisible != IS_EXTERN_VISIBLE_EDEFAULT;
+ case AttributequantificationconstraintPackage.ATTRIBUTE__TYPE:
+ return type != null;
}
return super.eIsSet(featureID);
}
@@ -206,11 +229,14 @@ public class AttributeImpl extends EAElementImpl implements Attribute { /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public String toString() {
- if (eIsProxy()) return super.toString();
+ if (eIsProxy()) {
+ return super.toString();
+ }
StringBuffer result = new StringBuffer(super.toString());
result.append(" (isExternVisible: ");
@@ -219,4 +245,4 @@ public class AttributeImpl extends EAElementImpl implements Attribute { return result.toString();
}
-} //AttributeImpl
+} // AttributeImpl
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributeQuantificationconstraintImpl.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributeQuantificationconstraintImpl.java index 1021dcdc1df..c0804008287 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributeQuantificationconstraintImpl.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributeQuantificationconstraintImpl.java @@ -20,8 +20,8 @@ import org.eclipse.papyrus.eastadl.infrastructure.elements.impl.EAElementImpl; * <p>
* The following features are implemented:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeQuantificationconstraintImpl#getAttribute <em>Attribute</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeQuantificationconstraintImpl#getQuantification <em>Quantification</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeQuantificationconstraintImpl#getAttribute <em>Attribute</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.AttributeQuantificationconstraintImpl#getQuantification <em>Quantification</em>}</li>
* </ul>
* </p>
*
@@ -32,6 +32,7 @@ public class AttributeQuantificationconstraintImpl extends EAElementImpl impleme * The cached value of the '{@link #getAttribute() <em>Attribute</em>}' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #getAttribute()
* @generated
* @ordered
@@ -42,6 +43,7 @@ public class AttributeQuantificationconstraintImpl extends EAElementImpl impleme * The cached value of the '{@link #getQuantification() <em>Quantification</em>}' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #getQuantification()
* @generated
* @ordered
@@ -51,6 +53,7 @@ public class AttributeQuantificationconstraintImpl extends EAElementImpl impleme /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
protected AttributeQuantificationconstraintImpl() {
@@ -60,6 +63,7 @@ public class AttributeQuantificationconstraintImpl extends EAElementImpl impleme /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
@@ -70,8 +74,10 @@ public class AttributeQuantificationconstraintImpl extends EAElementImpl impleme /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EList<Attribute> getAttribute() {
if (attribute == null) {
attribute = new EObjectResolvingEList<Attribute>(Attribute.class, this, AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__ATTRIBUTE);
@@ -82,8 +88,10 @@ public class AttributeQuantificationconstraintImpl extends EAElementImpl impleme /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EList<Quantification> getQuantification() {
if (quantification == null) {
quantification = new EObjectResolvingEList<Quantification>(Quantification.class, this, AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__QUANTIFICATION);
@@ -94,15 +102,16 @@ public class AttributeQuantificationconstraintImpl extends EAElementImpl impleme /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
- case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__ATTRIBUTE:
- return getAttribute();
- case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__QUANTIFICATION:
- return getQuantification();
+ case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__ATTRIBUTE:
+ return getAttribute();
+ case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__QUANTIFICATION:
+ return getQuantification();
}
return super.eGet(featureID, resolve, coreType);
}
@@ -110,20 +119,21 @@ public class AttributeQuantificationconstraintImpl extends EAElementImpl impleme /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
- case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__ATTRIBUTE:
- getAttribute().clear();
- getAttribute().addAll((Collection<? extends Attribute>)newValue);
- return;
- case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__QUANTIFICATION:
- getQuantification().clear();
- getQuantification().addAll((Collection<? extends Quantification>)newValue);
- return;
+ case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__ATTRIBUTE:
+ getAttribute().clear();
+ getAttribute().addAll((Collection<? extends Attribute>) newValue);
+ return;
+ case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__QUANTIFICATION:
+ getQuantification().clear();
+ getQuantification().addAll((Collection<? extends Quantification>) newValue);
+ return;
}
super.eSet(featureID, newValue);
}
@@ -131,17 +141,18 @@ public class AttributeQuantificationconstraintImpl extends EAElementImpl impleme /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
- case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__ATTRIBUTE:
- getAttribute().clear();
- return;
- case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__QUANTIFICATION:
- getQuantification().clear();
- return;
+ case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__ATTRIBUTE:
+ getAttribute().clear();
+ return;
+ case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__QUANTIFICATION:
+ getQuantification().clear();
+ return;
}
super.eUnset(featureID);
}
@@ -149,17 +160,18 @@ public class AttributeQuantificationconstraintImpl extends EAElementImpl impleme /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
- case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__ATTRIBUTE:
- return attribute != null && !attribute.isEmpty();
- case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__QUANTIFICATION:
- return quantification != null && !quantification.isEmpty();
+ case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__ATTRIBUTE:
+ return attribute != null && !attribute.isEmpty();
+ case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT__QUANTIFICATION:
+ return quantification != null && !quantification.isEmpty();
}
return super.eIsSet(featureID);
}
-} //AttributeQuantificationconstraintImpl
+} // AttributeQuantificationconstraintImpl
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributequantificationconstraintFactoryImpl.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributequantificationconstraintFactoryImpl.java index 24069f79153..7688cd79a46 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributequantificationconstraintFactoryImpl.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributequantificationconstraintFactoryImpl.java @@ -19,6 +19,7 @@ import org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Quant * <!-- begin-user-doc -->
* An implementation of the model <b>Factory</b>.
* <!-- end-user-doc -->
+ *
* @generated
*/
public class AttributequantificationconstraintFactoryImpl extends EFactoryImpl implements AttributequantificationconstraintFactory {
@@ -26,16 +27,16 @@ public class AttributequantificationconstraintFactoryImpl extends EFactoryImpl i * Creates the default factory implementation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public static AttributequantificationconstraintFactory init() {
try {
- AttributequantificationconstraintFactory theAttributequantificationconstraintFactory = (AttributequantificationconstraintFactory)EPackage.Registry.INSTANCE.getEFactory(AttributequantificationconstraintPackage.eNS_URI);
+ AttributequantificationconstraintFactory theAttributequantificationconstraintFactory = (AttributequantificationconstraintFactory) EPackage.Registry.INSTANCE.getEFactory(AttributequantificationconstraintPackage.eNS_URI);
if (theAttributequantificationconstraintFactory != null) {
return theAttributequantificationconstraintFactory;
}
- }
- catch (Exception exception) {
+ } catch (Exception exception) {
EcorePlugin.INSTANCE.log(exception);
}
return new AttributequantificationconstraintFactoryImpl();
@@ -45,6 +46,7 @@ public class AttributequantificationconstraintFactoryImpl extends EFactoryImpl i * Creates an instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public AttributequantificationconstraintFactoryImpl() {
@@ -54,26 +56,34 @@ public class AttributequantificationconstraintFactoryImpl extends EFactoryImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public EObject create(EClass eClass) {
switch (eClass.getClassifierID()) {
- case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT: return createAttributeQuantificationconstraint();
- case AttributequantificationconstraintPackage.QUANTIFICATION: return createQuantification();
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING: return createBehaviorAttributeBinding();
- case AttributequantificationconstraintPackage.LOGICAL_EVENT: return createLogicalEvent();
- case AttributequantificationconstraintPackage.ATTRIBUTE: return createAttribute();
- default:
- throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier");
+ case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT:
+ return createAttributeQuantificationconstraint();
+ case AttributequantificationconstraintPackage.QUANTIFICATION:
+ return createQuantification();
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING:
+ return createBehaviorAttributeBinding();
+ case AttributequantificationconstraintPackage.LOGICAL_EVENT:
+ return createLogicalEvent();
+ case AttributequantificationconstraintPackage.ATTRIBUTE:
+ return createAttribute();
+ default:
+ throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier");
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public AttributeQuantificationconstraint createAttributeQuantificationconstraint() {
AttributeQuantificationconstraintImpl attributeQuantificationconstraint = new AttributeQuantificationconstraintImpl();
return attributeQuantificationconstraint;
@@ -82,8 +92,10 @@ public class AttributequantificationconstraintFactoryImpl extends EFactoryImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public Quantification createQuantification() {
QuantificationImpl quantification = new QuantificationImpl();
return quantification;
@@ -92,8 +104,10 @@ public class AttributequantificationconstraintFactoryImpl extends EFactoryImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public BehaviorAttributeBinding createBehaviorAttributeBinding() {
BehaviorAttributeBindingImpl behaviorAttributeBinding = new BehaviorAttributeBindingImpl();
return behaviorAttributeBinding;
@@ -102,8 +116,10 @@ public class AttributequantificationconstraintFactoryImpl extends EFactoryImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public LogicalEvent createLogicalEvent() {
LogicalEventImpl logicalEvent = new LogicalEventImpl();
return logicalEvent;
@@ -112,8 +128,10 @@ public class AttributequantificationconstraintFactoryImpl extends EFactoryImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public Attribute createAttribute() {
AttributeImpl attribute = new AttributeImpl();
return attribute;
@@ -122,15 +140,18 @@ public class AttributequantificationconstraintFactoryImpl extends EFactoryImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public AttributequantificationconstraintPackage getAttributequantificationconstraintPackage() {
- return (AttributequantificationconstraintPackage)getEPackage();
+ return (AttributequantificationconstraintPackage) getEPackage();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @deprecated
* @generated
*/
@@ -139,4 +160,4 @@ public class AttributequantificationconstraintFactoryImpl extends EFactoryImpl i return AttributequantificationconstraintPackage.eINSTANCE;
}
-} //AttributequantificationconstraintFactoryImpl
+} // AttributequantificationconstraintFactoryImpl
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributequantificationconstraintPackageImpl.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributequantificationconstraintPackageImpl.java index b18f62e4a5b..8952e507ab8 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributequantificationconstraintPackageImpl.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/AttributequantificationconstraintPackageImpl.java @@ -85,12 +85,14 @@ import org.eclipse.uml2.types.TypesPackage; * <!-- begin-user-doc -->
* An implementation of the model <b>Package</b>.
* <!-- end-user-doc -->
+ *
* @generated
*/
public class AttributequantificationconstraintPackageImpl extends EPackageImpl implements AttributequantificationconstraintPackage {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
private EClass attributeQuantificationconstraintEClass = null;
@@ -98,6 +100,7 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
private EClass quantificationEClass = null;
@@ -105,6 +108,7 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
private EClass behaviorAttributeBindingEClass = null;
@@ -112,6 +116,7 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
private EClass logicalEventEClass = null;
@@ -119,20 +124,17 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
private EClass attributeEClass = null;
/**
- * Creates an instance of the model <b>Package</b>, registered with
- * {@link org.eclipse.emf.ecore.EPackage.Registry EPackage.Registry} by the package
+ * Creates an instance of the model <b>Package</b>, registered with {@link org.eclipse.emf.ecore.EPackage.Registry EPackage.Registry} by the package
* package URI value.
- * <p>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.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * <p>
+ * 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. <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @see org.eclipse.emf.ecore.EPackage.Registry
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage#eNS_URI
* @see #init()
@@ -145,27 +147,31 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
private static boolean isInited = false;
/**
* Creates, registers, and initializes the <b>Package</b> for this model, and for any others upon which it depends.
- *
- * <p>This method is used to initialize {@link AttributequantificationconstraintPackage#eINSTANCE} when that field is accessed.
- * Clients should not invoke it directly. Instead, they should simply access that field to obtain the package.
- * <!-- begin-user-doc -->
+ *
+ * <p>
+ * This method is used to initialize {@link AttributequantificationconstraintPackage#eINSTANCE} when that field is accessed. Clients should not invoke it directly. Instead, they should simply access that field to obtain the package. <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #eNS_URI
* @see #createPackageContents()
* @see #initializePackageContents()
* @generated
*/
public static AttributequantificationconstraintPackage init() {
- if (isInited) return (AttributequantificationconstraintPackage)EPackage.Registry.INSTANCE.getEPackage(AttributequantificationconstraintPackage.eNS_URI);
+ if (isInited) {
+ return (AttributequantificationconstraintPackage) EPackage.Registry.INSTANCE.getEPackage(AttributequantificationconstraintPackage.eNS_URI);
+ }
// Obtain or create and register package
- AttributequantificationconstraintPackageImpl theAttributequantificationconstraintPackage = (AttributequantificationconstraintPackageImpl)(EPackage.Registry.INSTANCE.get(eNS_URI) instanceof AttributequantificationconstraintPackageImpl ? EPackage.Registry.INSTANCE.get(eNS_URI) : new AttributequantificationconstraintPackageImpl());
+ AttributequantificationconstraintPackageImpl theAttributequantificationconstraintPackage = (AttributequantificationconstraintPackageImpl) (EPackage.Registry.INSTANCE.get(eNS_URI) instanceof AttributequantificationconstraintPackageImpl ? EPackage.Registry.INSTANCE
+ .get(eNS_URI) : new AttributequantificationconstraintPackageImpl());
isInited = true;
@@ -173,39 +179,67 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i SysmlPackage.eINSTANCE.eClass();
// Obtain or create and register interdependencies
- EastadlPackageImpl theEastadlPackage = (EastadlPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(EastadlPackage.eNS_URI) instanceof EastadlPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(EastadlPackage.eNS_URI) : EastadlPackage.eINSTANCE);
- VariabilityPackageImpl theVariabilityPackage = (VariabilityPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(VariabilityPackage.eNS_URI) instanceof VariabilityPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(VariabilityPackage.eNS_URI) : VariabilityPackage.eINSTANCE);
- InfrastructurePackageImpl theInfrastructurePackage = (InfrastructurePackageImpl)(EPackage.Registry.INSTANCE.getEPackage(InfrastructurePackage.eNS_URI) instanceof InfrastructurePackageImpl ? EPackage.Registry.INSTANCE.getEPackage(InfrastructurePackage.eNS_URI) : InfrastructurePackage.eINSTANCE);
- DatatypesPackageImpl theDatatypesPackage = (DatatypesPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(DatatypesPackage.eNS_URI) instanceof DatatypesPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(DatatypesPackage.eNS_URI) : DatatypesPackage.eINSTANCE);
- UserattributesPackageImpl theUserattributesPackage = (UserattributesPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(UserattributesPackage.eNS_URI) instanceof UserattributesPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(UserattributesPackage.eNS_URI) : UserattributesPackage.eINSTANCE);
- ValuesPackageImpl theValuesPackage = (ValuesPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(ValuesPackage.eNS_URI) instanceof ValuesPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(ValuesPackage.eNS_URI) : ValuesPackage.eINSTANCE);
- ElementsPackageImpl theElementsPackage = (ElementsPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(ElementsPackage.eNS_URI) instanceof ElementsPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(ElementsPackage.eNS_URI) : ElementsPackage.eINSTANCE);
- StructurePackageImpl theStructurePackage = (StructurePackageImpl)(EPackage.Registry.INSTANCE.getEPackage(StructurePackage.eNS_URI) instanceof StructurePackageImpl ? EPackage.Registry.INSTANCE.getEPackage(StructurePackage.eNS_URI) : StructurePackage.eINSTANCE);
- FunctionmodelingPackageImpl theFunctionmodelingPackage = (FunctionmodelingPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(FunctionmodelingPackage.eNS_URI) instanceof FunctionmodelingPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(FunctionmodelingPackage.eNS_URI) : FunctionmodelingPackage.eINSTANCE);
- FeaturemodelingPackageImpl theFeaturemodelingPackage = (FeaturemodelingPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(FeaturemodelingPackage.eNS_URI) instanceof FeaturemodelingPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(FeaturemodelingPackage.eNS_URI) : FeaturemodelingPackage.eINSTANCE);
- SystemmodelingPackageImpl theSystemmodelingPackage = (SystemmodelingPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(SystemmodelingPackage.eNS_URI) instanceof SystemmodelingPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(SystemmodelingPackage.eNS_URI) : SystemmodelingPackage.eINSTANCE);
- VehiclefeaturemodelingPackageImpl theVehiclefeaturemodelingPackage = (VehiclefeaturemodelingPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(VehiclefeaturemodelingPackage.eNS_URI) instanceof VehiclefeaturemodelingPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(VehiclefeaturemodelingPackage.eNS_URI) : VehiclefeaturemodelingPackage.eINSTANCE);
- HardwaremodelingPackageImpl theHardwaremodelingPackage = (HardwaremodelingPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(HardwaremodelingPackage.eNS_URI) instanceof HardwaremodelingPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(HardwaremodelingPackage.eNS_URI) : HardwaremodelingPackage.eINSTANCE);
- DependabilityPackageImpl theDependabilityPackage = (DependabilityPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(DependabilityPackage.eNS_URI) instanceof DependabilityPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(DependabilityPackage.eNS_URI) : DependabilityPackage.eINSTANCE);
- SafetyrequirementPackageImpl theSafetyrequirementPackage = (SafetyrequirementPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(SafetyrequirementPackage.eNS_URI) instanceof SafetyrequirementPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(SafetyrequirementPackage.eNS_URI) : SafetyrequirementPackage.eINSTANCE);
- SafetyconstraintsPackageImpl theSafetyconstraintsPackage = (SafetyconstraintsPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(SafetyconstraintsPackage.eNS_URI) instanceof SafetyconstraintsPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(SafetyconstraintsPackage.eNS_URI) : SafetyconstraintsPackage.eINSTANCE);
- SafetycasePackageImpl theSafetycasePackage = (SafetycasePackageImpl)(EPackage.Registry.INSTANCE.getEPackage(SafetycasePackage.eNS_URI) instanceof SafetycasePackageImpl ? EPackage.Registry.INSTANCE.getEPackage(SafetycasePackage.eNS_URI) : SafetycasePackage.eINSTANCE);
- ErrormodelPackageImpl theErrormodelPackage = (ErrormodelPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(ErrormodelPackage.eNS_URI) instanceof ErrormodelPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(ErrormodelPackage.eNS_URI) : ErrormodelPackage.eINSTANCE);
- RequirementsPackageImpl theRequirementsPackage = (RequirementsPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(RequirementsPackage.eNS_URI) instanceof RequirementsPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(RequirementsPackage.eNS_URI) : RequirementsPackage.eINSTANCE);
- UsecasesPackageImpl theUsecasesPackage = (UsecasesPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(UsecasesPackage.eNS_URI) instanceof UsecasesPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(UsecasesPackage.eNS_URI) : UsecasesPackage.eINSTANCE);
- VerificationvalidationPackageImpl theVerificationvalidationPackage = (VerificationvalidationPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(VerificationvalidationPackage.eNS_URI) instanceof VerificationvalidationPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(VerificationvalidationPackage.eNS_URI) : VerificationvalidationPackage.eINSTANCE);
- org.eclipse.papyrus.eastadl.requirements.requirements.impl.RequirementsPackageImpl theRequirementsPackage_1 = (org.eclipse.papyrus.eastadl.requirements.requirements.impl.RequirementsPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(org.eclipse.papyrus.eastadl.requirements.requirements.RequirementsPackage.eNS_URI) instanceof org.eclipse.papyrus.eastadl.requirements.requirements.impl.RequirementsPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(org.eclipse.papyrus.eastadl.requirements.requirements.RequirementsPackage.eNS_URI) : org.eclipse.papyrus.eastadl.requirements.requirements.RequirementsPackage.eINSTANCE);
- BehaviorPackageImpl theBehaviorPackage = (BehaviorPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(BehaviorPackage.eNS_URI) instanceof BehaviorPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(BehaviorPackage.eNS_URI) : BehaviorPackage.eINSTANCE);
- TimingPackageImpl theTimingPackage = (TimingPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(TimingPackage.eNS_URI) instanceof TimingPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(TimingPackage.eNS_URI) : TimingPackage.eINSTANCE);
- TimingconstraintsPackageImpl theTimingconstraintsPackage = (TimingconstraintsPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(TimingconstraintsPackage.eNS_URI) instanceof TimingconstraintsPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(TimingconstraintsPackage.eNS_URI) : TimingconstraintsPackage.eINSTANCE);
- EventsPackageImpl theEventsPackage = (EventsPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(EventsPackage.eNS_URI) instanceof EventsPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(EventsPackage.eNS_URI) : EventsPackage.eINSTANCE);
- EnvironmentPackageImpl theEnvironmentPackage = (EnvironmentPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(EnvironmentPackage.eNS_URI) instanceof EnvironmentPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(EnvironmentPackage.eNS_URI) : EnvironmentPackage.eINSTANCE);
- AnnexPackageImpl theAnnexPackage = (AnnexPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(AnnexPackage.eNS_URI) instanceof AnnexPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(AnnexPackage.eNS_URI) : AnnexPackage.eINSTANCE);
- NeedsPackageImpl theNeedsPackage = (NeedsPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(NeedsPackage.eNS_URI) instanceof NeedsPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(NeedsPackage.eNS_URI) : NeedsPackage.eINSTANCE);
- BehaviordescriptionPackageImpl theBehaviordescriptionPackage = (BehaviordescriptionPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(BehaviordescriptionPackage.eNS_URI) instanceof BehaviordescriptionPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(BehaviordescriptionPackage.eNS_URI) : BehaviordescriptionPackage.eINSTANCE);
- TemporalconstraintPackageImpl theTemporalconstraintPackage = (TemporalconstraintPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(TemporalconstraintPackage.eNS_URI) instanceof TemporalconstraintPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(TemporalconstraintPackage.eNS_URI) : TemporalconstraintPackage.eINSTANCE);
- ComputationconstraintPackageImpl theComputationconstraintPackage = (ComputationconstraintPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(ComputationconstraintPackage.eNS_URI) instanceof ComputationconstraintPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(ComputationconstraintPackage.eNS_URI) : ComputationconstraintPackage.eINSTANCE);
- GenericconstraintsPackageImpl theGenericconstraintsPackage = (GenericconstraintsPackageImpl)(EPackage.Registry.INSTANCE.getEPackage(GenericconstraintsPackage.eNS_URI) instanceof GenericconstraintsPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(GenericconstraintsPackage.eNS_URI) : GenericconstraintsPackage.eINSTANCE);
+ EastadlPackageImpl theEastadlPackage = (EastadlPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(EastadlPackage.eNS_URI) instanceof EastadlPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(EastadlPackage.eNS_URI) : EastadlPackage.eINSTANCE);
+ VariabilityPackageImpl theVariabilityPackage = (VariabilityPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(VariabilityPackage.eNS_URI) instanceof VariabilityPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(VariabilityPackage.eNS_URI)
+ : VariabilityPackage.eINSTANCE);
+ InfrastructurePackageImpl theInfrastructurePackage = (InfrastructurePackageImpl) (EPackage.Registry.INSTANCE.getEPackage(InfrastructurePackage.eNS_URI) instanceof InfrastructurePackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(InfrastructurePackage.eNS_URI) : InfrastructurePackage.eINSTANCE);
+ DatatypesPackageImpl theDatatypesPackage = (DatatypesPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(DatatypesPackage.eNS_URI) instanceof DatatypesPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(DatatypesPackage.eNS_URI)
+ : DatatypesPackage.eINSTANCE);
+ UserattributesPackageImpl theUserattributesPackage = (UserattributesPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(UserattributesPackage.eNS_URI) instanceof UserattributesPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(UserattributesPackage.eNS_URI) : UserattributesPackage.eINSTANCE);
+ ValuesPackageImpl theValuesPackage = (ValuesPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(ValuesPackage.eNS_URI) instanceof ValuesPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(ValuesPackage.eNS_URI) : ValuesPackage.eINSTANCE);
+ ElementsPackageImpl theElementsPackage = (ElementsPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(ElementsPackage.eNS_URI) instanceof ElementsPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(ElementsPackage.eNS_URI)
+ : ElementsPackage.eINSTANCE);
+ StructurePackageImpl theStructurePackage = (StructurePackageImpl) (EPackage.Registry.INSTANCE.getEPackage(StructurePackage.eNS_URI) instanceof StructurePackageImpl ? EPackage.Registry.INSTANCE.getEPackage(StructurePackage.eNS_URI)
+ : StructurePackage.eINSTANCE);
+ FunctionmodelingPackageImpl theFunctionmodelingPackage = (FunctionmodelingPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(FunctionmodelingPackage.eNS_URI) instanceof FunctionmodelingPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(FunctionmodelingPackage.eNS_URI) : FunctionmodelingPackage.eINSTANCE);
+ FeaturemodelingPackageImpl theFeaturemodelingPackage = (FeaturemodelingPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(FeaturemodelingPackage.eNS_URI) instanceof FeaturemodelingPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(FeaturemodelingPackage.eNS_URI) : FeaturemodelingPackage.eINSTANCE);
+ SystemmodelingPackageImpl theSystemmodelingPackage = (SystemmodelingPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(SystemmodelingPackage.eNS_URI) instanceof SystemmodelingPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(SystemmodelingPackage.eNS_URI) : SystemmodelingPackage.eINSTANCE);
+ VehiclefeaturemodelingPackageImpl theVehiclefeaturemodelingPackage = (VehiclefeaturemodelingPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(VehiclefeaturemodelingPackage.eNS_URI) instanceof VehiclefeaturemodelingPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(VehiclefeaturemodelingPackage.eNS_URI) : VehiclefeaturemodelingPackage.eINSTANCE);
+ HardwaremodelingPackageImpl theHardwaremodelingPackage = (HardwaremodelingPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(HardwaremodelingPackage.eNS_URI) instanceof HardwaremodelingPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(HardwaremodelingPackage.eNS_URI) : HardwaremodelingPackage.eINSTANCE);
+ DependabilityPackageImpl theDependabilityPackage = (DependabilityPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(DependabilityPackage.eNS_URI) instanceof DependabilityPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(DependabilityPackage.eNS_URI) : DependabilityPackage.eINSTANCE);
+ SafetyrequirementPackageImpl theSafetyrequirementPackage = (SafetyrequirementPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(SafetyrequirementPackage.eNS_URI) instanceof SafetyrequirementPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(SafetyrequirementPackage.eNS_URI) : SafetyrequirementPackage.eINSTANCE);
+ SafetyconstraintsPackageImpl theSafetyconstraintsPackage = (SafetyconstraintsPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(SafetyconstraintsPackage.eNS_URI) instanceof SafetyconstraintsPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(SafetyconstraintsPackage.eNS_URI) : SafetyconstraintsPackage.eINSTANCE);
+ SafetycasePackageImpl theSafetycasePackage = (SafetycasePackageImpl) (EPackage.Registry.INSTANCE.getEPackage(SafetycasePackage.eNS_URI) instanceof SafetycasePackageImpl ? EPackage.Registry.INSTANCE.getEPackage(SafetycasePackage.eNS_URI)
+ : SafetycasePackage.eINSTANCE);
+ ErrormodelPackageImpl theErrormodelPackage = (ErrormodelPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(ErrormodelPackage.eNS_URI) instanceof ErrormodelPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(ErrormodelPackage.eNS_URI)
+ : ErrormodelPackage.eINSTANCE);
+ RequirementsPackageImpl theRequirementsPackage = (RequirementsPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(RequirementsPackage.eNS_URI) instanceof RequirementsPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(RequirementsPackage.eNS_URI)
+ : RequirementsPackage.eINSTANCE);
+ UsecasesPackageImpl theUsecasesPackage = (UsecasesPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(UsecasesPackage.eNS_URI) instanceof UsecasesPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(UsecasesPackage.eNS_URI)
+ : UsecasesPackage.eINSTANCE);
+ VerificationvalidationPackageImpl theVerificationvalidationPackage = (VerificationvalidationPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(VerificationvalidationPackage.eNS_URI) instanceof VerificationvalidationPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(VerificationvalidationPackage.eNS_URI) : VerificationvalidationPackage.eINSTANCE);
+ org.eclipse.papyrus.eastadl.requirements.requirements.impl.RequirementsPackageImpl theRequirementsPackage_1 = (org.eclipse.papyrus.eastadl.requirements.requirements.impl.RequirementsPackageImpl) (EPackage.Registry.INSTANCE
+ .getEPackage(org.eclipse.papyrus.eastadl.requirements.requirements.RequirementsPackage.eNS_URI) instanceof org.eclipse.papyrus.eastadl.requirements.requirements.impl.RequirementsPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(org.eclipse.papyrus.eastadl.requirements.requirements.RequirementsPackage.eNS_URI) : org.eclipse.papyrus.eastadl.requirements.requirements.RequirementsPackage.eINSTANCE);
+ BehaviorPackageImpl theBehaviorPackage = (BehaviorPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(BehaviorPackage.eNS_URI) instanceof BehaviorPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(BehaviorPackage.eNS_URI)
+ : BehaviorPackage.eINSTANCE);
+ TimingPackageImpl theTimingPackage = (TimingPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(TimingPackage.eNS_URI) instanceof TimingPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(TimingPackage.eNS_URI) : TimingPackage.eINSTANCE);
+ TimingconstraintsPackageImpl theTimingconstraintsPackage = (TimingconstraintsPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(TimingconstraintsPackage.eNS_URI) instanceof TimingconstraintsPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(TimingconstraintsPackage.eNS_URI) : TimingconstraintsPackage.eINSTANCE);
+ EventsPackageImpl theEventsPackage = (EventsPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(EventsPackage.eNS_URI) instanceof EventsPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(EventsPackage.eNS_URI) : EventsPackage.eINSTANCE);
+ EnvironmentPackageImpl theEnvironmentPackage = (EnvironmentPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(EnvironmentPackage.eNS_URI) instanceof EnvironmentPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(EnvironmentPackage.eNS_URI)
+ : EnvironmentPackage.eINSTANCE);
+ AnnexPackageImpl theAnnexPackage = (AnnexPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(AnnexPackage.eNS_URI) instanceof AnnexPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(AnnexPackage.eNS_URI) : AnnexPackage.eINSTANCE);
+ NeedsPackageImpl theNeedsPackage = (NeedsPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(NeedsPackage.eNS_URI) instanceof NeedsPackageImpl ? EPackage.Registry.INSTANCE.getEPackage(NeedsPackage.eNS_URI) : NeedsPackage.eINSTANCE);
+ BehaviordescriptionPackageImpl theBehaviordescriptionPackage = (BehaviordescriptionPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(BehaviordescriptionPackage.eNS_URI) instanceof BehaviordescriptionPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(BehaviordescriptionPackage.eNS_URI) : BehaviordescriptionPackage.eINSTANCE);
+ TemporalconstraintPackageImpl theTemporalconstraintPackage = (TemporalconstraintPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(TemporalconstraintPackage.eNS_URI) instanceof TemporalconstraintPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(TemporalconstraintPackage.eNS_URI) : TemporalconstraintPackage.eINSTANCE);
+ ComputationconstraintPackageImpl theComputationconstraintPackage = (ComputationconstraintPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(ComputationconstraintPackage.eNS_URI) instanceof ComputationconstraintPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(ComputationconstraintPackage.eNS_URI) : ComputationconstraintPackage.eINSTANCE);
+ GenericconstraintsPackageImpl theGenericconstraintsPackage = (GenericconstraintsPackageImpl) (EPackage.Registry.INSTANCE.getEPackage(GenericconstraintsPackage.eNS_URI) instanceof GenericconstraintsPackageImpl ? EPackage.Registry.INSTANCE
+ .getEPackage(GenericconstraintsPackage.eNS_URI) : GenericconstraintsPackage.eINSTANCE);
// Create package meta-data objects
theAttributequantificationconstraintPackage.createPackageContents();
@@ -282,7 +316,7 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i // Mark meta-data to indicate it can't be changed
theAttributequantificationconstraintPackage.freeze();
-
+
// Update the registry and return the package
EPackage.Registry.INSTANCE.put(AttributequantificationconstraintPackage.eNS_URI, theAttributequantificationconstraintPackage);
return theAttributequantificationconstraintPackage;
@@ -291,8 +325,10 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EClass getAttributeQuantificationconstraint() {
return attributeQuantificationconstraintEClass;
}
@@ -300,26 +336,32 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EReference getAttributeQuantificationconstraint_Attribute() {
- return (EReference)attributeQuantificationconstraintEClass.getEStructuralFeatures().get(0);
+ return (EReference) attributeQuantificationconstraintEClass.getEStructuralFeatures().get(0);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EReference getAttributeQuantificationconstraint_Quantification() {
- return (EReference)attributeQuantificationconstraintEClass.getEStructuralFeatures().get(1);
+ return (EReference) attributeQuantificationconstraintEClass.getEStructuralFeatures().get(1);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EClass getQuantification() {
return quantificationEClass;
}
@@ -327,17 +369,21 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EReference getQuantification_Operand() {
- return (EReference)quantificationEClass.getEStructuralFeatures().get(0);
+ return (EReference) quantificationEClass.getEStructuralFeatures().get(0);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EClass getBehaviorAttributeBinding() {
return behaviorAttributeBindingEClass;
}
@@ -345,53 +391,65 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EReference getBehaviorAttributeBinding_VisibleThroughFunctionPort() {
- return (EReference)behaviorAttributeBindingEClass.getEStructuralFeatures().get(0);
+ return (EReference) behaviorAttributeBindingEClass.getEStructuralFeatures().get(0);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EReference getBehaviorAttributeBinding_VisibleThroughHardwarePin() {
- return (EReference)behaviorAttributeBindingEClass.getEStructuralFeatures().get(1);
+ return (EReference) behaviorAttributeBindingEClass.getEStructuralFeatures().get(1);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EReference getBehaviorAttributeBinding_VisibleThroughHardwarePort() {
- return (EReference)behaviorAttributeBindingEClass.getEStructuralFeatures().get(2);
+ return (EReference) behaviorAttributeBindingEClass.getEStructuralFeatures().get(2);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EReference getBehaviorAttributeBinding_Attribute() {
- return (EReference)behaviorAttributeBindingEClass.getEStructuralFeatures().get(3);
+ return (EReference) behaviorAttributeBindingEClass.getEStructuralFeatures().get(3);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EReference getBehaviorAttributeBinding_VisibleThroughAnomaly() {
- return (EReference)behaviorAttributeBindingEClass.getEStructuralFeatures().get(4);
+ return (EReference) behaviorAttributeBindingEClass.getEStructuralFeatures().get(4);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EClass getLogicalEvent() {
return logicalEventEClass;
}
@@ -399,26 +457,32 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EAttribute getLogicalEvent_IsExternVisible() {
- return (EAttribute)logicalEventEClass.getEStructuralFeatures().get(0);
+ return (EAttribute) logicalEventEClass.getEStructuralFeatures().get(0);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EReference getLogicalEvent_VisibleThroughFunctionPort() {
- return (EReference)logicalEventEClass.getEStructuralFeatures().get(1);
+ return (EReference) logicalEventEClass.getEStructuralFeatures().get(1);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EClass getAttribute() {
return attributeEClass;
}
@@ -426,46 +490,56 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EAttribute getAttribute_IsExternVisible() {
- return (EAttribute)attributeEClass.getEStructuralFeatures().get(0);
+ return (EAttribute) attributeEClass.getEStructuralFeatures().get(0);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EReference getAttribute_Type() {
- return (EReference)attributeEClass.getEStructuralFeatures().get(1);
+ return (EReference) attributeEClass.getEStructuralFeatures().get(1);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public AttributequantificationconstraintFactory getAttributequantificationconstraintFactory() {
- return (AttributequantificationconstraintFactory)getEFactoryInstance();
+ return (AttributequantificationconstraintFactory) getEFactoryInstance();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
private boolean isCreated = false;
/**
- * Creates the meta-model objects for the package. This method is
+ * Creates the meta-model objects for the package. This method is
* guarded to have no affect on any invocation but its first.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public void createPackageContents() {
- if (isCreated) return;
+ if (isCreated) {
+ return;
+ }
isCreated = true;
// Create classes and their features
@@ -495,19 +569,23 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
private boolean isInitialized = false;
/**
- * Complete the initialization of the package and its meta-model. This
+ * Complete the initialization of the package and its meta-model. This
* method is guarded to have no affect on any invocation but its first.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public void initializePackageContents() {
- if (isInitialized) return;
+ if (isInitialized) {
+ return;
+ }
isInitialized = true;
// Initialize package
@@ -516,14 +594,14 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i setNsURI(eNS_URI);
// Obtain other dependent packages
- ElementsPackage theElementsPackage = (ElementsPackage)EPackage.Registry.INSTANCE.getEPackage(ElementsPackage.eNS_URI);
- BehaviordescriptionPackage theBehaviordescriptionPackage = (BehaviordescriptionPackage)EPackage.Registry.INSTANCE.getEPackage(BehaviordescriptionPackage.eNS_URI);
- ValuesPackage theValuesPackage = (ValuesPackage)EPackage.Registry.INSTANCE.getEPackage(ValuesPackage.eNS_URI);
- FunctionmodelingPackage theFunctionmodelingPackage = (FunctionmodelingPackage)EPackage.Registry.INSTANCE.getEPackage(FunctionmodelingPackage.eNS_URI);
- HardwaremodelingPackage theHardwaremodelingPackage = (HardwaremodelingPackage)EPackage.Registry.INSTANCE.getEPackage(HardwaremodelingPackage.eNS_URI);
- ErrormodelPackage theErrormodelPackage = (ErrormodelPackage)EPackage.Registry.INSTANCE.getEPackage(ErrormodelPackage.eNS_URI);
- TypesPackage theTypesPackage = (TypesPackage)EPackage.Registry.INSTANCE.getEPackage(TypesPackage.eNS_URI);
- DatatypesPackage theDatatypesPackage = (DatatypesPackage)EPackage.Registry.INSTANCE.getEPackage(DatatypesPackage.eNS_URI);
+ ElementsPackage theElementsPackage = (ElementsPackage) EPackage.Registry.INSTANCE.getEPackage(ElementsPackage.eNS_URI);
+ BehaviordescriptionPackage theBehaviordescriptionPackage = (BehaviordescriptionPackage) EPackage.Registry.INSTANCE.getEPackage(BehaviordescriptionPackage.eNS_URI);
+ ValuesPackage theValuesPackage = (ValuesPackage) EPackage.Registry.INSTANCE.getEPackage(ValuesPackage.eNS_URI);
+ FunctionmodelingPackage theFunctionmodelingPackage = (FunctionmodelingPackage) EPackage.Registry.INSTANCE.getEPackage(FunctionmodelingPackage.eNS_URI);
+ HardwaremodelingPackage theHardwaremodelingPackage = (HardwaremodelingPackage) EPackage.Registry.INSTANCE.getEPackage(HardwaremodelingPackage.eNS_URI);
+ ErrormodelPackage theErrormodelPackage = (ErrormodelPackage) EPackage.Registry.INSTANCE.getEPackage(ErrormodelPackage.eNS_URI);
+ TypesPackage theTypesPackage = (TypesPackage) EPackage.Registry.INSTANCE.getEPackage(TypesPackage.eNS_URI);
+ DatatypesPackage theDatatypesPackage = (DatatypesPackage) EPackage.Registry.INSTANCE.getEPackage(DatatypesPackage.eNS_URI);
// Create type parameters
@@ -541,26 +619,34 @@ public class AttributequantificationconstraintPackageImpl extends EPackageImpl i // Initialize classes, features, and operations; add parameters
initEClass(attributeQuantificationconstraintEClass, AttributeQuantificationconstraint.class, "AttributeQuantificationconstraint", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS);
- initEReference(getAttributeQuantificationconstraint_Attribute(), this.getAttribute(), null, "attribute", null, 0, -1, AttributeQuantificationconstraint.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
- initEReference(getAttributeQuantificationconstraint_Quantification(), this.getQuantification(), null, "quantification", null, 0, -1, AttributeQuantificationconstraint.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
+ initEReference(getAttributeQuantificationconstraint_Attribute(), this.getAttribute(), null, "attribute", null, 0, -1, AttributeQuantificationconstraint.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES,
+ !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
+ initEReference(getAttributeQuantificationconstraint_Quantification(), this.getQuantification(), null, "quantification", null, 0, -1, AttributeQuantificationconstraint.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE,
+ IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
initEClass(quantificationEClass, Quantification.class, "Quantification", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS);
initEReference(getQuantification_Operand(), this.getAttribute(), null, "operand", null, 1, -1, Quantification.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
initEClass(behaviorAttributeBindingEClass, BehaviorAttributeBinding.class, "BehaviorAttributeBinding", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS);
- initEReference(getBehaviorAttributeBinding_VisibleThroughFunctionPort(), theFunctionmodelingPackage.getFunctionPort(), null, "visibleThroughFunctionPort", null, 0, -1, BehaviorAttributeBinding.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
- initEReference(getBehaviorAttributeBinding_VisibleThroughHardwarePin(), theHardwaremodelingPackage.getHardwarePin(), null, "visibleThroughHardwarePin", null, 0, -1, BehaviorAttributeBinding.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
- initEReference(getBehaviorAttributeBinding_VisibleThroughHardwarePort(), theHardwaremodelingPackage.getHardwarePort(), null, "visibleThroughHardwarePort", null, 0, -1, BehaviorAttributeBinding.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
- initEReference(getBehaviorAttributeBinding_Attribute(), this.getAttribute(), null, "attribute", null, 1, -1, BehaviorAttributeBinding.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
- initEReference(getBehaviorAttributeBinding_VisibleThroughAnomaly(), theErrormodelPackage.getAnomaly(), null, "visibleThroughAnomaly", null, 1, -1, BehaviorAttributeBinding.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
+ initEReference(getBehaviorAttributeBinding_VisibleThroughFunctionPort(), theFunctionmodelingPackage.getFunctionPort(), null, "visibleThroughFunctionPort", null, 0, -1, BehaviorAttributeBinding.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE,
+ !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
+ initEReference(getBehaviorAttributeBinding_VisibleThroughHardwarePin(), theHardwaremodelingPackage.getHardwarePin(), null, "visibleThroughHardwarePin", null, 0, -1, BehaviorAttributeBinding.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE,
+ !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
+ initEReference(getBehaviorAttributeBinding_VisibleThroughHardwarePort(), theHardwaremodelingPackage.getHardwarePort(), null, "visibleThroughHardwarePort", null, 0, -1, BehaviorAttributeBinding.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE,
+ !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
+ initEReference(getBehaviorAttributeBinding_Attribute(), this.getAttribute(), null, "attribute", null, 1, -1, BehaviorAttributeBinding.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE,
+ !IS_DERIVED, !IS_ORDERED);
+ initEReference(getBehaviorAttributeBinding_VisibleThroughAnomaly(), theErrormodelPackage.getAnomaly(), null, "visibleThroughAnomaly", null, 1, -1, BehaviorAttributeBinding.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE,
+ IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
initEClass(logicalEventEClass, LogicalEvent.class, "LogicalEvent", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS);
initEAttribute(getLogicalEvent_IsExternVisible(), theTypesPackage.getBoolean(), "isExternVisible", "false", 1, 1, LogicalEvent.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
- initEReference(getLogicalEvent_VisibleThroughFunctionPort(), theFunctionmodelingPackage.getFunctionPort(), null, "visibleThroughFunctionPort", null, 0, -1, LogicalEvent.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
+ initEReference(getLogicalEvent_VisibleThroughFunctionPort(), theFunctionmodelingPackage.getFunctionPort(), null, "visibleThroughFunctionPort", null, 0, -1, LogicalEvent.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE,
+ IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
initEClass(attributeEClass, Attribute.class, "Attribute", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS);
initEAttribute(getAttribute_IsExternVisible(), theTypesPackage.getBoolean(), "isExternVisible", "false", 1, 1, Attribute.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
initEReference(getAttribute_Type(), theDatatypesPackage.getEADatatype(), null, "type", null, 1, 1, Attribute.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, !IS_ORDERED);
}
-} //AttributequantificationconstraintPackageImpl
+} // AttributequantificationconstraintPackageImpl
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/BehaviorAttributeBindingImpl.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/BehaviorAttributeBindingImpl.java index 3d26e152b3e..dd61f398b3c 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/BehaviorAttributeBindingImpl.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/BehaviorAttributeBindingImpl.java @@ -23,11 +23,11 @@ import org.eclipse.papyrus.eastadl.structure.hardwaremodeling.HardwarePort; * <p>
* The following features are implemented:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl#getVisibleThroughFunctionPort <em>Visible Through Function Port</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl#getVisibleThroughHardwarePin <em>Visible Through Hardware Pin</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl#getVisibleThroughHardwarePort <em>Visible Through Hardware Port</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl#getAttribute <em>Attribute</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl#getVisibleThroughAnomaly <em>Visible Through Anomaly</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl#getVisibleThroughFunctionPort <em>Visible Through Function Port</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl#getVisibleThroughHardwarePin <em>Visible Through Hardware Pin</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl#getVisibleThroughHardwarePort <em>Visible Through Hardware Port</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl#getAttribute <em>Attribute</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.BehaviorAttributeBindingImpl#getVisibleThroughAnomaly <em>Visible Through Anomaly</em>}</li>
* </ul>
* </p>
*
@@ -38,6 +38,7 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be * The cached value of the '{@link #getVisibleThroughFunctionPort() <em>Visible Through Function Port</em>}' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #getVisibleThroughFunctionPort()
* @generated
* @ordered
@@ -48,6 +49,7 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be * The cached value of the '{@link #getVisibleThroughHardwarePin() <em>Visible Through Hardware Pin</em>}' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #getVisibleThroughHardwarePin()
* @generated
* @ordered
@@ -58,6 +60,7 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be * The cached value of the '{@link #getVisibleThroughHardwarePort() <em>Visible Through Hardware Port</em>}' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #getVisibleThroughHardwarePort()
* @generated
* @ordered
@@ -68,6 +71,7 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be * The cached value of the '{@link #getAttribute() <em>Attribute</em>}' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #getAttribute()
* @generated
* @ordered
@@ -78,6 +82,7 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be * The cached value of the '{@link #getVisibleThroughAnomaly() <em>Visible Through Anomaly</em>}' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #getVisibleThroughAnomaly()
* @generated
* @ordered
@@ -87,6 +92,7 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
protected BehaviorAttributeBindingImpl() {
@@ -96,6 +102,7 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
@@ -106,8 +113,10 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EList<FunctionPort> getVisibleThroughFunctionPort() {
if (visibleThroughFunctionPort == null) {
visibleThroughFunctionPort = new EObjectResolvingEList<FunctionPort>(FunctionPort.class, this, AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_FUNCTION_PORT);
@@ -118,8 +127,10 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EList<HardwarePin> getVisibleThroughHardwarePin() {
if (visibleThroughHardwarePin == null) {
visibleThroughHardwarePin = new EObjectResolvingEList<HardwarePin>(HardwarePin.class, this, AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PIN);
@@ -130,8 +141,10 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EList<HardwarePort> getVisibleThroughHardwarePort() {
if (visibleThroughHardwarePort == null) {
visibleThroughHardwarePort = new EObjectResolvingEList<HardwarePort>(HardwarePort.class, this, AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PORT);
@@ -142,8 +155,10 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EList<Attribute> getAttribute() {
if (attribute == null) {
attribute = new EObjectResolvingEList<Attribute>(Attribute.class, this, AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__ATTRIBUTE);
@@ -154,8 +169,10 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EList<Anomaly> getVisibleThroughAnomaly() {
if (visibleThroughAnomaly == null) {
visibleThroughAnomaly = new EObjectResolvingEList<Anomaly>(Anomaly.class, this, AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_ANOMALY);
@@ -166,21 +183,22 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_FUNCTION_PORT:
- return getVisibleThroughFunctionPort();
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PIN:
- return getVisibleThroughHardwarePin();
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PORT:
- return getVisibleThroughHardwarePort();
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__ATTRIBUTE:
- return getAttribute();
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_ANOMALY:
- return getVisibleThroughAnomaly();
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_FUNCTION_PORT:
+ return getVisibleThroughFunctionPort();
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PIN:
+ return getVisibleThroughHardwarePin();
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PORT:
+ return getVisibleThroughHardwarePort();
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__ATTRIBUTE:
+ return getAttribute();
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_ANOMALY:
+ return getVisibleThroughAnomaly();
}
return super.eGet(featureID, resolve, coreType);
}
@@ -188,32 +206,33 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_FUNCTION_PORT:
- getVisibleThroughFunctionPort().clear();
- getVisibleThroughFunctionPort().addAll((Collection<? extends FunctionPort>)newValue);
- return;
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PIN:
- getVisibleThroughHardwarePin().clear();
- getVisibleThroughHardwarePin().addAll((Collection<? extends HardwarePin>)newValue);
- return;
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PORT:
- getVisibleThroughHardwarePort().clear();
- getVisibleThroughHardwarePort().addAll((Collection<? extends HardwarePort>)newValue);
- return;
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__ATTRIBUTE:
- getAttribute().clear();
- getAttribute().addAll((Collection<? extends Attribute>)newValue);
- return;
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_ANOMALY:
- getVisibleThroughAnomaly().clear();
- getVisibleThroughAnomaly().addAll((Collection<? extends Anomaly>)newValue);
- return;
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_FUNCTION_PORT:
+ getVisibleThroughFunctionPort().clear();
+ getVisibleThroughFunctionPort().addAll((Collection<? extends FunctionPort>) newValue);
+ return;
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PIN:
+ getVisibleThroughHardwarePin().clear();
+ getVisibleThroughHardwarePin().addAll((Collection<? extends HardwarePin>) newValue);
+ return;
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PORT:
+ getVisibleThroughHardwarePort().clear();
+ getVisibleThroughHardwarePort().addAll((Collection<? extends HardwarePort>) newValue);
+ return;
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__ATTRIBUTE:
+ getAttribute().clear();
+ getAttribute().addAll((Collection<? extends Attribute>) newValue);
+ return;
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_ANOMALY:
+ getVisibleThroughAnomaly().clear();
+ getVisibleThroughAnomaly().addAll((Collection<? extends Anomaly>) newValue);
+ return;
}
super.eSet(featureID, newValue);
}
@@ -221,26 +240,27 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_FUNCTION_PORT:
- getVisibleThroughFunctionPort().clear();
- return;
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PIN:
- getVisibleThroughHardwarePin().clear();
- return;
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PORT:
- getVisibleThroughHardwarePort().clear();
- return;
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__ATTRIBUTE:
- getAttribute().clear();
- return;
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_ANOMALY:
- getVisibleThroughAnomaly().clear();
- return;
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_FUNCTION_PORT:
+ getVisibleThroughFunctionPort().clear();
+ return;
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PIN:
+ getVisibleThroughHardwarePin().clear();
+ return;
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PORT:
+ getVisibleThroughHardwarePort().clear();
+ return;
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__ATTRIBUTE:
+ getAttribute().clear();
+ return;
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_ANOMALY:
+ getVisibleThroughAnomaly().clear();
+ return;
}
super.eUnset(featureID);
}
@@ -248,23 +268,24 @@ public class BehaviorAttributeBindingImpl extends RelationshipImpl implements Be /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_FUNCTION_PORT:
- return visibleThroughFunctionPort != null && !visibleThroughFunctionPort.isEmpty();
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PIN:
- return visibleThroughHardwarePin != null && !visibleThroughHardwarePin.isEmpty();
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PORT:
- return visibleThroughHardwarePort != null && !visibleThroughHardwarePort.isEmpty();
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__ATTRIBUTE:
- return attribute != null && !attribute.isEmpty();
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_ANOMALY:
- return visibleThroughAnomaly != null && !visibleThroughAnomaly.isEmpty();
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_FUNCTION_PORT:
+ return visibleThroughFunctionPort != null && !visibleThroughFunctionPort.isEmpty();
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PIN:
+ return visibleThroughHardwarePin != null && !visibleThroughHardwarePin.isEmpty();
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_HARDWARE_PORT:
+ return visibleThroughHardwarePort != null && !visibleThroughHardwarePort.isEmpty();
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__ATTRIBUTE:
+ return attribute != null && !attribute.isEmpty();
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING__VISIBLE_THROUGH_ANOMALY:
+ return visibleThroughAnomaly != null && !visibleThroughAnomaly.isEmpty();
}
return super.eIsSet(featureID);
}
-} //BehaviorAttributeBindingImpl
+} // BehaviorAttributeBindingImpl
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/LogicalEventImpl.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/LogicalEventImpl.java index f71de247e46..acd79e97169 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/LogicalEventImpl.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/LogicalEventImpl.java @@ -20,8 +20,8 @@ import org.eclipse.papyrus.eastadl.structure.functionmodeling.FunctionPort; * <p>
* The following features are implemented:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.LogicalEventImpl#isIsExternVisible <em>Is Extern Visible</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.LogicalEventImpl#getVisibleThroughFunctionPort <em>Visible Through Function Port</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.LogicalEventImpl#isIsExternVisible <em>Is Extern Visible</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.LogicalEventImpl#getVisibleThroughFunctionPort <em>Visible Through Function Port</em>}</li>
* </ul>
* </p>
*
@@ -32,6 +32,7 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent * The default value of the '{@link #isIsExternVisible() <em>Is Extern Visible</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #isIsExternVisible()
* @generated
* @ordered
@@ -42,6 +43,7 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent * The cached value of the '{@link #isIsExternVisible() <em>Is Extern Visible</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #isIsExternVisible()
* @generated
* @ordered
@@ -52,6 +54,7 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent * The cached value of the '{@link #getVisibleThroughFunctionPort() <em>Visible Through Function Port</em>}' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #getVisibleThroughFunctionPort()
* @generated
* @ordered
@@ -61,6 +64,7 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
protected LogicalEventImpl() {
@@ -70,6 +74,7 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
@@ -80,8 +85,10 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public boolean isIsExternVisible() {
return isExternVisible;
}
@@ -89,20 +96,25 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public void setIsExternVisible(boolean newIsExternVisible) {
boolean oldIsExternVisible = isExternVisible;
isExternVisible = newIsExternVisible;
- if (eNotificationRequired())
+ if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, AttributequantificationconstraintPackage.LOGICAL_EVENT__IS_EXTERN_VISIBLE, oldIsExternVisible, isExternVisible));
+ }
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EList<FunctionPort> getVisibleThroughFunctionPort() {
if (visibleThroughFunctionPort == null) {
visibleThroughFunctionPort = new EObjectResolvingEList<FunctionPort>(FunctionPort.class, this, AttributequantificationconstraintPackage.LOGICAL_EVENT__VISIBLE_THROUGH_FUNCTION_PORT);
@@ -113,15 +125,16 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
- case AttributequantificationconstraintPackage.LOGICAL_EVENT__IS_EXTERN_VISIBLE:
- return isIsExternVisible();
- case AttributequantificationconstraintPackage.LOGICAL_EVENT__VISIBLE_THROUGH_FUNCTION_PORT:
- return getVisibleThroughFunctionPort();
+ case AttributequantificationconstraintPackage.LOGICAL_EVENT__IS_EXTERN_VISIBLE:
+ return isIsExternVisible();
+ case AttributequantificationconstraintPackage.LOGICAL_EVENT__VISIBLE_THROUGH_FUNCTION_PORT:
+ return getVisibleThroughFunctionPort();
}
return super.eGet(featureID, resolve, coreType);
}
@@ -129,19 +142,20 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
- case AttributequantificationconstraintPackage.LOGICAL_EVENT__IS_EXTERN_VISIBLE:
- setIsExternVisible((Boolean)newValue);
- return;
- case AttributequantificationconstraintPackage.LOGICAL_EVENT__VISIBLE_THROUGH_FUNCTION_PORT:
- getVisibleThroughFunctionPort().clear();
- getVisibleThroughFunctionPort().addAll((Collection<? extends FunctionPort>)newValue);
- return;
+ case AttributequantificationconstraintPackage.LOGICAL_EVENT__IS_EXTERN_VISIBLE:
+ setIsExternVisible((Boolean) newValue);
+ return;
+ case AttributequantificationconstraintPackage.LOGICAL_EVENT__VISIBLE_THROUGH_FUNCTION_PORT:
+ getVisibleThroughFunctionPort().clear();
+ getVisibleThroughFunctionPort().addAll((Collection<? extends FunctionPort>) newValue);
+ return;
}
super.eSet(featureID, newValue);
}
@@ -149,17 +163,18 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
- case AttributequantificationconstraintPackage.LOGICAL_EVENT__IS_EXTERN_VISIBLE:
- setIsExternVisible(IS_EXTERN_VISIBLE_EDEFAULT);
- return;
- case AttributequantificationconstraintPackage.LOGICAL_EVENT__VISIBLE_THROUGH_FUNCTION_PORT:
- getVisibleThroughFunctionPort().clear();
- return;
+ case AttributequantificationconstraintPackage.LOGICAL_EVENT__IS_EXTERN_VISIBLE:
+ setIsExternVisible(IS_EXTERN_VISIBLE_EDEFAULT);
+ return;
+ case AttributequantificationconstraintPackage.LOGICAL_EVENT__VISIBLE_THROUGH_FUNCTION_PORT:
+ getVisibleThroughFunctionPort().clear();
+ return;
}
super.eUnset(featureID);
}
@@ -167,15 +182,16 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
- case AttributequantificationconstraintPackage.LOGICAL_EVENT__IS_EXTERN_VISIBLE:
- return isExternVisible != IS_EXTERN_VISIBLE_EDEFAULT;
- case AttributequantificationconstraintPackage.LOGICAL_EVENT__VISIBLE_THROUGH_FUNCTION_PORT:
- return visibleThroughFunctionPort != null && !visibleThroughFunctionPort.isEmpty();
+ case AttributequantificationconstraintPackage.LOGICAL_EVENT__IS_EXTERN_VISIBLE:
+ return isExternVisible != IS_EXTERN_VISIBLE_EDEFAULT;
+ case AttributequantificationconstraintPackage.LOGICAL_EVENT__VISIBLE_THROUGH_FUNCTION_PORT:
+ return visibleThroughFunctionPort != null && !visibleThroughFunctionPort.isEmpty();
}
return super.eIsSet(featureID);
}
@@ -183,11 +199,14 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public String toString() {
- if (eIsProxy()) return super.toString();
+ if (eIsProxy()) {
+ return super.toString();
+ }
StringBuffer result = new StringBuffer(super.toString());
result.append(" (isExternVisible: ");
@@ -196,4 +215,4 @@ public class LogicalEventImpl extends QuantificationImpl implements LogicalEvent return result.toString();
}
-} //LogicalEventImpl
+} // LogicalEventImpl
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/QuantificationImpl.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/QuantificationImpl.java index 6aef4f463f9..47f198607f7 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/QuantificationImpl.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/impl/QuantificationImpl.java @@ -27,9 +27,9 @@ import org.eclipse.uml2.uml.ValueSpecification; * <p>
* The following features are implemented:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.QuantificationImpl#getType <em>Type</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.QuantificationImpl#getBase_ValueSpecification <em>Base Value Specification</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.QuantificationImpl#getOperand <em>Operand</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.QuantificationImpl#getType <em>Type</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.QuantificationImpl#getBase_ValueSpecification <em>Base Value Specification</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.impl.QuantificationImpl#getOperand <em>Operand</em>}</li>
* </ul>
* </p>
*
@@ -40,6 +40,7 @@ public class QuantificationImpl extends EAElementImpl implements Quantification * The cached value of the '{@link #getType() <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #getType()
* @generated
* @ordered
@@ -50,6 +51,7 @@ public class QuantificationImpl extends EAElementImpl implements Quantification * The cached value of the '{@link #getBase_ValueSpecification() <em>Base Value Specification</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #getBase_ValueSpecification()
* @generated
* @ordered
@@ -60,6 +62,7 @@ public class QuantificationImpl extends EAElementImpl implements Quantification * The cached value of the '{@link #getOperand() <em>Operand</em>}' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @see #getOperand()
* @generated
* @ordered
@@ -69,6 +72,7 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
protected QuantificationImpl() {
@@ -78,6 +82,7 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
@@ -88,15 +93,18 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EADatatype getType() {
if (type != null && type.eIsProxy()) {
- InternalEObject oldType = (InternalEObject)type;
- type = (EADatatype)eResolveProxy(oldType);
+ InternalEObject oldType = (InternalEObject) type;
+ type = (EADatatype) eResolveProxy(oldType);
if (type != oldType) {
- if (eNotificationRequired())
+ if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.RESOLVE, AttributequantificationconstraintPackage.QUANTIFICATION__TYPE, oldType, type));
+ }
}
}
return type;
@@ -105,6 +113,7 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public EADatatype basicGetType() {
@@ -114,27 +123,33 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public void setType(EADatatype newType) {
EADatatype oldType = type;
type = newType;
- if (eNotificationRequired())
+ if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, AttributequantificationconstraintPackage.QUANTIFICATION__TYPE, oldType, type));
+ }
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public ValueSpecification getBase_ValueSpecification() {
if (base_ValueSpecification != null && base_ValueSpecification.eIsProxy()) {
- InternalEObject oldBase_ValueSpecification = (InternalEObject)base_ValueSpecification;
- base_ValueSpecification = (ValueSpecification)eResolveProxy(oldBase_ValueSpecification);
+ InternalEObject oldBase_ValueSpecification = (InternalEObject) base_ValueSpecification;
+ base_ValueSpecification = (ValueSpecification) eResolveProxy(oldBase_ValueSpecification);
if (base_ValueSpecification != oldBase_ValueSpecification) {
- if (eNotificationRequired())
+ if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.RESOLVE, AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION, oldBase_ValueSpecification, base_ValueSpecification));
+ }
}
}
return base_ValueSpecification;
@@ -143,6 +158,7 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public ValueSpecification basicGetBase_ValueSpecification() {
@@ -152,20 +168,25 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public void setBase_ValueSpecification(ValueSpecification newBase_ValueSpecification) {
ValueSpecification oldBase_ValueSpecification = base_ValueSpecification;
base_ValueSpecification = newBase_ValueSpecification;
- if (eNotificationRequired())
+ if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION, oldBase_ValueSpecification, base_ValueSpecification));
+ }
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
+ @Override
public EList<Attribute> getOperand() {
if (operand == null) {
operand = new EObjectResolvingEList<Attribute>(Attribute.class, this, AttributequantificationconstraintPackage.QUANTIFICATION__OPERAND);
@@ -176,19 +197,24 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
- case AttributequantificationconstraintPackage.QUANTIFICATION__TYPE:
- if (resolve) return getType();
- return basicGetType();
- case AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION:
- if (resolve) return getBase_ValueSpecification();
- return basicGetBase_ValueSpecification();
- case AttributequantificationconstraintPackage.QUANTIFICATION__OPERAND:
- return getOperand();
+ case AttributequantificationconstraintPackage.QUANTIFICATION__TYPE:
+ if (resolve) {
+ return getType();
+ }
+ return basicGetType();
+ case AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION:
+ if (resolve) {
+ return getBase_ValueSpecification();
+ }
+ return basicGetBase_ValueSpecification();
+ case AttributequantificationconstraintPackage.QUANTIFICATION__OPERAND:
+ return getOperand();
}
return super.eGet(featureID, resolve, coreType);
}
@@ -196,22 +222,23 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
- case AttributequantificationconstraintPackage.QUANTIFICATION__TYPE:
- setType((EADatatype)newValue);
- return;
- case AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION:
- setBase_ValueSpecification((ValueSpecification)newValue);
- return;
- case AttributequantificationconstraintPackage.QUANTIFICATION__OPERAND:
- getOperand().clear();
- getOperand().addAll((Collection<? extends Attribute>)newValue);
- return;
+ case AttributequantificationconstraintPackage.QUANTIFICATION__TYPE:
+ setType((EADatatype) newValue);
+ return;
+ case AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION:
+ setBase_ValueSpecification((ValueSpecification) newValue);
+ return;
+ case AttributequantificationconstraintPackage.QUANTIFICATION__OPERAND:
+ getOperand().clear();
+ getOperand().addAll((Collection<? extends Attribute>) newValue);
+ return;
}
super.eSet(featureID, newValue);
}
@@ -219,20 +246,21 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
- case AttributequantificationconstraintPackage.QUANTIFICATION__TYPE:
- setType((EADatatype)null);
- return;
- case AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION:
- setBase_ValueSpecification((ValueSpecification)null);
- return;
- case AttributequantificationconstraintPackage.QUANTIFICATION__OPERAND:
- getOperand().clear();
- return;
+ case AttributequantificationconstraintPackage.QUANTIFICATION__TYPE:
+ setType((EADatatype) null);
+ return;
+ case AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION:
+ setBase_ValueSpecification((ValueSpecification) null);
+ return;
+ case AttributequantificationconstraintPackage.QUANTIFICATION__OPERAND:
+ getOperand().clear();
+ return;
}
super.eUnset(featureID);
}
@@ -240,17 +268,18 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
- case AttributequantificationconstraintPackage.QUANTIFICATION__TYPE:
- return type != null;
- case AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION:
- return base_ValueSpecification != null;
- case AttributequantificationconstraintPackage.QUANTIFICATION__OPERAND:
- return operand != null && !operand.isEmpty();
+ case AttributequantificationconstraintPackage.QUANTIFICATION__TYPE:
+ return type != null;
+ case AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION:
+ return base_ValueSpecification != null;
+ case AttributequantificationconstraintPackage.QUANTIFICATION__OPERAND:
+ return operand != null && !operand.isEmpty();
}
return super.eIsSet(featureID);
}
@@ -258,20 +287,25 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public int eBaseStructuralFeatureID(int derivedFeatureID, Class<?> baseClass) {
if (baseClass == EAValue.class) {
switch (derivedFeatureID) {
- case AttributequantificationconstraintPackage.QUANTIFICATION__TYPE: return ValuesPackage.EA_VALUE__TYPE;
- case AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION: return ValuesPackage.EA_VALUE__BASE_VALUE_SPECIFICATION;
- default: return -1;
+ case AttributequantificationconstraintPackage.QUANTIFICATION__TYPE:
+ return ValuesPackage.EA_VALUE__TYPE;
+ case AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION:
+ return ValuesPackage.EA_VALUE__BASE_VALUE_SPECIFICATION;
+ default:
+ return -1;
}
}
if (baseClass == EAExpression.class) {
switch (derivedFeatureID) {
- default: return -1;
+ default:
+ return -1;
}
}
return super.eBaseStructuralFeatureID(derivedFeatureID, baseClass);
@@ -280,23 +314,28 @@ public class QuantificationImpl extends EAElementImpl implements Quantification /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
public int eDerivedStructuralFeatureID(int baseFeatureID, Class<?> baseClass) {
if (baseClass == EAValue.class) {
switch (baseFeatureID) {
- case ValuesPackage.EA_VALUE__TYPE: return AttributequantificationconstraintPackage.QUANTIFICATION__TYPE;
- case ValuesPackage.EA_VALUE__BASE_VALUE_SPECIFICATION: return AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION;
- default: return -1;
+ case ValuesPackage.EA_VALUE__TYPE:
+ return AttributequantificationconstraintPackage.QUANTIFICATION__TYPE;
+ case ValuesPackage.EA_VALUE__BASE_VALUE_SPECIFICATION:
+ return AttributequantificationconstraintPackage.QUANTIFICATION__BASE_VALUE_SPECIFICATION;
+ default:
+ return -1;
}
}
if (baseClass == EAExpression.class) {
switch (baseFeatureID) {
- default: return -1;
+ default:
+ return -1;
}
}
return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass);
}
-} //QuantificationImpl
+} // QuantificationImpl
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintAdapterFactory.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintAdapterFactory.java index bb7c4915146..af970c98f9e 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintAdapterFactory.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintAdapterFactory.java @@ -23,6 +23,7 @@ import org.eclipse.papyrus.eastadl.infrastructure.values.EAValue; * The <b>Adapter Factory</b> for the model.
* It provides an adapter <code>createXXX</code> method for each class of the model.
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage
* @generated
*/
@@ -31,6 +32,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * The cached model package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
protected static AttributequantificationconstraintPackage modelPackage;
@@ -39,6 +41,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * Creates an instance of the adapter factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public AttributequantificationconstraintAdapterFactory() {
@@ -52,6 +55,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * <!-- begin-user-doc -->
* This implementation returns <code>true</code> if the object is either the model's package or is an instance object of the model.
* <!-- end-user-doc -->
+ *
* @return whether this factory is applicable for the type of the object.
* @generated
*/
@@ -61,7 +65,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact return true;
}
if (object instanceof EObject) {
- return ((EObject)object).eClass().getEPackage() == modelPackage;
+ return ((EObject) object).eClass().getEPackage() == modelPackage;
}
return false;
}
@@ -70,67 +74,80 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * The switch that delegates to the <code>createXXX</code> methods.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
protected AttributequantificationconstraintSwitch<Adapter> modelSwitch =
- new AttributequantificationconstraintSwitch<Adapter>() {
- @Override
- public Adapter caseAttributeQuantificationconstraint(AttributeQuantificationconstraint object) {
- return createAttributeQuantificationconstraintAdapter();
- }
- @Override
- public Adapter caseQuantification(Quantification object) {
- return createQuantificationAdapter();
- }
- @Override
- public Adapter caseBehaviorAttributeBinding(BehaviorAttributeBinding object) {
- return createBehaviorAttributeBindingAdapter();
- }
- @Override
- public Adapter caseLogicalEvent(LogicalEvent object) {
- return createLogicalEventAdapter();
- }
- @Override
- public Adapter caseAttribute(Attribute object) {
- return createAttributeAdapter();
- }
- @Override
- public Adapter caseEAElement(EAElement object) {
- return createEAElementAdapter();
- }
- @Override
- public Adapter caseBehaviorConstraintParameter(BehaviorConstraintParameter object) {
- return createBehaviorConstraintParameterAdapter();
- }
- @Override
- public Adapter caseEAValue(EAValue object) {
- return createEAValueAdapter();
- }
- @Override
- public Adapter caseEAExpression(EAExpression object) {
- return createEAExpressionAdapter();
- }
- @Override
- public Adapter caseRelationship(Relationship object) {
- return createRelationshipAdapter();
- }
- @Override
- public Adapter defaultCase(EObject object) {
- return createEObjectAdapter();
- }
- };
+ new AttributequantificationconstraintSwitch<Adapter>() {
+ @Override
+ public Adapter caseAttributeQuantificationconstraint(AttributeQuantificationconstraint object) {
+ return createAttributeQuantificationconstraintAdapter();
+ }
+
+ @Override
+ public Adapter caseQuantification(Quantification object) {
+ return createQuantificationAdapter();
+ }
+
+ @Override
+ public Adapter caseBehaviorAttributeBinding(BehaviorAttributeBinding object) {
+ return createBehaviorAttributeBindingAdapter();
+ }
+
+ @Override
+ public Adapter caseLogicalEvent(LogicalEvent object) {
+ return createLogicalEventAdapter();
+ }
+
+ @Override
+ public Adapter caseAttribute(Attribute object) {
+ return createAttributeAdapter();
+ }
+
+ @Override
+ public Adapter caseEAElement(EAElement object) {
+ return createEAElementAdapter();
+ }
+
+ @Override
+ public Adapter caseBehaviorConstraintParameter(BehaviorConstraintParameter object) {
+ return createBehaviorConstraintParameterAdapter();
+ }
+
+ @Override
+ public Adapter caseEAValue(EAValue object) {
+ return createEAValueAdapter();
+ }
+
+ @Override
+ public Adapter caseEAExpression(EAExpression object) {
+ return createEAExpressionAdapter();
+ }
+
+ @Override
+ public Adapter caseRelationship(Relationship object) {
+ return createRelationshipAdapter();
+ }
+
+ @Override
+ public Adapter defaultCase(EObject object) {
+ return createEObjectAdapter();
+ }
+ };
/**
* Creates an adapter for the <code>target</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
- * @param target the object to adapt.
+ *
+ * @param target
+ * the object to adapt.
* @return the adapter for the <code>target</code>.
* @generated
*/
@Override
public Adapter createAdapter(Notifier target) {
- return modelSwitch.doSwitch((EObject)target);
+ return modelSwitch.doSwitch((EObject) target);
}
@@ -140,6 +157,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * 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.
* <!-- end-user-doc -->
+ *
* @return the new adapter.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint
* @generated
@@ -154,6 +172,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * 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.
* <!-- end-user-doc -->
+ *
* @return the new adapter.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Quantification
* @generated
@@ -168,6 +187,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * 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.
* <!-- end-user-doc -->
+ *
* @return the new adapter.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding
* @generated
@@ -182,6 +202,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * 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.
* <!-- end-user-doc -->
+ *
* @return the new adapter.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.LogicalEvent
* @generated
@@ -196,6 +217,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * 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.
* <!-- end-user-doc -->
+ *
* @return the new adapter.
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attribute
* @generated
@@ -210,6 +232,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * 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.
* <!-- end-user-doc -->
+ *
* @return the new adapter.
* @see org.eclipse.papyrus.eastadl.infrastructure.elements.EAElement
* @generated
@@ -224,6 +247,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * 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.
* <!-- end-user-doc -->
+ *
* @return the new adapter.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintParameter
* @generated
@@ -238,6 +262,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * 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.
* <!-- end-user-doc -->
+ *
* @return the new adapter.
* @see org.eclipse.papyrus.eastadl.infrastructure.values.EAValue
* @generated
@@ -252,6 +277,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * 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.
* <!-- end-user-doc -->
+ *
* @return the new adapter.
* @see org.eclipse.papyrus.eastadl.infrastructure.values.EAExpression
* @generated
@@ -266,6 +292,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * 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.
* <!-- end-user-doc -->
+ *
* @return the new adapter.
* @see org.eclipse.papyrus.eastadl.infrastructure.elements.Relationship
* @generated
@@ -279,6 +306,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact * <!-- begin-user-doc -->
* This default implementation returns null.
* <!-- end-user-doc -->
+ *
* @return the new adapter.
* @generated
*/
@@ -286,4 +314,4 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact return null;
}
-} //AttributequantificationconstraintAdapterFactory
+} // AttributequantificationconstraintAdapterFactory
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintResourceFactoryImpl.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintResourceFactoryImpl.java index 24310c067e5..8bfc21f3b1e 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintResourceFactoryImpl.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintResourceFactoryImpl.java @@ -11,6 +11,7 @@ import org.eclipse.emf.ecore.xmi.XMLResource; * <!-- begin-user-doc -->
* The <b>Resource Factory</b> associated with the package.
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.util.AttributequantificationconstraintResourceImpl
* @generated
*/
@@ -19,6 +20,7 @@ public class AttributequantificationconstraintResourceFactoryImpl extends Resour * Creates an instance of the resource factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public AttributequantificationconstraintResourceFactoryImpl() {
@@ -29,6 +31,7 @@ public class AttributequantificationconstraintResourceFactoryImpl extends Resour * Creates an instance of the resource.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
@@ -46,4 +49,4 @@ public class AttributequantificationconstraintResourceFactoryImpl extends Resour return result;
}
-} //AttributequantificationconstraintResourceFactoryImpl
+} // AttributequantificationconstraintResourceFactoryImpl
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintResourceImpl.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintResourceImpl.java index 8abeadc1aee..136a3c86c96 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintResourceImpl.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintResourceImpl.java @@ -9,6 +9,7 @@ import org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl; * <!-- begin-user-doc -->
* The <b>Resource </b> associated with the package.
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.util.AttributequantificationconstraintResourceFactoryImpl
* @generated
*/
@@ -17,11 +18,13 @@ public class AttributequantificationconstraintResourceImpl extends XMLResourceIm * Creates an instance of the resource.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
- * @param uri the URI of the new resource.
+ *
+ * @param uri
+ * the URI of the new resource.
* @generated
*/
public AttributequantificationconstraintResourceImpl(URI uri) {
super(uri);
}
-} //AttributequantificationconstraintResourceImpl
+} // AttributequantificationconstraintResourceImpl
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintSwitch.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintSwitch.java index 66657d98d8f..0450a00c4df 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintSwitch.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintSwitch.java @@ -20,13 +20,13 @@ import org.eclipse.papyrus.eastadl.infrastructure.values.EAValue; /**
* <!-- begin-user-doc -->
* The <b>Switch</b> for the model's inheritance hierarchy.
- * It supports the call {@link #doSwitch(EObject) doSwitch(object)}
- * to invoke the <code>caseXXX</code> method for each class of the model,
+ * It supports the call {@link #doSwitch(EObject) doSwitch(object)} to invoke the <code>caseXXX</code> method for each class of the model,
* starting with the actual class of the object
* and proceeding up the inheritance hierarchy
* until a non-null result is returned,
* which is the result of the switch.
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage
* @generated
*/
@@ -35,6 +35,7 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * The cached model package
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
protected static AttributequantificationconstraintPackage modelPackage;
@@ -43,6 +44,7 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * Creates an instance of the switch.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public AttributequantificationconstraintSwitch() {
@@ -55,6 +57,7 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * Checks whether this is a switch for the given package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @parameter ePackage the package in question.
* @return whether this is a switch for the given package.
* @generated
@@ -68,56 +71,94 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * Calls <code>caseXXX</code> for each class of the model until one returns a non null result; it yields that result.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return the first non-null result returned by a <code>caseXXX</code> call.
* @generated
*/
@Override
protected T doSwitch(int classifierID, EObject theEObject) {
switch (classifierID) {
- case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT: {
- AttributeQuantificationconstraint attributeQuantificationconstraint = (AttributeQuantificationconstraint)theEObject;
- T result = caseAttributeQuantificationconstraint(attributeQuantificationconstraint);
- if (result == null) result = caseEAElement(attributeQuantificationconstraint);
- if (result == null) result = caseBehaviorConstraintParameter(attributeQuantificationconstraint);
- if (result == null) result = defaultCase(theEObject);
- return result;
+ case AttributequantificationconstraintPackage.ATTRIBUTE_QUANTIFICATIONCONSTRAINT: {
+ AttributeQuantificationconstraint attributeQuantificationconstraint = (AttributeQuantificationconstraint) theEObject;
+ T result = caseAttributeQuantificationconstraint(attributeQuantificationconstraint);
+ if (result == null) {
+ result = caseEAElement(attributeQuantificationconstraint);
}
- case AttributequantificationconstraintPackage.QUANTIFICATION: {
- Quantification quantification = (Quantification)theEObject;
- T result = caseQuantification(quantification);
- if (result == null) result = caseEAElement(quantification);
- if (result == null) result = caseEAExpression(quantification);
- if (result == null) result = caseEAValue(quantification);
- if (result == null) result = defaultCase(theEObject);
- return result;
+ if (result == null) {
+ result = caseBehaviorConstraintParameter(attributeQuantificationconstraint);
}
- case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING: {
- BehaviorAttributeBinding behaviorAttributeBinding = (BehaviorAttributeBinding)theEObject;
- T result = caseBehaviorAttributeBinding(behaviorAttributeBinding);
- if (result == null) result = caseRelationship(behaviorAttributeBinding);
- if (result == null) result = caseEAElement(behaviorAttributeBinding);
- if (result == null) result = defaultCase(theEObject);
- return result;
+ if (result == null) {
+ result = defaultCase(theEObject);
}
- case AttributequantificationconstraintPackage.LOGICAL_EVENT: {
- LogicalEvent logicalEvent = (LogicalEvent)theEObject;
- T result = caseLogicalEvent(logicalEvent);
- if (result == null) result = caseQuantification(logicalEvent);
- if (result == null) result = caseEAElement(logicalEvent);
- if (result == null) result = caseEAExpression(logicalEvent);
- if (result == null) result = caseEAValue(logicalEvent);
- if (result == null) result = defaultCase(theEObject);
- return result;
+ return result;
+ }
+ case AttributequantificationconstraintPackage.QUANTIFICATION: {
+ Quantification quantification = (Quantification) theEObject;
+ T result = caseQuantification(quantification);
+ if (result == null) {
+ result = caseEAElement(quantification);
+ }
+ if (result == null) {
+ result = caseEAExpression(quantification);
+ }
+ if (result == null) {
+ result = caseEAValue(quantification);
+ }
+ if (result == null) {
+ result = defaultCase(theEObject);
+ }
+ return result;
+ }
+ case AttributequantificationconstraintPackage.BEHAVIOR_ATTRIBUTE_BINDING: {
+ BehaviorAttributeBinding behaviorAttributeBinding = (BehaviorAttributeBinding) theEObject;
+ T result = caseBehaviorAttributeBinding(behaviorAttributeBinding);
+ if (result == null) {
+ result = caseRelationship(behaviorAttributeBinding);
+ }
+ if (result == null) {
+ result = caseEAElement(behaviorAttributeBinding);
+ }
+ if (result == null) {
+ result = defaultCase(theEObject);
+ }
+ return result;
+ }
+ case AttributequantificationconstraintPackage.LOGICAL_EVENT: {
+ LogicalEvent logicalEvent = (LogicalEvent) theEObject;
+ T result = caseLogicalEvent(logicalEvent);
+ if (result == null) {
+ result = caseQuantification(logicalEvent);
+ }
+ if (result == null) {
+ result = caseEAElement(logicalEvent);
+ }
+ if (result == null) {
+ result = caseEAExpression(logicalEvent);
}
- case AttributequantificationconstraintPackage.ATTRIBUTE: {
- Attribute attribute = (Attribute)theEObject;
- T result = caseAttribute(attribute);
- if (result == null) result = caseEAElement(attribute);
- if (result == null) result = caseBehaviorConstraintParameter(attribute);
- if (result == null) result = defaultCase(theEObject);
- return result;
+ if (result == null) {
+ result = caseEAValue(logicalEvent);
}
- default: return defaultCase(theEObject);
+ if (result == null) {
+ result = defaultCase(theEObject);
+ }
+ return result;
+ }
+ case AttributequantificationconstraintPackage.ATTRIBUTE: {
+ Attribute attribute = (Attribute) theEObject;
+ T result = caseAttribute(attribute);
+ if (result == null) {
+ result = caseEAElement(attribute);
+ }
+ if (result == null) {
+ result = caseBehaviorConstraintParameter(attribute);
+ }
+ if (result == null) {
+ result = defaultCase(theEObject);
+ }
+ return result;
+ }
+ default:
+ return defaultCase(theEObject);
}
}
@@ -127,7 +168,9 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * This implementation returns null;
* returning a non-null result will terminate the switch.
* <!-- end-user-doc -->
- * @param object the target of the switch.
+ *
+ * @param object
+ * the target of the switch.
* @return the result of interpreting the object as an instance of '<em>Attribute Quantificationconstraint</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
@@ -142,7 +185,9 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * This implementation returns null;
* returning a non-null result will terminate the switch.
* <!-- end-user-doc -->
- * @param object the target of the switch.
+ *
+ * @param object
+ * the target of the switch.
* @return the result of interpreting the object as an instance of '<em>Quantification</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
@@ -157,7 +202,9 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * This implementation returns null;
* returning a non-null result will terminate the switch.
* <!-- end-user-doc -->
- * @param object the target of the switch.
+ *
+ * @param object
+ * the target of the switch.
* @return the result of interpreting the object as an instance of '<em>Behavior Attribute Binding</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
@@ -172,7 +219,9 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * This implementation returns null;
* returning a non-null result will terminate the switch.
* <!-- end-user-doc -->
- * @param object the target of the switch.
+ *
+ * @param object
+ * the target of the switch.
* @return the result of interpreting the object as an instance of '<em>Logical Event</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
@@ -187,7 +236,9 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * This implementation returns null;
* returning a non-null result will terminate the switch.
* <!-- end-user-doc -->
- * @param object the target of the switch.
+ *
+ * @param object
+ * the target of the switch.
* @return the result of interpreting the object as an instance of '<em>Attribute</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
@@ -202,7 +253,9 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * This implementation returns null;
* returning a non-null result will terminate the switch.
* <!-- end-user-doc -->
- * @param object the target of the switch.
+ *
+ * @param object
+ * the target of the switch.
* @return the result of interpreting the object as an instance of '<em>EA Element</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
@@ -217,7 +270,9 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * This implementation returns null;
* returning a non-null result will terminate the switch.
* <!-- end-user-doc -->
- * @param object the target of the switch.
+ *
+ * @param object
+ * the target of the switch.
* @return the result of interpreting the object as an instance of '<em>Behavior Constraint Parameter</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
@@ -232,7 +287,9 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * This implementation returns null;
* returning a non-null result will terminate the switch.
* <!-- end-user-doc -->
- * @param object the target of the switch.
+ *
+ * @param object
+ * the target of the switch.
* @return the result of interpreting the object as an instance of '<em>EA Value</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
@@ -247,7 +304,9 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * This implementation returns null;
* returning a non-null result will terminate the switch.
* <!-- end-user-doc -->
- * @param object the target of the switch.
+ *
+ * @param object
+ * the target of the switch.
* @return the result of interpreting the object as an instance of '<em>EA Expression</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
@@ -262,7 +321,9 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * This implementation returns null;
* returning a non-null result will terminate the switch.
* <!-- end-user-doc -->
- * @param object the target of the switch.
+ *
+ * @param object
+ * the target of the switch.
* @return the result of interpreting the object as an instance of '<em>Relationship</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
@@ -277,7 +338,9 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { * This implementation returns null;
* returning a non-null result will terminate the switch, but this is the last case anyway.
* <!-- end-user-doc -->
- * @param object the target of the switch.
+ *
+ * @param object
+ * the target of the switch.
* @return the result of interpreting the object as an instance of '<em>EObject</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject)
* @generated
@@ -287,4 +350,4 @@ public class AttributequantificationconstraintSwitch<T> extends Switch<T> { return null;
}
-} //AttributequantificationconstraintSwitch
+} // AttributequantificationconstraintSwitch
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintXMLProcessor.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintXMLProcessor.java index b69669d302a..0b3d521fc03 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintXMLProcessor.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintXMLProcessor.java @@ -13,6 +13,7 @@ import org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.Attri * This class contains helper methods to serialize and deserialize XML documents
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public class AttributequantificationconstraintXMLProcessor extends XMLProcessor {
@@ -21,17 +22,19 @@ public class AttributequantificationconstraintXMLProcessor extends XMLProcessor * Public constructor to instantiate the helper.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public AttributequantificationconstraintXMLProcessor() {
super((EPackage.Registry.INSTANCE));
AttributequantificationconstraintPackage.eINSTANCE.eClass();
}
-
+
/**
* Register for "*" and "xml" file extensions the AttributequantificationconstraintResourceFactoryImpl factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
@Override
@@ -44,4 +47,4 @@ public class AttributequantificationconstraintXMLProcessor extends XMLProcessor return registrations;
}
-} //AttributequantificationconstraintXMLProcessor
+} // AttributequantificationconstraintXMLProcessor
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintInternalBinding.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintInternalBinding.java index 4722a7dcd62..280e7d94bfa 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintInternalBinding.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintInternalBinding.java @@ -16,9 +16,9 @@ import org.eclipse.papyrus.eastadl.infrastructure.BehaviorConstraintInternalBind * <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintInternalBinding#getBindingThroughClampConnector <em>Binding Through Clamp Connector</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintInternalBinding#getBindingThroughFunctionConnector <em>Binding Through Function Connector</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintInternalBinding#getBindingThroughHardwareConnector <em>Binding Through Hardware Connector</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintInternalBinding#getBindingThroughClampConnector <em>Binding Through Clamp Connector</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintInternalBinding#getBindingThroughFunctionConnector <em>Binding Through Function Connector</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintInternalBinding#getBindingThroughHardwareConnector <em>Binding Through Hardware Connector</em>}</li>
* </ul>
* </p>
*
@@ -32,10 +32,10 @@ public interface BehaviorConstraintInternalBinding extends EObject { * The list contents are of type {@link org.eclipse.papyrus.eastadl.environment.ClampConnector}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Binding Through Clamp Connector</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Binding Through Clamp Connector</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Binding Through Clamp Connector</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintInternalBinding_BindingThroughClampConnector()
* @model ordered="false"
@@ -48,10 +48,10 @@ public interface BehaviorConstraintInternalBinding extends EObject { * The list contents are of type {@link org.eclipse.papyrus.eastadl.infrastructure.BehaviorConstraintInternalBinding_throughFunctionConnectorInstanceRef}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Binding Through Function Connector</em>' containment reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Binding Through Function Connector</em>' containment reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Binding Through Function Connector</em>' containment reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintInternalBinding_BindingThroughFunctionConnector()
* @model containment="true" ordered="false"
@@ -64,10 +64,10 @@ public interface BehaviorConstraintInternalBinding extends EObject { * The list contents are of type {@link org.eclipse.papyrus.eastadl.infrastructure.BehaviorConstraintInternalBinding_throughHardwareConnectorInstanceRef}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Binding Through Hardware Connector</em>' containment reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Binding Through Hardware Connector</em>' containment reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Binding Through Hardware Connector</em>' containment reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintInternalBinding_BindingThroughHardwareConnector()
* @model containment="true" ordered="false"
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintPrototype.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintPrototype.java index d0da5feb8a8..c31748a7369 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintPrototype.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintPrototype.java @@ -17,12 +17,12 @@ import org.eclipse.papyrus.eastadl.structure.vehiclefeaturemodeling.VehicleFeatu * <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getInstantiationVariable <em>Instantiation Variable</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getTargetVehicleFeatureElement <em>Target Vehicle Feature Element</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getType <em>Type</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getFunctionTarget <em>Function Target</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getHardwareComponentTarget <em>Hardware Component Target</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getErrorModelTarget <em>Error Model Target</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getInstantiationVariable <em>Instantiation Variable</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getTargetVehicleFeatureElement <em>Target Vehicle Feature Element</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getType <em>Type</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getFunctionTarget <em>Function Target</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getHardwareComponentTarget <em>Hardware Component Target</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getErrorModelTarget <em>Error Model Target</em>}</li>
* </ul>
* </p>
*
@@ -36,10 +36,10 @@ public interface BehaviorConstraintPrototype extends TraceableSpecification { * The list contents are of type {@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintInternalBinding}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Instantiation Variable</em>' reference isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Instantiation Variable</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Instantiation Variable</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintPrototype_InstantiationVariable()
* @model ordered="false"
@@ -52,10 +52,10 @@ public interface BehaviorConstraintPrototype extends TraceableSpecification { * The list contents are of type {@link org.eclipse.papyrus.eastadl.structure.vehiclefeaturemodeling.VehicleFeature}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Target Vehicle Feature Element</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Target Vehicle Feature Element</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Target Vehicle Feature Element</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintPrototype_TargetVehicleFeatureElement()
* @model ordered="false"
@@ -67,10 +67,10 @@ public interface BehaviorConstraintPrototype extends TraceableSpecification { * Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Type</em>' reference isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Type</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Type</em>' reference.
* @see #setType(BehaviorConstraintType)
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintPrototype_Type()
@@ -83,7 +83,9 @@ public interface BehaviorConstraintPrototype extends TraceableSpecification { * Sets the value of the '{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
- * @param value the new value of the '<em>Type</em>' reference.
+ *
+ * @param value
+ * the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
@@ -94,10 +96,10 @@ public interface BehaviorConstraintPrototype extends TraceableSpecification { * The list contents are of type {@link org.eclipse.papyrus.eastadl.infrastructure.BehaviorConstraintPrototype_functionTargetInstanceRef}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Function Target</em>' containment reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Function Target</em>' containment reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Function Target</em>' containment reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintPrototype_FunctionTarget()
* @model containment="true" ordered="false"
@@ -110,10 +112,10 @@ public interface BehaviorConstraintPrototype extends TraceableSpecification { * The list contents are of type {@link org.eclipse.papyrus.eastadl.infrastructure.BehaviorConstraintPrototype_hardwareComponentTargetInstanceRef}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Hardware Component Target</em>' containment reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Hardware Component Target</em>' containment reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Hardware Component Target</em>' containment reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintPrototype_HardwareComponentTarget()
* @model containment="true" ordered="false"
@@ -126,10 +128,10 @@ public interface BehaviorConstraintPrototype extends TraceableSpecification { * The list contents are of type {@link org.eclipse.papyrus.eastadl.infrastructure.BehaviorConstraintPrototype_errorModelTargetInstanceRef}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Error Model Target</em>' containment reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Error Model Target</em>' containment reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Error Model Target</em>' containment reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintPrototype_ErrorModelTarget()
* @model containment="true" ordered="false"
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintTargetBinding.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintTargetBinding.java index 7421417c421..67aa46921b6 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintTargetBinding.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintTargetBinding.java @@ -20,14 +20,14 @@ import org.eclipse.papyrus.eastadl.structure.vehiclefeaturemodeling.VehicleFeatu * <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getBehaviorConstraintType <em>Behavior Constraint Type</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getTargetedVehicleFeature <em>Targeted Vehicle Feature</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getTargetedFunctionType <em>Targeted Function Type</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getConstrainedErrorModel <em>Constrained Error Model</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getTargetedHardwareComponentType <em>Targeted Hardware Component Type</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getConstrainedFunctionTriggering <em>Constrained Function Triggering</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getConstrainedModeBehavior <em>Constrained Mode Behavior</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getConstrainedFunctionBehavior <em>Constrained Function Behavior</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getBehaviorConstraintType <em>Behavior Constraint Type</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getTargetedVehicleFeature <em>Targeted Vehicle Feature</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getTargetedFunctionType <em>Targeted Function Type</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getConstrainedErrorModel <em>Constrained Error Model</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getTargetedHardwareComponentType <em>Targeted Hardware Component Type</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getConstrainedFunctionTriggering <em>Constrained Function Triggering</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getConstrainedModeBehavior <em>Constrained Mode Behavior</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getConstrainedFunctionBehavior <em>Constrained Function Behavior</em>}</li>
* </ul>
* </p>
*
@@ -40,10 +40,10 @@ public interface BehaviorConstraintTargetBinding extends Relationship { * Returns the value of the '<em><b>Behavior Constraint Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Behavior Constraint Type</em>' reference isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Behavior Constraint Type</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Behavior Constraint Type</em>' reference.
* @see #setBehaviorConstraintType(BehaviorConstraintType)
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintTargetBinding_BehaviorConstraintType()
@@ -56,7 +56,9 @@ public interface BehaviorConstraintTargetBinding extends Relationship { * Sets the value of the '{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintTargetBinding#getBehaviorConstraintType <em>Behavior Constraint Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
- * @param value the new value of the '<em>Behavior Constraint Type</em>' reference.
+ *
+ * @param value
+ * the new value of the '<em>Behavior Constraint Type</em>' reference.
* @see #getBehaviorConstraintType()
* @generated
*/
@@ -67,10 +69,10 @@ public interface BehaviorConstraintTargetBinding extends Relationship { * The list contents are of type {@link org.eclipse.papyrus.eastadl.structure.vehiclefeaturemodeling.VehicleFeature}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Targeted Vehicle Feature</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Targeted Vehicle Feature</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Targeted Vehicle Feature</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintTargetBinding_TargetedVehicleFeature()
* @model ordered="false"
@@ -83,10 +85,10 @@ public interface BehaviorConstraintTargetBinding extends Relationship { * The list contents are of type {@link org.eclipse.papyrus.eastadl.structure.functionmodeling.FunctionType}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Targeted Function Type</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Targeted Function Type</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Targeted Function Type</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintTargetBinding_TargetedFunctionType()
* @model ordered="false"
@@ -99,10 +101,10 @@ public interface BehaviorConstraintTargetBinding extends Relationship { * The list contents are of type {@link org.eclipse.papyrus.eastadl.dependability.errormodel.ErrorModelType}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Constrained Error Model</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Constrained Error Model</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Constrained Error Model</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintTargetBinding_ConstrainedErrorModel()
* @model ordered="false"
@@ -115,10 +117,10 @@ public interface BehaviorConstraintTargetBinding extends Relationship { * The list contents are of type {@link org.eclipse.papyrus.eastadl.structure.hardwaremodeling.HardwareComponentType}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Targeted Hardware Component Type</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Targeted Hardware Component Type</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Targeted Hardware Component Type</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintTargetBinding_TargetedHardwareComponentType()
* @model ordered="false"
@@ -131,10 +133,10 @@ public interface BehaviorConstraintTargetBinding extends Relationship { * The list contents are of type {@link org.eclipse.papyrus.eastadl.behavior.FunctionTrigger}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Constrained Function Triggering</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Constrained Function Triggering</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Constrained Function Triggering</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintTargetBinding_ConstrainedFunctionTriggering()
* @model ordered="false"
@@ -147,10 +149,10 @@ public interface BehaviorConstraintTargetBinding extends Relationship { * The list contents are of type {@link org.eclipse.papyrus.eastadl.behavior.Mode}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Constrained Mode Behavior</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Constrained Mode Behavior</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Constrained Mode Behavior</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintTargetBinding_ConstrainedModeBehavior()
* @model ordered="false"
@@ -163,10 +165,10 @@ public interface BehaviorConstraintTargetBinding extends Relationship { * The list contents are of type {@link org.eclipse.papyrus.eastadl.behavior.FunctionBehavior}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Constrained Function Behavior</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Constrained Function Behavior</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Constrained Function Behavior</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintTargetBinding_ConstrainedFunctionBehavior()
* @model ordered="false"
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintType.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintType.java index 8f4d913b7b8..d671be1fd61 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintType.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviorConstraintType.java @@ -16,12 +16,12 @@ import org.eclipse.papyrus.eastadl.infrastructure.elements.Context; * <p>
* The following features are supported:
* <ul>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintType#getSharedVariable <em>Shared Variable</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintType#getInterfaceVariable <em>Interface Variable</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintType#getPart <em>Part</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintType#getAttributeQuantificationconstraint <em>Attribute Quantificationconstraint</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintType#getTemporalConstraint <em>Temporal Constraint</em>}</li>
- * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintType#getComputationConstraint <em>Computation Constraint</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintType#getSharedVariable <em>Shared Variable</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintType#getInterfaceVariable <em>Interface Variable</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintType#getPart <em>Part</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintType#getAttributeQuantificationconstraint <em>Attribute Quantificationconstraint</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintType#getTemporalConstraint <em>Temporal Constraint</em>}</li>
+ * <li>{@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintType#getComputationConstraint <em>Computation Constraint</em>}</li>
* </ul>
* </p>
*
@@ -35,10 +35,10 @@ public interface BehaviorConstraintType extends Context { * The list contents are of type {@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintInternalBinding}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Shared Variable</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Shared Variable</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Shared Variable</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintType_SharedVariable()
* @model ordered="false"
@@ -51,10 +51,10 @@ public interface BehaviorConstraintType extends Context { * The list contents are of type {@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintParameter}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Interface Variable</em>' reference isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Interface Variable</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Interface Variable</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintType_InterfaceVariable()
* @model ordered="false"
@@ -67,10 +67,10 @@ public interface BehaviorConstraintType extends Context { * The list contents are of type {@link org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviorConstraintPrototype}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Part</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Part</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Part</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintType_Part()
* @model ordered="false"
@@ -83,10 +83,10 @@ public interface BehaviorConstraintType extends Context { * The list contents are of type {@link org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Attribute Quantificationconstraint</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Attribute Quantificationconstraint</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Attribute Quantificationconstraint</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintType_AttributeQuantificationconstraint()
* @model ordered="false"
@@ -99,10 +99,10 @@ public interface BehaviorConstraintType extends Context { * The list contents are of type {@link org.eclipse.papyrus.eastadl.annex.temporalconstraint.TemporalConstraint}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Temporal Constraint</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Temporal Constraint</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Temporal Constraint</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintType_TemporalConstraint()
* @model ordered="false"
@@ -115,10 +115,10 @@ public interface BehaviorConstraintType extends Context { * The list contents are of type {@link org.eclipse.papyrus.eastadl.annex.computationconstraint.ComputationConstraint}.
* <!-- begin-user-doc -->
* <p>
- * If the meaning of the '<em>Computation Constraint</em>' reference list isn't clear,
- * there really should be more of a description here...
+ * If the meaning of the '<em>Computation Constraint</em>' reference list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
+ *
* @return the value of the '<em>Computation Constraint</em>' reference list.
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage#getBehaviorConstraintType_ComputationConstraint()
* @model ordered="false"
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviordescriptionFactory.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviordescriptionFactory.java index 0ed2fd61554..5d5c629c27c 100644 --- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviordescriptionFactory.java +++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/behaviordescription/BehaviordescriptionFactory.java @@ -9,6 +9,7 @@ import org.eclipse.emf.ecore.EFactory; * The <b>Factory</b> for the model.
* It provides a create method for each non-abstract class of the model.
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.behaviordescription.BehaviordescriptionPackage
* @generated
*/
@@ -17,6 +18,7 @@ public interface BehaviordescriptionFactory extends EFactory { * The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
BehaviordescriptionFactory eINSTANCE = org.eclipse.papyrus.eastadl.annex.behaviordescription.impl.BehaviordescriptionFactoryImpl.init();
@@ -25,6 +27,7 @@ public interface BehaviordescriptionFactory extends EFactory { * Returns a new object of class '<em>Behavior Constraint Binding Attribute</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return a new object of class '<em>Behavior Constraint Binding Attribute</em>'.
* @generated
*/
@@ -34,6 +37,7 @@ public interface BehaviordescriptionFactory extends EFactory { * Returns a new object of class '<em>Behavior Constraint Binding Event</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return a new object of class '<em>Behavior Constraint Binding Event</em>'.
* @generated
*/
@@ -43,6 +47,7 @@ public interface BehaviordescriptionFactory extends EFactory { * Returns a new object of class '<em>Behavior Constraint Prototype</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return a new object of class '<em>Behavior Constraint Prototype</em>'.
* @generated
*/
@@ -52,6 +57,7 @@ public interface BehaviordescriptionFactory extends EFactory { * Returns a new object of class '<em>Behavior Constraint Type</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @return a new object of class '<em>Behavior Constraint Type</em>'.
* @generated
*/
@@ -61,6 +67,7 @@ public interface BehaviordescriptionFactory extends EFactory { * Returns a new object of class '<em>Behavior Constraint Target Binding</em>'.
* <!-- begin-user-doc -->
* <!-- end |