TPTP 4.1.0 Platform Project
Public API Specification

org.eclipse.hyades.models.hierarchy.util
Class HierarchyAdapterFactory

java.lang.Object
  extended byorg.eclipse.emf.common.notify.impl.AdapterFactoryImpl
      extended byorg.eclipse.hyades.models.hierarchy.util.HierarchyAdapterFactory
All Implemented Interfaces:
org.eclipse.emf.common.notify.AdapterFactory

public class HierarchyAdapterFactory
extends org.eclipse.emf.common.notify.impl.AdapterFactoryImpl

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

See Also:
HierarchyPackage

Field Summary
protected static HierarchyPackage modelPackage
          The cached model package.
protected  HierarchySwitch modelSwitch
          The switch the delegates to the createXXX methods.
 
Constructor Summary
HierarchyAdapterFactory()
          Creates an instance of the adapter factory.
 
Method Summary
 org.eclipse.emf.common.notify.Adapter createAbstractDefaultEventAdapter()
          Creates a new adapter for an object of class 'Abstract Default Event'.
 org.eclipse.emf.common.notify.Adapter createAbstractTRCCollectionBoundaryAdapter()
          Creates a new adapter for an object of class 'Abstract TRC Collection Boundary'.
 org.eclipse.emf.common.notify.Adapter createAbstractTRCDescriptionAdapter()
          Creates a new adapter for an object of class 'Abstract TRC Description'.
 org.eclipse.emf.common.notify.Adapter createAbstractTRCProcessAdapter()
          Creates a new adapter for an object of class 'Abstract TRC Process'.
 org.eclipse.emf.common.notify.Adapter createAbstractTRCViewAdapter()
          Creates a new adapter for an object of class 'Abstract TRC View'.
 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 createCorrelationContainerAdapter()
          Creates a new adapter for an object of class 'Correlation Container'.
 org.eclipse.emf.common.notify.Adapter createCorrelationContainerProxyAdapter()
          Creates a new adapter for an object of class 'Correlation Container Proxy'.
 org.eclipse.emf.common.notify.Adapter createCorrelationEngineAdapter()
          Creates a new adapter for an object of class 'Correlation Engine'.
 org.eclipse.emf.common.notify.Adapter createCorrelationEntryAdapter()
          Creates a new adapter for an object of class 'Correlation Entry'.
 org.eclipse.emf.common.notify.Adapter createCorrelationSourceInfoAdapter()
          Creates a new adapter for an object of class 'Correlation Source Info'.
 org.eclipse.emf.common.notify.Adapter createEObjectAdapter()
          Creates a new adapter for the default case.
 org.eclipse.emf.common.notify.Adapter createTRCAgentAdapter()
          Creates a new adapter for an object of class 'TRC Agent'.
 org.eclipse.emf.common.notify.Adapter createTRCAgentProxyAdapter()
          Creates a new adapter for an object of class 'TRC Agent Proxy'.
 org.eclipse.emf.common.notify.Adapter createTRCAnnotationAdapter()
          Creates a new adapter for an object of class 'TRC Annotation'.
 org.eclipse.emf.common.notify.Adapter createTRCConfigurationAdapter()
          Creates a new adapter for an object of class 'TRC Configuration'.
 org.eclipse.emf.common.notify.Adapter createTRCEnvironmentVariableAdapter()
          Creates a new adapter for an object of class 'TRC Environment Variable'.
 org.eclipse.emf.common.notify.Adapter createTRCExecParameterAdapter()
          Creates a new adapter for an object of class 'TRC Exec Parameter'.
 org.eclipse.emf.common.notify.Adapter createTRCFilterAdapter()
          Creates a new adapter for an object of class 'TRC Filter'.
 org.eclipse.emf.common.notify.Adapter createTRCMonitorAdapter()
          Creates a new adapter for an object of class 'TRC Monitor'.
 org.eclipse.emf.common.notify.Adapter createTRCNodeAdapter()
          Creates a new adapter for an object of class 'TRC Node'.
 org.eclipse.emf.common.notify.Adapter createTRCOptionAdapter()
          Creates a new adapter for an object of class 'TRC Option'.
 org.eclipse.emf.common.notify.Adapter createTRCProcessProxyAdapter()
          Creates a new adapter for an object of class 'TRC Process Proxy'.
 org.eclipse.emf.common.notify.Adapter createUnresolvedCorrelationAdapter()
          Creates a new adapter for an object of class 'Unresolved Correlation'.
 boolean isFactoryForType(java.lang.Object object)
          Returns whether this factory is applicable for the type of the object.
 
Methods inherited from class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
adapt, adapt, adaptAllNew, adaptNew, associate, createAdapter, resolve
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

modelPackage

protected static HierarchyPackage modelPackage
The cached model package.


modelSwitch

protected HierarchySwitch modelSwitch
The switch the delegates to the createXXX methods.

Constructor Detail

HierarchyAdapterFactory

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

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.

createAdapter

public org.eclipse.emf.common.notify.Adapter createAdapter(org.eclipse.emf.common.notify.Notifier target)
Creates an adapter for the target.

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

createTRCProcessProxyAdapter

public org.eclipse.emf.common.notify.Adapter createTRCProcessProxyAdapter()
Creates a new adapter for an object of class 'TRC Process 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:
TRCProcessProxy

createTRCOptionAdapter

public org.eclipse.emf.common.notify.Adapter createTRCOptionAdapter()
Creates a new adapter for an object of class 'TRC Option'. 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:
TRCOption

createTRCAgentAdapter

public org.eclipse.emf.common.notify.Adapter createTRCAgentAdapter()
Creates a new adapter for an object of class 'TRC Agent'. 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:
TRCAgent

createTRCAgentProxyAdapter

public org.eclipse.emf.common.notify.Adapter createTRCAgentProxyAdapter()
Creates a new adapter for an object of class 'TRC Agent 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:
TRCAgentProxy

createTRCConfigurationAdapter

public org.eclipse.emf.common.notify.Adapter createTRCConfigurationAdapter()
Creates a new adapter for an object of class 'TRC Configuration'. 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:
TRCConfiguration

createTRCEnvironmentVariableAdapter

public org.eclipse.emf.common.notify.Adapter createTRCEnvironmentVariableAdapter()
Creates a new adapter for an object of class 'TRC Environment Variable'. 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:
TRCEnvironmentVariable

createTRCExecParameterAdapter

public org.eclipse.emf.common.notify.Adapter createTRCExecParameterAdapter()
Creates a new adapter for an object of class 'TRC Exec 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:
TRCExecParameter

createTRCFilterAdapter

public org.eclipse.emf.common.notify.Adapter createTRCFilterAdapter()
Creates a new adapter for an object of class 'TRC Filter'. 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:
TRCFilter

createTRCNodeAdapter

public org.eclipse.emf.common.notify.Adapter createTRCNodeAdapter()
Creates a new adapter for an object of class 'TRC Node'. 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:
TRCNode

createTRCMonitorAdapter

public org.eclipse.emf.common.notify.Adapter createTRCMonitorAdapter()
Creates a new adapter for an object of class 'TRC Monitor'. 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:
TRCMonitor

createAbstractDefaultEventAdapter

public org.eclipse.emf.common.notify.Adapter createAbstractDefaultEventAdapter()
Creates a new adapter for an object of class 'Abstract Default Event'. 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:
AbstractDefaultEvent

createAbstractTRCViewAdapter

public org.eclipse.emf.common.notify.Adapter createAbstractTRCViewAdapter()
Creates a new adapter for an object of class 'Abstract TRC View'. 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:
AbstractTRCView

createAbstractTRCDescriptionAdapter

public org.eclipse.emf.common.notify.Adapter createAbstractTRCDescriptionAdapter()
Creates a new adapter for an object of class 'Abstract TRC 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:
AbstractTRCDescription

createAbstractTRCProcessAdapter

public org.eclipse.emf.common.notify.Adapter createAbstractTRCProcessAdapter()
Creates a new adapter for an object of class 'Abstract TRC Process'. 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:
AbstractTRCProcess

createAbstractTRCCollectionBoundaryAdapter

public org.eclipse.emf.common.notify.Adapter createAbstractTRCCollectionBoundaryAdapter()
Creates a new adapter for an object of class 'Abstract TRC Collection Boundary'. 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:
AbstractTRCCollectionBoundary

createUnresolvedCorrelationAdapter

public org.eclipse.emf.common.notify.Adapter createUnresolvedCorrelationAdapter()
Creates a new adapter for an object of class 'Unresolved Correlation'. 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:
UnresolvedCorrelation

createCorrelationSourceInfoAdapter

public org.eclipse.emf.common.notify.Adapter createCorrelationSourceInfoAdapter()
Creates a new adapter for an object of class 'Correlation Source Info'. 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:
CorrelationSourceInfo

createCorrelationContainerAdapter

public org.eclipse.emf.common.notify.Adapter createCorrelationContainerAdapter()
Creates a new adapter for an object of class 'Correlation Container'. 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:
CorrelationContainer

createCorrelationContainerProxyAdapter

public org.eclipse.emf.common.notify.Adapter createCorrelationContainerProxyAdapter()
Creates a new adapter for an object of class 'Correlation Container 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:
CorrelationContainerProxy

createCorrelationEntryAdapter

public org.eclipse.emf.common.notify.Adapter createCorrelationEntryAdapter()
Creates a new adapter for an object of class 'Correlation Entry'. 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:
Map.Entry

createCorrelationEngineAdapter

public org.eclipse.emf.common.notify.Adapter createCorrelationEngineAdapter()
Creates a new adapter for an object of class 'Correlation Engine'. 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:
CorrelationEngine

createTRCAnnotationAdapter

public org.eclipse.emf.common.notify.Adapter createTRCAnnotationAdapter()
Creates a new adapter for an object of class 'TRC Annotation'. 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:
TRCAnnotation

createEObjectAdapter

public org.eclipse.emf.common.notify.Adapter createEObjectAdapter()
Creates a new adapter for the default case. This default implementation returns null.

Returns:
the new adapter.

TPTP 4.1.0 Platform Project
Public API Specification