public class RSAAdapterFactory
extends AdapterFactoryImpl
createXXX method for each class of the model.
RSAPackage| Modifier and Type | Field and Description |
|---|---|
protected static RSAPackage |
modelPackage
The cached model package.
|
protected RSASwitch<Adapter> |
modelSwitch
The switch that delegates to the
createXXX methods. |
| Constructor and Description |
|---|
RSAAdapterFactory()
Creates an instance of the adapter factory.
|
| Modifier and Type | Method and Description |
|---|---|
Adapter |
createAdapter(Notifier target)
Creates an adapter for the
target. |
Adapter |
createArrayAdapter()
Creates a new adapter for an object of class '
Array'. |
Adapter |
createDocumentRootAdapter()
Creates a new adapter for an object of class '
Document Root'. |
Adapter |
createEndpointDescriptionAdapter()
Creates a new adapter for an object of class '
Endpoint Description'. |
Adapter |
createEndpointDescriptionsAdapter()
Creates a new adapter for an object of class '
Endpoint Descriptions'. |
Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
Adapter |
createPropertyAdapter()
Creates a new adapter for an object of class '
Property'. |
Adapter |
createValueAdapter()
Creates a new adapter for an object of class '
Value'. |
Adapter |
createXmlTypeAdapter()
Creates a new adapter for an object of class '
Xml Type'. |
boolean |
isFactoryForType(java.lang.Object object)
Returns whether this factory is applicable for the type of the object.
|
protected static RSAPackage modelPackage
protected RSASwitch<Adapter> modelSwitch
createXXX methods.
public RSAAdapterFactory()
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 createArrayAdapter()
Array'.
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.
Arraypublic 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.
DocumentRootpublic Adapter createEndpointDescriptionsAdapter()
Endpoint Descriptions'.
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.
EndpointDescriptionspublic Adapter createEndpointDescriptionAdapter()
Endpoint Description'.
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.
EndpointDescriptionpublic Adapter createPropertyAdapter()
Property'.
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.
Propertypublic 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 Adapter createXmlTypeAdapter()
Xml 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.
XmlTypepublic Adapter createEObjectAdapter()