public class BusComponentsAdapterFactory extends AdapterFactoryImpl
createXXX
method for each class of the model.
BusComponentsPackage
Constructor and Description |
---|
BusComponentsAdapterFactory()
Creates an instance of the adapter factory.
|
Modifier and Type | Method and Description |
---|---|
Adapter |
createAdapter(Notifier target)
Creates an adapter for the
target . |
Adapter |
createBusBoxAdapter()
Creates a new adapter for an object of class '
Bus Box '. |
Adapter |
createBusCableAdapter()
Creates a new adapter for an object of class '
Bus Cable '. |
Adapter |
createBusMasterAdapter()
Creates a new adapter for an object of class '
Bus Master '. |
Adapter |
createBusSlaveAdapter()
Creates a new adapter for an object of class '
Bus Slave '. |
Adapter |
createCableAdapter()
Creates a new adapter for an object of class '
Cable '. |
Adapter |
createComponentAdapter()
Creates a new adapter for an object of class '
Component '. |
Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
Adapter |
createEtherCATBoxAdapter()
Creates a new adapter for an object of class '
Ether CAT Box '. |
Adapter |
createEtherCATCableAdapter()
Creates a new adapter for an object of class '
Ether CAT Cable '. |
Adapter |
createEtherCATMasterAdapter()
Creates a new adapter for an object of class '
Ether CAT Master '. |
Adapter |
createEtherCATSlaveAdapter()
Creates a new adapter for an object of class '
Ether CAT Slave '. |
Adapter |
createIdentifierAdapter()
Creates a new adapter for an object of class '
Identifier '. |
Adapter |
createProfibusDPBoxAdapter()
Creates a new adapter for an object of class '
Profibus DP Box '. |
Adapter |
createProfibusDPCableAdapter()
Creates a new adapter for an object of class '
Profibus DP Cable '. |
Adapter |
createProfibusDPMasterAdapter()
Creates a new adapter for an object of class '
Profibus DP Master '. |
Adapter |
createProfibusDPSlaveAdapter()
Creates a new adapter for an object of class '
Profibus DP Slave '. |
boolean |
isFactoryForType(Object object)
Returns whether this factory is applicable for the type of the object.
|
adapt, adapt, adaptAllNew, adaptNew
public BusComponentsAdapterFactory()
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 createBusBoxAdapter()
Bus Box
'.
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.
BusBox
public Adapter createBusMasterAdapter()
Bus Master
'.
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.
BusMaster
public Adapter createBusSlaveAdapter()
Bus Slave
'.
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.
BusSlave
public Adapter createBusCableAdapter()
Bus Cable
'.
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.
BusCable
public Adapter createProfibusDPBoxAdapter()
Profibus DP Box
'.
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.
ProfibusDPBox
public Adapter createProfibusDPMasterAdapter()
Profibus DP Master
'.
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.
ProfibusDPMaster
public Adapter createProfibusDPSlaveAdapter()
Profibus DP Slave
'.
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.
ProfibusDPSlave
public Adapter createProfibusDPCableAdapter()
Profibus DP Cable
'.
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.
ProfibusDPCable
public Adapter createEtherCATBoxAdapter()
Ether CAT Box
'.
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.
EtherCATBox
public Adapter createEtherCATMasterAdapter()
Ether CAT Master
'.
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.
EtherCATMaster
public Adapter createEtherCATSlaveAdapter()
Ether CAT Slave
'.
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.
EtherCATSlave
public Adapter createEtherCATCableAdapter()
Ether CAT Cable
'.
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.
EtherCATCable
public Adapter createIdentifierAdapter()
Identifier
'.
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.
Identifier
public Adapter createComponentAdapter()
Component
'.
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.
Component
public Adapter createCableAdapter()
Cable
'.
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.
Cable
public Adapter createEObjectAdapter()