org.eclipse.gmt.modisco.omg.kdm.build.util
Class BuildAdapterFactory

java.lang.Object
  extended by AdapterFactoryImpl
      extended by org.eclipse.gmt.modisco.omg.kdm.build.util.BuildAdapterFactory

public class BuildAdapterFactory
extends AdapterFactoryImpl

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

See Also:
BuildPackage
Generated:

Constructor Summary
BuildAdapterFactory()
          Creates an instance of the adapter factory.
 
Method Summary
 Adapter createAbstractBuildElementAdapter()
          Creates a new adapter for an object of class 'Abstract Build Element'.
 Adapter createAbstractBuildRelationshipAdapter()
          Creates a new adapter for an object of class 'Abstract Build Relationship'.
 Adapter createAdapter(Notifier target)
          Creates an adapter for the target.
 Adapter createBuildComponentAdapter()
          Creates a new adapter for an object of class 'Component'.
 Adapter createBuildDescriptionAdapter()
          Creates a new adapter for an object of class 'Description'.
 Adapter createBuildElementAdapter()
          Creates a new adapter for an object of class 'Element'.
 Adapter createBuildModelAdapter()
          Creates a new adapter for an object of class 'Model'.
 Adapter createBuildProductAdapter()
          Creates a new adapter for an object of class 'Product'.
 Adapter createBuildRelationshipAdapter()
          Creates a new adapter for an object of class 'Relationship'.
 Adapter createBuildResourceAdapter()
          Creates a new adapter for an object of class 'Resource'.
 Adapter createBuildStepAdapter()
          Creates a new adapter for an object of class 'Step'.
 Adapter createConsumesAdapter()
          Creates a new adapter for an object of class 'Consumes'.
 Adapter createDescribedByAdapter()
          Creates a new adapter for an object of class 'Described By'.
 Adapter createElementAdapter()
          Creates a new adapter for an object of class 'Element'.
 Adapter createEObjectAdapter()
          Creates a new adapter for the default case.
 Adapter createKDMEntityAdapter()
          Creates a new adapter for an object of class 'KDM Entity'.
 Adapter createKDMFrameworkAdapter()
          Creates a new adapter for an object of class 'KDM Framework'.
 Adapter createKDMModelAdapter()
          Creates a new adapter for an object of class 'KDM Model'.
 Adapter createKDMRelationshipAdapter()
          Creates a new adapter for an object of class 'KDM Relationship'.
 Adapter createLibraryAdapter()
          Creates a new adapter for an object of class 'Library'.
 Adapter createLinksToAdapter()
          Creates a new adapter for an object of class 'Links To'.
 Adapter createModelElementAdapter()
          Creates a new adapter for an object of class 'Model Element'.
 Adapter createProducesAdapter()
          Creates a new adapter for an object of class 'Produces'.
 Adapter createSuppliedByAdapter()
          Creates a new adapter for an object of class 'Supplied By'.
 Adapter createSupplierAdapter()
          Creates a new adapter for an object of class 'Supplier'.
 Adapter createSupportedByAdapter()
          Creates a new adapter for an object of class 'Supported By'.
 Adapter createSymbolicLinkAdapter()
          Creates a new adapter for an object of class 'Symbolic Link'.
 Adapter createToolAdapter()
          Creates a new adapter for an object of class 'Tool'.
 boolean isFactoryForType(java.lang.Object object)
          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

BuildAdapterFactory

public BuildAdapterFactory()
Creates an instance of the adapter factory.

Generated:
Method Detail

isFactoryForType

public boolean isFactoryForType(java.lang.Object object)
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)
Creates an adapter for the target.

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

createAbstractBuildElementAdapter

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

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

createBuildResourceAdapter

public Adapter createBuildResourceAdapter()
Creates a new adapter for an object of class 'Resource'. 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:
BuildResource
Generated:

createBuildDescriptionAdapter

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

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

createSymbolicLinkAdapter

public Adapter createSymbolicLinkAdapter()
Creates a new adapter for an object of class 'Symbolic Link'. 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:
SymbolicLink
Generated:

createAbstractBuildRelationshipAdapter

public Adapter createAbstractBuildRelationshipAdapter()
Creates a new adapter for an object of class 'Abstract Build Relationship'. 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:
AbstractBuildRelationship
Generated:

createLinksToAdapter

public Adapter createLinksToAdapter()
Creates a new adapter for an object of class 'Links To'. 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:
LinksTo
Generated:

createConsumesAdapter

public Adapter createConsumesAdapter()
Creates a new adapter for an object of class 'Consumes'. 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:
Consumes
Generated:

createBuildModelAdapter

public Adapter createBuildModelAdapter()
Creates a new adapter for an object of class 'Model'. 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:
BuildModel
Generated:

createBuildComponentAdapter

public Adapter createBuildComponentAdapter()
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:
BuildComponent
Generated:

createSupplierAdapter

public Adapter createSupplierAdapter()
Creates a new adapter for an object of class 'Supplier'. 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:
Supplier
Generated:

createToolAdapter

public Adapter createToolAdapter()
Creates a new adapter for an object of class 'Tool'. 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:
Tool
Generated:

createBuildElementAdapter

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

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

createBuildRelationshipAdapter

public Adapter createBuildRelationshipAdapter()
Creates a new adapter for an object of class 'Relationship'. 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:
BuildRelationship
Generated:

createSuppliedByAdapter

public Adapter createSuppliedByAdapter()
Creates a new adapter for an object of class 'Supplied By'. 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:
SuppliedBy
Generated:

createLibraryAdapter

public Adapter createLibraryAdapter()
Creates a new adapter for an object of class 'Library'. 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:
Library
Generated:

createBuildStepAdapter

public Adapter createBuildStepAdapter()
Creates a new adapter for an object of class 'Step'. 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:
BuildStep
Generated:

createProducesAdapter

public Adapter createProducesAdapter()
Creates a new adapter for an object of class 'Produces'. 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:
Produces
Generated:

createSupportedByAdapter

public Adapter createSupportedByAdapter()
Creates a new adapter for an object of class 'Supported By'. 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:
SupportedBy
Generated:

createBuildProductAdapter

public Adapter createBuildProductAdapter()
Creates a new adapter for an object of class 'Product'. 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:
BuildProduct
Generated:

createDescribedByAdapter

public Adapter createDescribedByAdapter()
Creates a new adapter for an object of class 'Described By'. 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:
DescribedBy
Generated:

createElementAdapter

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

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

createModelElementAdapter

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

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

createKDMEntityAdapter

public Adapter createKDMEntityAdapter()
Creates a new adapter for an object of class 'KDM Entity'. 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:
KDMEntity
Generated:

createKDMRelationshipAdapter

public Adapter createKDMRelationshipAdapter()
Creates a new adapter for an object of class 'KDM Relationship'. 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:
KDMRelationship
Generated:

createKDMFrameworkAdapter

public Adapter createKDMFrameworkAdapter()
Creates a new adapter for an object of class 'KDM Framework'. 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:
KDMFramework
Generated:

createKDMModelAdapter

public Adapter createKDMModelAdapter()
Creates a new adapter for an object of class 'KDM Model'. 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:
KDMModel
Generated:

createEObjectAdapter

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

Returns:
the new adapter.
Generated: