public class ValuesAdapterFactory
extends AdapterFactoryImpl
createXXX
method for each class of the model.
ValuesPackage
Modifier and Type | Field and Description |
---|---|
protected static ValuesPackage |
modelPackage
The cached model package.
|
protected ValuesSwitch<Adapter> |
modelSwitch
The switch that delegates to the
createXXX methods. |
Constructor and Description |
---|
ValuesAdapterFactory()
Creates an instance of the adapter factory.
|
Modifier and Type | Method and Description |
---|---|
Adapter |
createAdapter(Notifier target)
Creates an adapter for the
target . |
Adapter |
createArgumentAdapter()
Creates a new adapter for an object of class '
Argument '. |
Adapter |
createArrayElementAdapter()
Creates a new adapter for an object of class '
Array Element '. |
Adapter |
createArrayValueAdapter()
Creates a new adapter for an object of class '
Array Value '. |
Adapter |
createColladaAdapter()
Creates a new adapter for an object of class '
Collada '. |
Adapter |
createCompositeAdapter()
Creates a new adapter for an object of class '
Composite '. |
Adapter |
createConnectionAdapter()
Creates a new adapter for an object of class '
Connection '. |
Adapter |
createCylinderAdapter()
Creates a new adapter for an object of class '
Cylinder '. |
Adapter |
createDynamicsAdapter()
Creates a new adapter for an object of class '
Dynamics '. |
Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
Adapter |
createExpressionAdapter()
Creates a new adapter for an object of class '
Expression '. |
Adapter |
createFunctionAdapter()
Creates a new adapter for an object of class '
Function '. |
Adapter |
createFunctionPlotAdapter()
Creates a new adapter for an object of class '
Function Plot '. |
Adapter |
createHTMLAdapter()
Creates a new adapter for an object of class '
HTML '. |
Adapter |
createImageAdapter()
Creates a new adapter for an object of class '
Image '. |
Adapter |
createImportValueAdapter()
Creates a new adapter for an object of class '
Import Value '. |
Adapter |
createISynchableAdapter()
Creates a new adapter for an object of class '
ISynchable '. |
Adapter |
createMDTimeSeriesAdapter()
Creates a new adapter for an object of class '
MD Time Series '. |
Adapter |
createMetadataValueAdapter()
Creates a new adapter for an object of class '
Metadata Value '. |
Adapter |
createNodeAdapter()
Creates a new adapter for an object of class '
Node '. |
Adapter |
createOBJAdapter()
Creates a new adapter for an object of class '
OBJ '. |
Adapter |
createParticlesAdapter()
Creates a new adapter for an object of class '
Particles '. |
Adapter |
createPhysicalQuantityAdapter()
Creates a new adapter for an object of class '
Physical Quantity '. |
Adapter |
createPointAdapter()
Creates a new adapter for an object of class '
Point '. |
Adapter |
createPointerAdapter()
Creates a new adapter for an object of class '
Pointer '. |
Adapter |
createPointerElementAdapter()
Creates a new adapter for an object of class '
Pointer Element '. |
Adapter |
createQuantityAdapter()
Creates a new adapter for an object of class '
Quantity '. |
Adapter |
createSkeletonAnimationAdapter()
Creates a new adapter for an object of class '
Skeleton Animation '. |
Adapter |
createSkeletonTransformationAdapter()
Creates a new adapter for an object of class '
Skeleton Transformation '. |
Adapter |
createSphereAdapter()
Creates a new adapter for an object of class '
Sphere '. |
Adapter |
createStringToValueMapAdapter()
Creates a new adapter for an object of class '
String To Value Map '. |
Adapter |
createTextAdapter()
Creates a new adapter for an object of class '
Text '. |
Adapter |
createTimeSeriesAdapter()
Creates a new adapter for an object of class '
Time Series '. |
Adapter |
createUnitAdapter()
Creates a new adapter for an object of class '
Unit '. |
Adapter |
createURLAdapter()
Creates a new adapter for an object of class '
URL '. |
Adapter |
createValueAdapter()
Creates a new adapter for an object of class '
Value '. |
Adapter |
createVisualGroupAdapter()
Creates a new adapter for an object of class '
Visual Group '. |
Adapter |
createVisualGroupElementAdapter()
Creates a new adapter for an object of class '
Visual Group Element '. |
Adapter |
createVisualValueAdapter()
Creates a new adapter for an object of class '
Visual Value '. |
boolean |
isFactoryForType(java.lang.Object object)
Returns whether this factory is applicable for the type of the object.
|
protected static ValuesPackage modelPackage
protected ValuesSwitch<Adapter> modelSwitch
createXXX
methods.
public ValuesAdapterFactory()
public boolean isFactoryForType(java.lang.Object object)
true
if the object is either the model's package or is an instance object of the model.
public Adapter createAdapter(Notifier target)
target
.
target
- the object to adapt.target
.public 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.
Value
public Adapter createCompositeAdapter()
Composite
'.
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.
Composite
public Adapter createStringToValueMapAdapter()
String To Value Map
'.
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.
Map.Entry
public Adapter createQuantityAdapter()
Quantity
'.
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.
Quantity
public Adapter createPhysicalQuantityAdapter()
Physical Quantity
'.
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.
PhysicalQuantity
public Adapter createUnitAdapter()
Unit
'.
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.
Unit
public Adapter createTimeSeriesAdapter()
Time Series
'.
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.
TimeSeries
public Adapter createMDTimeSeriesAdapter()
MD Time Series
'.
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.
MDTimeSeries
public Adapter createMetadataValueAdapter()
Metadata 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.
MetadataValue
public Adapter createTextAdapter()
Text
'.
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.
Text
public Adapter createURLAdapter()
URL
'.
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.
URL
public Adapter createHTMLAdapter()
HTML
'.
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.
HTML
public Adapter createPointerAdapter()
Pointer
'.
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.
Pointer
public Adapter createPointerElementAdapter()
Pointer Element
'.
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.
PointerElement
public Adapter createPointAdapter()
Point
'.
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.
Point
public Adapter createDynamicsAdapter()
Dynamics
'.
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.
Dynamics
public Adapter createFunctionPlotAdapter()
Function Plot
'.
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.
FunctionPlot
public Adapter createFunctionAdapter()
Function
'.
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.
Function
public Adapter createArgumentAdapter()
Argument
'.
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.
Argument
public 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.
Expression
public Adapter createVisualValueAdapter()
Visual 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.
VisualValue
public Adapter createColladaAdapter()
Collada
'.
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.
Collada
public Adapter createOBJAdapter()
OBJ
'.
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.
OBJ
public Adapter createSphereAdapter()
Sphere
'.
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.
Sphere
public Adapter createCylinderAdapter()
Cylinder
'.
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.
Cylinder
public Adapter createParticlesAdapter()
Particles
'.
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.
Particles
public Adapter createSkeletonAnimationAdapter()
Skeleton Animation
'.
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.
SkeletonAnimation
public Adapter createSkeletonTransformationAdapter()
Skeleton Transformation
'.
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.
SkeletonTransformation
public Adapter createVisualGroupElementAdapter()
Visual Group Element
'.
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.
VisualGroupElement
public Adapter createVisualGroupAdapter()
Visual Group
'.
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.
VisualGroup
public Adapter createConnectionAdapter()
Connection
'.
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.
Connection
public Adapter createArrayElementAdapter()
Array Element
'.
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.
ArrayElement
public Adapter createArrayValueAdapter()
Array 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.
ArrayValue
public Adapter createImageAdapter()
Image
'.
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.
Image
public Adapter createImportValueAdapter()
Import 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.
ImportValue
public Adapter createISynchableAdapter()
ISynchable
'.
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.
ISynchable
public Adapter createNodeAdapter()
Node
'.
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.
Node
public Adapter createEObjectAdapter()