|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.eclipse.emf.common.notify.impl.AdapterFactoryImpl
net.ogdf.ogml.util.OgmlAdapterFactory
public class OgmlAdapterFactory
The Adapter Factory for the model.
It provides an adapter createXXX
method for each class of the model.
OgmlPackage
Field Summary | |
---|---|
protected static OgmlPackage |
modelPackage
The cached model package. |
protected OgmlSwitch<Adapter> |
modelSwitch
The switch that delegates to the createXXX methods. |
Constructor Summary | |
---|---|
OgmlAdapterFactory()
Creates an instance of the adapter factory. |
Method Summary | |
---|---|
Adapter |
createAdapter(Notifier target)
Creates an adapter for the target . |
Adapter |
createBooleanTypeAdapter()
Creates a new adapter for an object of class ' Boolean Type '. |
Adapter |
createBoolTypeAdapter()
Creates a new adapter for an object of class ' Bool Type '. |
Adapter |
createComposedTypeAdapter()
Creates a new adapter for an object of class ' Composed Type '. |
Adapter |
createConstraintsTypeAdapter()
Creates a new adapter for an object of class ' Constraints Type '. |
Adapter |
createDataTypeAdapter()
Creates a new adapter for an object of class ' Data Type '. |
Adapter |
createDocumentRootAdapter()
Creates a new adapter for an object of class ' Document Root '. |
Adapter |
createEdgeConstraintTypeAdapter()
Creates a new adapter for an object of class ' Edge Constraint Type '. |
Adapter |
createEdgeLayoutTypeAdapter()
Creates a new adapter for an object of class ' Edge Layout Type '. |
Adapter |
createEdgeStyleTemplateTypeAdapter()
Creates a new adapter for an object of class ' Edge Style Template Type '. |
Adapter |
createEdgeTypeAdapter()
Creates a new adapter for an object of class ' Edge Type '. |
Adapter |
createEndpointTypeAdapter()
Creates a new adapter for an object of class ' Endpoint Type '. |
Adapter |
createEObjectAdapter()
Creates a new adapter for the default case. |
Adapter |
createFillTypeAdapter()
Creates a new adapter for an object of class ' Fill Type '. |
Adapter |
createFontTypeAdapter()
Creates a new adapter for an object of class ' Font Type '. |
Adapter |
createGraphStyleTypeAdapter()
Creates a new adapter for an object of class ' Graph Style Type '. |
Adapter |
createGraphTypeAdapter()
Creates a new adapter for an object of class ' Graph Type '. |
Adapter |
createIntTypeAdapter()
Creates a new adapter for an object of class ' Int Type '. |
Adapter |
createKeysTypeAdapter()
Creates a new adapter for an object of class ' Keys Type '. |
Adapter |
createKeyTypeAdapter()
Creates a new adapter for an object of class ' Key Type '. |
Adapter |
createKeyValueTypeAdapter()
Creates a new adapter for an object of class ' Key Value Type '. |
Adapter |
createLabelConstraintTypeAdapter()
Creates a new adapter for an object of class ' Label Constraint Type '. |
Adapter |
createLabelLayoutTypeAdapter()
Creates a new adapter for an object of class ' Label Layout Type '. |
Adapter |
createLabelStyleTemplateTypeAdapter()
Creates a new adapter for an object of class ' Label Style Template Type '. |
Adapter |
createLabelTypeAdapter()
Creates a new adapter for an object of class ' Label Type '. |
Adapter |
createLayoutTypeAdapter()
Creates a new adapter for an object of class ' Layout Type '. |
Adapter |
createLineStyleTypeAdapter()
Creates a new adapter for an object of class ' Line Style Type '. |
Adapter |
createLineTypeAdapter()
Creates a new adapter for an object of class ' Line Type '. |
Adapter |
createLocationTypeAdapter()
Creates a new adapter for an object of class ' Location Type '. |
Adapter |
createNodeConstraintTypeAdapter()
Creates a new adapter for an object of class ' Node Constraint Type '. |
Adapter |
createNodeLayoutTypeAdapter()
Creates a new adapter for an object of class ' Node Layout Type '. |
Adapter |
createNodeStyleTemplateTypeAdapter()
Creates a new adapter for an object of class ' Node Style Template Type '. |
Adapter |
createNodeTypeAdapter()
Creates a new adapter for an object of class ' Node Type '. |
Adapter |
createNumberTypeAdapter()
Creates a new adapter for an object of class ' Number Type '. |
Adapter |
createOgmlTypeAdapter()
Creates a new adapter for an object of class ' Type '. |
Adapter |
createPointTypeAdapter()
Creates a new adapter for an object of class ' Point Type '. |
Adapter |
createSegmentTypeAdapter()
Creates a new adapter for an object of class ' Segment Type '. |
Adapter |
createShapeType1Adapter()
Creates a new adapter for an object of class ' Shape Type1 '. |
Adapter |
createSourceStyleTypeAdapter()
Creates a new adapter for an object of class ' Source Style Type '. |
Adapter |
createSourceTargetTypeAdapter()
Creates a new adapter for an object of class ' Source Target Type '. |
Adapter |
createStructureTypeAdapter()
Creates a new adapter for an object of class ' Structure Type '. |
Adapter |
createStylesTypeAdapter()
Creates a new adapter for an object of class ' Styles Type '. |
Adapter |
createStyleTemplatesTypeAdapter()
Creates a new adapter for an object of class ' Style Templates Type '. |
Adapter |
createTargetStyleTypeAdapter()
Creates a new adapter for an object of class ' Target Style Type '. |
Adapter |
createTemplateTypeAdapter()
Creates a new adapter for an object of class ' Template Type '. |
Adapter |
createTextTypeAdapter()
Creates a new adapter for an object of class ' Text Type '. |
Adapter |
createUriTypeAdapter()
Creates a new adapter for an object of class ' Uri Type '. |
boolean |
isFactoryForType(Object object)
Returns whether this factory is applicable for the type of the object. |
Methods inherited from class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl |
---|
adapt, adapt, adaptAllNew, adaptNew, associate, createAdapter, resolve |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected static OgmlPackage modelPackage
protected OgmlSwitch<Adapter> modelSwitch
createXXX
methods.
Constructor Detail |
---|
public OgmlAdapterFactory()
Method Detail |
---|
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 AdapterFactory
isFactoryForType
in class AdapterFactoryImpl
public Adapter createAdapter(Notifier target)
target
.
createAdapter
in class AdapterFactoryImpl
target
- the object to adapt.
target
.public Adapter createBooleanTypeAdapter()
Boolean Type
'.
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.
BooleanType
public Adapter createBoolTypeAdapter()
Bool Type
'.
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.
BoolType
public Adapter createComposedTypeAdapter()
Composed Type
'.
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.
ComposedType
public Adapter createConstraintsTypeAdapter()
Constraints Type
'.
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.
ConstraintsType
public Adapter createDataTypeAdapter()
Data Type
'.
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.
DataType
public Adapter createDocumentRootAdapter()
Document Root
'.
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.
DocumentRoot
public Adapter createEdgeConstraintTypeAdapter()
Edge Constraint Type
'.
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.
EdgeConstraintType
public Adapter createEdgeLayoutTypeAdapter()
Edge Layout Type
'.
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.
EdgeLayoutType
public Adapter createEdgeStyleTemplateTypeAdapter()
Edge Style Template Type
'.
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.
EdgeStyleTemplateType
public Adapter createEdgeTypeAdapter()
Edge Type
'.
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.
EdgeType
public Adapter createEndpointTypeAdapter()
Endpoint Type
'.
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.
EndpointType
public Adapter createFillTypeAdapter()
Fill Type
'.
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.
FillType
public Adapter createFontTypeAdapter()
Font Type
'.
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.
FontType
public Adapter createGraphStyleTypeAdapter()
Graph Style Type
'.
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.
GraphStyleType
public Adapter createGraphTypeAdapter()
Graph Type
'.
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.
GraphType
public Adapter createIntTypeAdapter()
Int Type
'.
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.
IntType
public Adapter createKeysTypeAdapter()
Keys Type
'.
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.
KeysType
public Adapter createKeyTypeAdapter()
Key Type
'.
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.
KeyType
public Adapter createKeyValueTypeAdapter()
Key Value Type
'.
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.
KeyValueType
public Adapter createLabelConstraintTypeAdapter()
Label Constraint Type
'.
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.
LabelConstraintType
public Adapter createLabelLayoutTypeAdapter()
Label Layout Type
'.
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.
LabelLayoutType
public Adapter createLabelStyleTemplateTypeAdapter()
Label Style Template Type
'.
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.
LabelStyleTemplateType
public Adapter createLabelTypeAdapter()
Label Type
'.
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.
LabelType
public Adapter createLayoutTypeAdapter()
Layout Type
'.
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.
LayoutType
public Adapter createLineStyleTypeAdapter()
Line Style Type
'.
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.
LineStyleType
public Adapter createLineTypeAdapter()
Line Type
'.
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.
LineType
public Adapter createLocationTypeAdapter()
Location Type
'.
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.
LocationType
public Adapter createNodeConstraintTypeAdapter()
Node Constraint Type
'.
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.
NodeConstraintType
public Adapter createNodeLayoutTypeAdapter()
Node Layout Type
'.
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.
NodeLayoutType
public Adapter createNodeStyleTemplateTypeAdapter()
Node Style Template Type
'.
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.
NodeStyleTemplateType
public Adapter createNodeTypeAdapter()
Node Type
'.
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.
NodeType
public Adapter createNumberTypeAdapter()
Number Type
'.
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.
NumberType
public Adapter createOgmlTypeAdapter()
Type
'.
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.
OgmlType
public Adapter createPointTypeAdapter()
Point Type
'.
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.
PointType
public Adapter createSegmentTypeAdapter()
Segment Type
'.
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.
SegmentType
public Adapter createShapeType1Adapter()
Shape Type1
'.
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.
ShapeType1
public Adapter createSourceStyleTypeAdapter()
Source Style Type
'.
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.
SourceStyleType
public Adapter createSourceTargetTypeAdapter()
Source Target Type
'.
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.
SourceTargetType
public Adapter createStructureTypeAdapter()
Structure Type
'.
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.
StructureType
public Adapter createStylesTypeAdapter()
Styles Type
'.
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.
StylesType
public Adapter createStyleTemplatesTypeAdapter()
Style Templates Type
'.
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.
StyleTemplatesType
public Adapter createTargetStyleTypeAdapter()
Target Style Type
'.
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.
TargetStyleType
public Adapter createTemplateTypeAdapter()
Template Type
'.
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.
TemplateType
public Adapter createTextTypeAdapter()
Text Type
'.
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.
TextType
public Adapter createUriTypeAdapter()
Uri Type
'.
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.
UriType
public Adapter createEObjectAdapter()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |