public class AnnotationModelAdapterFactory
extends org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
createXXX
method for each class of the model.
AnnotationModelPackage
Modifier and Type | Field and Description |
---|---|
protected static AnnotationModelPackage |
modelPackage
The cached model package
|
protected AnnotationModelSwitch<org.eclipse.emf.common.notify.Adapter> |
modelSwitch
The switch that delegates to the
createXXX methods |
Constructor and Description |
---|
AnnotationModelAdapterFactory()
Creates an instance of the adapter factory
|
Modifier and Type | Method and Description |
---|---|
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 |
createAnnotatedObjectAdapter()
Creates a new adapter for an object of class '
Annotated Object ' |
org.eclipse.emf.common.notify.Adapter |
createAnnotationAdapter()
Creates a new adapter for an object of class '
Annotation ' |
org.eclipse.emf.common.notify.Adapter |
createAreaAdapter()
Creates a new adapter for an object of class '
Area ' |
org.eclipse.emf.common.notify.Adapter |
createEObjectAdapter()
Creates a new adapter for the default case
|
org.eclipse.emf.common.notify.Adapter |
createExpertAnnotationAdapter()
Creates a new adapter for an object of class '
Expert Annotation ' |
org.eclipse.emf.common.notify.Adapter |
createFileAnnotationAdapter()
Creates a new adapter for an object of class '
File Annotation ' |
org.eclipse.emf.common.notify.Adapter |
createPdfAnnotationAdapter()
Creates a new adapter for an object of class '
Pdf Annotation ' |
org.eclipse.emf.common.notify.Adapter |
createTxtAnnotationAdapter()
Creates a new adapter for an object of class '
Txt Annotation ' |
boolean |
isFactoryForType(java.lang.Object object)
Returns whether this factory is applicable for the type of the object
|
protected static AnnotationModelPackage modelPackage
protected AnnotationModelSwitch<org.eclipse.emf.common.notify.Adapter> modelSwitch
createXXX
methods.
public AnnotationModelAdapterFactory()
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.
isFactoryForType
in interface org.eclipse.emf.common.notify.AdapterFactory
isFactoryForType
in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
public org.eclipse.emf.common.notify.Adapter createAdapter(org.eclipse.emf.common.notify.Notifier target)
target
.
createAdapter
in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
target
- the object to adapt.target
.public org.eclipse.emf.common.notify.Adapter createFileAnnotationAdapter()
File Annotation
'.
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.
FileAnnotation
public org.eclipse.emf.common.notify.Adapter createAnnotatedObjectAdapter()
Annotated 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.
AnnotatedObject
public org.eclipse.emf.common.notify.Adapter createExpertAnnotationAdapter()
Expert Annotation
'.
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.
ExpertAnnotation
public org.eclipse.emf.common.notify.Adapter createAnnotationAdapter()
Annotation
'.
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.
Annotation
public org.eclipse.emf.common.notify.Adapter createTxtAnnotationAdapter()
Txt Annotation
'.
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.
TxtAnnotation
public org.eclipse.emf.common.notify.Adapter createPdfAnnotationAdapter()
Pdf Annotation
'.
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.
PdfAnnotation
public org.eclipse.emf.common.notify.Adapter createAreaAdapter()
Area
'.
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.
Area
public org.eclipse.emf.common.notify.Adapter createEObjectAdapter()