org.eclipse.gmt.modisco.workflow.mwe.workflow.util
Class WorkflowAdapterFactory

java.lang.Object
  extended by AdapterFactoryImpl
      extended by org.eclipse.gmt.modisco.workflow.mwe.workflow.util.WorkflowAdapterFactory

Deprecated.

@Deprecated
public class WorkflowAdapterFactory
extends AdapterFactoryImpl

The Adapter Factory for the model. It provides an adapter createXXX method for each class of the model.

See Also:
WorkflowPackage
Generated:

Constructor Summary
WorkflowAdapterFactory()
          Deprecated. Creates an instance of the adapter factory.
 
Method Summary
 Adapter createAdapter(Notifier target)
          Deprecated. Creates an adapter for the target.
 Adapter createEObjectAdapter()
          Deprecated. Creates a new adapter for the default case.
 Adapter createIWorkflowVisitorAdapter()
          Deprecated. Creates a new adapter for an object of class 'IWorkflow Visitor'.
 Adapter createWorkflowAdapter()
          Deprecated. Creates a new adapter for an object of class 'Workflow'.
 Adapter createWorkflowComponentAdapter()
          Deprecated. Creates a new adapter for an object of class 'Component'.
 Adapter createWorkflowComponentMinimalistAdapter()
          Deprecated. Creates a new adapter for an object of class 'Component Minimalist'.
 Adapter createWorkflowComponentProxyAdapter()
          Deprecated. Creates a new adapter for an object of class 'Component Proxy'.
 Adapter createWorkflowCompositeComponentAdapter()
          Deprecated. Creates a new adapter for an object of class 'Composite Component'.
 Adapter createWorkflowParameterAdapter()
          Deprecated. Creates a new adapter for an object of class 'Parameter'.
 Adapter createWorkflowParameterConnectionAdapter()
          Deprecated. Creates a new adapter for an object of class 'Parameter Connection'.
 Adapter createWorkflowParameterSimpleValueStrategyAdapter()
          Deprecated. Creates a new adapter for an object of class 'Parameter Simple Value Strategy'.
 Adapter createWorkflowParameterValueStrategyAdapter()
          Deprecated. Creates a new adapter for an object of class 'Parameter Value Strategy'.
 Adapter createWorkflowUnitOfWorkAdapter()
          Deprecated. Creates a new adapter for an object of class 'Unit Of Work'.
 boolean isFactoryForType(java.lang.Object object)
          Deprecated. Returns whether this factory is applicable for the type of the object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WorkflowAdapterFactory

public WorkflowAdapterFactory()
Deprecated. 
Creates an instance of the adapter factory.

Generated:
Method Detail

isFactoryForType

public boolean isFactoryForType(java.lang.Object object)
Deprecated. 
Returns whether this factory is applicable for the type of the object. This implementation returns true if the object is either the model's package or is an instance object of the model.

Returns:
whether this factory is applicable for the type of the object.
Generated:

createAdapter

public Adapter createAdapter(Notifier target)
Deprecated. 
Creates an adapter for the target.

Parameters:
target - the object to adapt.
Returns:
the adapter for the target.
Generated:

createWorkflowAdapter

public Adapter createWorkflowAdapter()
Deprecated. 
Creates a new adapter for an object of class 'Workflow'. 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.

Returns:
the new adapter.
See Also:
Workflow
Generated:

createWorkflowComponentAdapter

public Adapter createWorkflowComponentAdapter()
Deprecated. 
Creates a new adapter for an object of class '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.

Returns:
the new adapter.
See Also:
WorkflowComponent
Generated:

createWorkflowCompositeComponentAdapter

public Adapter createWorkflowCompositeComponentAdapter()
Deprecated. 
Creates a new adapter for an object of class 'Composite 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.

Returns:
the new adapter.
See Also:
WorkflowCompositeComponent
Generated:

createWorkflowUnitOfWorkAdapter

public Adapter createWorkflowUnitOfWorkAdapter()
Deprecated. 
Creates a new adapter for an object of class 'Unit Of Work'. 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.

Returns:
the new adapter.
See Also:
WorkflowUnitOfWork
Generated:

createWorkflowParameterAdapter

public Adapter createWorkflowParameterAdapter()
Deprecated. 
Creates a new adapter for an object of class 'Parameter'. 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.

Returns:
the new adapter.
See Also:
WorkflowParameter
Generated:

createWorkflowParameterValueStrategyAdapter

public Adapter createWorkflowParameterValueStrategyAdapter()
Deprecated. 
Creates a new adapter for an object of class 'Parameter Value Strategy'. 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.

Returns:
the new adapter.
See Also:
WorkflowParameterValueStrategy
Generated:

createWorkflowParameterConnectionAdapter

public Adapter createWorkflowParameterConnectionAdapter()
Deprecated. 
Creates a new adapter for an object of class 'Parameter Connection'. 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.

Returns:
the new adapter.
See Also:
WorkflowParameterConnection
Generated:

createWorkflowParameterSimpleValueStrategyAdapter

public Adapter createWorkflowParameterSimpleValueStrategyAdapter()
Deprecated. 
Creates a new adapter for an object of class 'Parameter Simple Value Strategy'. 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.

Returns:
the new adapter.
See Also:
WorkflowParameterSimpleValueStrategy
Generated:

createIWorkflowVisitorAdapter

public Adapter createIWorkflowVisitorAdapter()
Deprecated. 
Creates a new adapter for an object of class 'IWorkflow Visitor'. 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.

Returns:
the new adapter.
See Also:
IWorkflowVisitor
Generated:

createWorkflowComponentProxyAdapter

public Adapter createWorkflowComponentProxyAdapter()
Deprecated. 
Creates a new adapter for an object of class 'Component Proxy'. 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.

Returns:
the new adapter.
See Also:
WorkflowComponentProxy
Generated:

createWorkflowComponentMinimalistAdapter

public Adapter createWorkflowComponentMinimalistAdapter()
Deprecated. 
Creates a new adapter for an object of class 'Component Minimalist'. 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.

Returns:
the new adapter.
See Also:
WorkflowComponentMinimalist
Generated:

createEObjectAdapter

public Adapter createEObjectAdapter()
Deprecated. 
Creates a new adapter for the default case. This default implementation returns null.

Returns:
the new adapter.
Generated: