
public class ExpressionsAdapterFactory
extends org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
createXXX method for each class of the model.
ExpressionsPackage| Modifier and Type | Field and Description |
|---|---|
protected static ExpressionsPackage |
modelPackage
The cached model package
|
protected ExpressionsSwitch<org.eclipse.emf.common.notify.Adapter> |
modelSwitch
The switch that delegates to the
createXXX methods |
| Constructor and Description |
|---|
ExpressionsAdapterFactory()
Creates an instance of the adapter factory
|
| Modifier and Type | Method and Description |
|---|---|
org.eclipse.emf.common.notify.Adapter |
createAccessAdapter()
Creates a new adapter for an object of class '
Access' |
org.eclipse.emf.common.notify.Adapter |
createAdapter(org.eclipse.emf.common.notify.Notifier target)
Creates an adapter for the
target |
org.eclipse.emf.common.notify.Adapter |
createBooleanValueAdapter()
Creates a new adapter for an object of class '
Boolean Value' |
org.eclipse.emf.common.notify.Adapter |
createByteValueAdapter()
Creates a new adapter for an object of class '
Byte Value' |
org.eclipse.emf.common.notify.Adapter |
createCharValueAdapter()
Creates a new adapter for an object of class '
Char Value' |
org.eclipse.emf.common.notify.Adapter |
createContainedObjectAdapter()
Creates a new adapter for an object of class '
Contained Object' |
org.eclipse.emf.common.notify.Adapter |
createContextAccessAdapter()
Creates a new adapter for an object of class '
Context Access' |
org.eclipse.emf.common.notify.Adapter |
createDoubleValueAdapter()
Creates a new adapter for an object of class '
Double Value' |
org.eclipse.emf.common.notify.Adapter |
createEObjectAdapter()
Creates a new adapter for the default case
|
org.eclipse.emf.common.notify.Adapter |
createExpressionAdapter()
Creates a new adapter for an object of class '
Expression' |
org.eclipse.emf.common.notify.Adapter |
createFloatValueAdapter()
Creates a new adapter for an object of class '
Float Value' |
org.eclipse.emf.common.notify.Adapter |
createFunctionInvocationAdapter()
Creates a new adapter for an object of class '
Function Invocation' |
org.eclipse.emf.common.notify.Adapter |
createIntValueAdapter()
Creates a new adapter for an object of class '
Int Value' |
org.eclipse.emf.common.notify.Adapter |
createInvocationAdapter()
Creates a new adapter for an object of class '
Invocation' |
org.eclipse.emf.common.notify.Adapter |
createLinkedExpressionAdapter()
Creates a new adapter for an object of class '
Linked Expression' |
org.eclipse.emf.common.notify.Adapter |
createLinkedObjectAdapter()
Creates a new adapter for an object of class '
Linked Object' |
org.eclipse.emf.common.notify.Adapter |
createListConstructionAdapter()
Creates a new adapter for an object of class '
List Construction' |
org.eclipse.emf.common.notify.Adapter |
createLongValueAdapter()
Creates a new adapter for an object of class '
Long Value' |
org.eclipse.emf.common.notify.Adapter |
createMemberAccessAdapter()
Creates a new adapter for an object of class '
Member Access' |
org.eclipse.emf.common.notify.Adapter |
createMemberInvocationAdapter()
Creates a new adapter for an object of class '
Member Invocation' |
org.eclipse.emf.common.notify.Adapter |
createShortValueAdapter()
Creates a new adapter for an object of class '
Short Value' |
org.eclipse.emf.common.notify.Adapter |
createStaticAccessAdapter()
Creates a new adapter for an object of class '
Static Access' |
org.eclipse.emf.common.notify.Adapter |
createStringValueAdapter()
Creates a new adapter for an object of class '
String Value' |
org.eclipse.emf.common.notify.Adapter |
createValueAdapter()
Creates a new adapter for an object of class '
Value' |
boolean |
isFactoryForType(Object object)
Returns whether this factory is applicable for the type of the object
|
protected static ExpressionsPackage modelPackage
protected ExpressionsSwitch<org.eclipse.emf.common.notify.Adapter> modelSwitch
createXXX methods.
public ExpressionsAdapterFactory()
public boolean isFactoryForType(Object object)
true if the object is either the model's package or is an instance object of the model.
isFactoryForType in interface org.eclipse.emf.common.notify.AdapterFactoryisFactoryForType in class org.eclipse.emf.common.notify.impl.AdapterFactoryImplpublic org.eclipse.emf.common.notify.Adapter createAdapter(org.eclipse.emf.common.notify.Notifier target)
target.
createAdapter in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpltarget - the object to adapt.target.public org.eclipse.emf.common.notify.Adapter createExpressionAdapter()
Expression'.
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.
Expressionpublic org.eclipse.emf.common.notify.Adapter createValueAdapter()
Value'.
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.
Valuepublic org.eclipse.emf.common.notify.Adapter createBooleanValueAdapter()
Boolean Value'.
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.
BooleanValuepublic org.eclipse.emf.common.notify.Adapter createByteValueAdapter()
Byte Value'.
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.
ByteValuepublic org.eclipse.emf.common.notify.Adapter createShortValueAdapter()
Short Value'.
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.
ShortValuepublic org.eclipse.emf.common.notify.Adapter createIntValueAdapter()
Int Value'.
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.
IntValuepublic org.eclipse.emf.common.notify.Adapter createLongValueAdapter()
Long Value'.
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.
LongValuepublic org.eclipse.emf.common.notify.Adapter createFloatValueAdapter()
Float Value'.
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.
FloatValuepublic org.eclipse.emf.common.notify.Adapter createDoubleValueAdapter()
Double Value'.
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.
DoubleValuepublic org.eclipse.emf.common.notify.Adapter createCharValueAdapter()
Char Value'.
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.
CharValuepublic org.eclipse.emf.common.notify.Adapter createStringValueAdapter()
String Value'.
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.
StringValuepublic org.eclipse.emf.common.notify.Adapter createInvocationAdapter()
Invocation'.
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.
Invocationpublic org.eclipse.emf.common.notify.Adapter createFunctionInvocationAdapter()
Function Invocation'.
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.
FunctionInvocationpublic org.eclipse.emf.common.notify.Adapter createMemberInvocationAdapter()
Member Invocation'.
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.
MemberInvocationpublic org.eclipse.emf.common.notify.Adapter createAccessAdapter()
Access'.
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.
Accesspublic org.eclipse.emf.common.notify.Adapter createStaticAccessAdapter()
Static Access'.
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.
StaticAccesspublic org.eclipse.emf.common.notify.Adapter createMemberAccessAdapter()
Member Access'.
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.
MemberAccesspublic org.eclipse.emf.common.notify.Adapter createContextAccessAdapter()
Context Access'.
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.
ContextAccesspublic org.eclipse.emf.common.notify.Adapter createContainedObjectAdapter()
Contained Object'.
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.
ContainedObjectpublic org.eclipse.emf.common.notify.Adapter createLinkedObjectAdapter()
Linked Object'.
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.
LinkedObjectpublic org.eclipse.emf.common.notify.Adapter createLinkedExpressionAdapter()
Linked Expression'.
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.
LinkedExpressionpublic org.eclipse.emf.common.notify.Adapter createListConstructionAdapter()
List Construction'.
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.
ListConstructionpublic org.eclipse.emf.common.notify.Adapter createEObjectAdapter()
Copyright (c) 2011-2014 Eike Stepper (Berlin, Germany) and others.