public class ComponentRepositoryAdapterFactory extends AdapterFactoryImpl
createXXX
method for each class of the model.
ComponentRepositoryPackage
Constructor and Description |
---|
ComponentRepositoryAdapterFactory()
Creates an instance of the adapter factory.
|
Modifier and Type | Method and Description |
---|---|
Adapter |
createAdapter(Notifier target)
Creates an adapter for the
target . |
Adapter |
createBistableCylinderAdapter()
Creates a new adapter for an object of class '
Bistable Cylinder '. |
Adapter |
createBottleSeperatorAdapter()
Creates a new adapter for an object of class '
Bottle Seperator '. |
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 |
createComponentRepositoryAdapter()
Creates a new adapter for an object of class '
Component Repository '. |
Adapter |
createCompressorAdapter()
Creates a new adapter for an object of class '
Compressor '. |
Adapter |
createControllerAdapter()
Creates a new adapter for an object of class '
Controller '. |
Adapter |
createConveyorBeltAdapter()
Creates a new adapter for an object of class '
Conveyor Belt '. |
Adapter |
createCornerAdapter()
Creates a new adapter for an object of class '
Corner '. |
Adapter |
createCylinderAdapter()
Creates a new adapter for an object of class '
Cylinder '. |
Adapter |
createCylinderPartAdapter()
Creates a new adapter for an object of class '
Cylinder Part '. |
Adapter |
createDispenserAdapter()
Creates a new adapter for an object of class '
Dispenser '. |
Adapter |
createElectronicPartAdapter()
Creates a new adapter for an object of class '
Electronic Part '. |
Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
Adapter |
createFrameAdapter()
Creates a new adapter for an object of class '
Frame '. |
Adapter |
createIdentifierAdapter()
Creates a new adapter for an object of class '
Identifier '. |
Adapter |
createInductiveSensorAdapter()
Creates a new adapter for an object of class '
Inductive Sensor '. |
Adapter |
createInterfaceAdapter()
Creates a new adapter for an object of class '
Interface '. |
Adapter |
createLogicalWiringAdapter()
Creates a new adapter for an object of class '
Logical Wiring '. |
Adapter |
createMechanicalAssemblyAdapter()
Creates a new adapter for an object of class '
Mechanical Assembly '. |
Adapter |
createMechanicalPartAdapter()
Creates a new adapter for an object of class '
Mechanical Part '. |
Adapter |
createMicroswitchModuleAdapter()
Creates a new adapter for an object of class '
Microswitch Module '. |
Adapter |
createMonostableCylinderAdapter()
Creates a new adapter for an object of class '
Monostable Cylinder '. |
Adapter |
createMotorAdapter()
Creates a new adapter for an object of class '
Motor '. |
Adapter |
createOperationPanelAdapter()
Creates a new adapter for an object of class '
Operation Panel '. |
Adapter |
createOpticalSensorAdapter()
Creates a new adapter for an object of class '
Optical Sensor '. |
Adapter |
createPanelAdapter()
Creates a new adapter for an object of class '
Panel '. |
Adapter |
createPipeAdapter()
Creates a new adapter for an object of class '
Pipe '. |
Adapter |
createPneumaticPipeAdapter()
Creates a new adapter for an object of class '
Pneumatic Pipe '. |
Adapter |
createPneumaticSplitterAdapter()
Creates a new adapter for an object of class '
Pneumatic Splitter '. |
Adapter |
createPotentiometerAdapter()
Creates a new adapter for an object of class '
Potentiometer '. |
Adapter |
createPowerCableAdapter()
Creates a new adapter for an object of class '
Power Cable '. |
Adapter |
createPowerSplitterAdapter()
Creates a new adapter for an object of class '
Power Splitter '. |
Adapter |
createPowerSupplyAdapter()
Creates a new adapter for an object of class '
Power Supply '. |
Adapter |
createPresenceSensorAdapter()
Creates a new adapter for an object of class '
Presence Sensor '. |
Adapter |
createProportionalCylinderAdapter()
Creates a new adapter for an object of class '
Proportional Cylinder '. |
Adapter |
createPusherAdapter()
Creates a new adapter for an object of class '
Pusher '. |
Adapter |
createRackAdapter()
Creates a new adapter for an object of class '
Rack '. |
Adapter |
createRampAdapter()
Creates a new adapter for an object of class '
Ramp '. |
Adapter |
createReedSwitchAdapter()
Creates a new adapter for an object of class '
Reed Switch '. |
Adapter |
createRegularRampAdapter()
Creates a new adapter for an object of class '
Regular Ramp '. |
Adapter |
createRegularValveAdapter()
Creates a new adapter for an object of class '
Regular Valve '. |
Adapter |
createSensorAdapter()
Creates a new adapter for an object of class '
Sensor '. |
Adapter |
createSimpleMotorAdapter()
Creates a new adapter for an object of class '
Simple Motor '. |
Adapter |
createSplitterAdapter()
Creates a new adapter for an object of class '
Splitter '. |
Adapter |
createSwitchAdapter()
Creates a new adapter for an object of class '
Switch '. |
Adapter |
createTankAdapter()
Creates a new adapter for an object of class '
Tank '. |
Adapter |
createTurningTableAdapter()
Creates a new adapter for an object of class '
Turning Table '. |
Adapter |
createVacuumGripperAdapter()
Creates a new adapter for an object of class '
Vacuum Gripper '. |
Adapter |
createVacuumSwitchAdapter()
Creates a new adapter for an object of class '
Vacuum Switch '. |
Adapter |
createValveAdapter()
Creates a new adapter for an object of class '
Valve '. |
Adapter |
createWaterSplitterAdapter()
Creates a new adapter for an object of class '
Water Splitter '. |
boolean |
isFactoryForType(Object object)
Returns whether this factory is applicable for the type of the object.
|
adapt, adapt, adaptAllNew, adaptNew
public ComponentRepositoryAdapterFactory()
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 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 createPanelAdapter()
Panel
'.
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.
Panel
public Adapter createOperationPanelAdapter()
Operation Panel
'.
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.
OperationPanel
public Adapter createMotorAdapter()
Motor
'.
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.
Motor
public Adapter createSimpleMotorAdapter()
Simple Motor
'.
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.
SimpleMotor
public Adapter createMechanicalAssemblyAdapter()
Mechanical Assembly
'.
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.
MechanicalAssembly
public Adapter createRegularRampAdapter()
Regular Ramp
'.
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.
RegularRamp
public Adapter createSensorAdapter()
Sensor
'.
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.
Sensor
public Adapter createOpticalSensorAdapter()
Optical Sensor
'.
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.
OpticalSensor
public Adapter createInductiveSensorAdapter()
Inductive Sensor
'.
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.
InductiveSensor
public Adapter createPresenceSensorAdapter()
Presence Sensor
'.
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.
PresenceSensor
public Adapter createPipeAdapter()
Pipe
'.
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.
Pipe
public Adapter createPneumaticPipeAdapter()
Pneumatic Pipe
'.
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.
PneumaticPipe
public Adapter createCompressorAdapter()
Compressor
'.
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.
Compressor
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 createPowerCableAdapter()
Power 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.
PowerCable
public Adapter createCylinderAdapter()
Cylinder
'.
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.
Cylinder
public Adapter createProportionalCylinderAdapter()
Proportional Cylinder
'.
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.
ProportionalCylinder
public Adapter createBistableCylinderAdapter()
Bistable Cylinder
'.
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.
BistableCylinder
public Adapter createRackAdapter()
Rack
'.
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.
Rack
public Adapter createCornerAdapter()
Corner
'.
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.
Corner
public Adapter createValveAdapter()
Valve
'.
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.
Valve
public Adapter createRegularValveAdapter()
Regular Valve
'.
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.
RegularValve
public Adapter createTankAdapter()
Tank
'.
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.
Tank
public Adapter createDispenserAdapter()
Dispenser
'.
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.
Dispenser
public Adapter createBottleSeperatorAdapter()
Bottle Seperator
'.
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.
BottleSeperator
public Adapter createSplitterAdapter()
Splitter
'.
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.
Splitter
public Adapter createPowerSupplyAdapter()
Power Supply
'.
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.
PowerSupply
public Adapter createVacuumGripperAdapter()
Vacuum Gripper
'.
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.
VacuumGripper
public Adapter createConveyorBeltAdapter()
Conveyor Belt
'.
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.
ConveyorBelt
public Adapter createFrameAdapter()
Frame
'.
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.
Frame
public Adapter createPusherAdapter()
Pusher
'.
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.
Pusher
public Adapter createTurningTableAdapter()
Turning Table
'.
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.
TurningTable
public Adapter createControllerAdapter()
Controller
'.
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.
Controller
public Adapter createLogicalWiringAdapter()
Logical Wiring
'.
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.
LogicalWiring
public Adapter createMicroswitchModuleAdapter()
Microswitch Module
'.
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.
MicroswitchModule
public Adapter createPotentiometerAdapter()
Potentiometer
'.
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.
Potentiometer
public Adapter createVacuumSwitchAdapter()
Vacuum Switch
'.
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.
VacuumSwitch
public Adapter createReedSwitchAdapter()
Reed Switch
'.
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.
ReedSwitch
public Adapter createPowerSplitterAdapter()
Power Splitter
'.
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.
PowerSplitter
public Adapter createWaterSplitterAdapter()
Water Splitter
'.
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.
WaterSplitter
public Adapter createPneumaticSplitterAdapter()
Pneumatic Splitter
'.
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.
PneumaticSplitter
public Adapter createCylinderPartAdapter()
Cylinder Part
'.
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.
CylinderPart
public Adapter createMonostableCylinderAdapter()
Monostable Cylinder
'.
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.
MonostableCylinder
public Adapter createComponentRepositoryAdapter()
Component Repository
'.
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.
ComponentRepository
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 createRampAdapter()
Ramp
'.
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.
Ramp
public 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.
Interface
public Adapter createElectronicPartAdapter()
Electronic Part
'.
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.
ElectronicPart
public Adapter createSwitchAdapter()
Switch
'.
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.
Switch
public Adapter createMechanicalPartAdapter()
Mechanical Part
'.
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.
MechanicalPart
public Adapter createEObjectAdapter()