public class ProtocolAdapterFactory
extends org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
createXXX method for each class of the
model.
ProtocolPackage| Modifier and Type | Field and Description |
|---|---|
protected static ProtocolPackage |
modelPackage
The cached model package.
|
protected ProtocolSwitch<org.eclipse.emf.common.notify.Adapter> |
modelSwitch
The switch that delegates to the
createXXX methods. |
| Constructor and Description |
|---|
ProtocolAdapterFactory()
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 |
createAttributeAdapter()
Creates a new adapter for an object of class '
Attribute'. |
org.eclipse.emf.common.notify.Adapter |
createAttributeStructureAdapter()
Creates a new adapter for an object of class '
Attribute Structure'. |
org.eclipse.emf.common.notify.Adapter |
createBooleanAttributeAdapter()
Creates a new adapter for an object of class '
Boolean Attribute'. |
org.eclipse.emf.common.notify.Adapter |
createDocumentedElementAdapter()
Creates a new adapter for an object of class '
Documented Element'. |
org.eclipse.emf.common.notify.Adapter |
createEnumAdapter()
Creates a new adapter for an object of class '
Enum'. |
org.eclipse.emf.common.notify.Adapter |
createEnumAttributeAdapter()
Creates a new adapter for an object of class '
Enum Attribute'. |
org.eclipse.emf.common.notify.Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
org.eclipse.emf.common.notify.Adapter |
createFloatAttributeAdapter()
Creates a new adapter for an object of class '
Float Attribute'. |
org.eclipse.emf.common.notify.Adapter |
createIntegerAttributeAdapter()
Creates a new adapter for an object of class '
Integer Attribute'. |
org.eclipse.emf.common.notify.Adapter |
createInterfaceAdapter()
Creates a new adapter for an object of class '
Interface'. |
org.eclipse.emf.common.notify.Adapter |
createLongAttributeAdapter()
Creates a new adapter for an object of class '
Long Attribute'. |
org.eclipse.emf.common.notify.Adapter |
createMessageAdapter()
Creates a new adapter for an object of class '
Message'. |
org.eclipse.emf.common.notify.Adapter |
createPropertiesAttributeAdapter()
Creates a new adapter for an object of class '
Properties Attribute'. |
org.eclipse.emf.common.notify.Adapter |
createProtocolAdapter()
Creates a new adapter for an object of class '
Protocol'. |
org.eclipse.emf.common.notify.Adapter |
createStringAttributeAdapter()
Creates a new adapter for an object of class '
String Attribute'. |
org.eclipse.emf.common.notify.Adapter |
createStructureAdapter()
Creates a new adapter for an object of class '
Structure'. |
org.eclipse.emf.common.notify.Adapter |
createStructureAttributeAdapter()
Creates a new adapter for an object of class '
Structure Attribute'. |
org.eclipse.emf.common.notify.Adapter |
createVariantAttributeAdapter()
Creates a new adapter for an object of class '
Variant Attribute'. |
org.eclipse.emf.common.notify.Adapter |
createVariantMapAttributeAdapter()
Creates a new adapter for an object of class '
Variant Map Attribute'. |
boolean |
isFactoryForType(Object object)
Returns whether this factory is applicable for the type of the object.
|
protected static ProtocolPackage modelPackage
protected ProtocolSwitch<org.eclipse.emf.common.notify.Adapter> modelSwitch
createXXX methods.
public ProtocolAdapterFactory()
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 createMessageAdapter()
Message'.
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.
Messagepublic org.eclipse.emf.common.notify.Adapter createAttributeAdapter()
Attribute'.
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.
Attributepublic org.eclipse.emf.common.notify.Adapter createProtocolAdapter()
Protocol'.
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.
Protocolpublic org.eclipse.emf.common.notify.Adapter createStructureAdapter()
Structure'.
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.
Structurepublic org.eclipse.emf.common.notify.Adapter createStringAttributeAdapter()
String Attribute'.
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.
StringAttributepublic org.eclipse.emf.common.notify.Adapter createBooleanAttributeAdapter()
Boolean Attribute'.
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.
BooleanAttributepublic org.eclipse.emf.common.notify.Adapter createStructureAttributeAdapter()
Structure Attribute'.
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.
StructureAttributepublic org.eclipse.emf.common.notify.Adapter createVariantAttributeAdapter()
Variant Attribute'.
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.
VariantAttributepublic org.eclipse.emf.common.notify.Adapter createIntegerAttributeAdapter()
Integer Attribute'.
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.
IntegerAttributepublic org.eclipse.emf.common.notify.Adapter createLongAttributeAdapter()
Long Attribute'.
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.
LongAttributepublic org.eclipse.emf.common.notify.Adapter createFloatAttributeAdapter()
Float Attribute'.
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.
FloatAttributepublic org.eclipse.emf.common.notify.Adapter createVariantMapAttributeAdapter()
Variant Map Attribute'.
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.
VariantMapAttributepublic org.eclipse.emf.common.notify.Adapter createPropertiesAttributeAdapter()
Properties Attribute'.
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.
PropertiesAttributepublic org.eclipse.emf.common.notify.Adapter createEnumAdapter()
Enum'.
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.
Enumpublic org.eclipse.emf.common.notify.Adapter createEnumAttributeAdapter()
Enum Attribute'.
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.
EnumAttributepublic org.eclipse.emf.common.notify.Adapter createInterfaceAdapter()
Interface'.
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.
Interfacepublic org.eclipse.emf.common.notify.Adapter createAttributeStructureAdapter()
Attribute Structure'.
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.
AttributeStructurepublic org.eclipse.emf.common.notify.Adapter createDocumentedElementAdapter()
Documented 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.
DocumentedElementpublic org.eclipse.emf.common.notify.Adapter createEObjectAdapter()
Copyright © 2016 Eclipse NeoSCADA Project. All rights reserved.