Class StatisticsAdapterFactory
java.lang.Object
org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
kieker.model.analysismodel.statistics.util.StatisticsAdapterFactory
- All Implemented Interfaces:
org.eclipse.emf.common.notify.AdapterFactory
public class StatisticsAdapterFactory
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:
StatisticsPackage
- Generated:
-
Field Summary
Fields Modifier and Type Field Description protected static StatisticsPackage
modelPackage
The cached model package.protected StatisticsSwitch<org.eclipse.emf.common.notify.Adapter>
modelSwitch
The switch that delegates to thecreateXXX
methods. -
Constructor Summary
Constructors Constructor Description StatisticsAdapterFactory()
Creates an instance of the adapter factory. -
Method Summary
Modifier and Type Method Description org.eclipse.emf.common.notify.Adapter
createAdapter(org.eclipse.emf.common.notify.Notifier target)
Creates an adapter for thetarget
.org.eclipse.emf.common.notify.Adapter
createComposedUnitAdapter()
Creates a new adapter for an object of class 'Composed Unit
'.org.eclipse.emf.common.notify.Adapter
createCustomUnitAdapter()
Creates a new adapter for an object of class 'Custom Unit
'.org.eclipse.emf.common.notify.Adapter
createDoubleMeasurementAdapter()
Creates a new adapter for an object of class 'Double Measurement
'.org.eclipse.emf.common.notify.Adapter
createEObjectAdapter()
Creates a new adapter for the default case.org.eclipse.emf.common.notify.Adapter
createEObjectToStatisticsMapEntryAdapter()
Creates a new adapter for an object of class 'EObject To Statistics Map Entry
'.org.eclipse.emf.common.notify.Adapter
createEPropertyTypeToValueAdapter()
Creates a new adapter for an object of class 'EProperty Type To Value
'.org.eclipse.emf.common.notify.Adapter
createFloatMeasurementAdapter()
Creates a new adapter for an object of class 'Float Measurement
'.org.eclipse.emf.common.notify.Adapter
createIntMeasurementAdapter()
Creates a new adapter for an object of class 'Int Measurement
'.org.eclipse.emf.common.notify.Adapter
createLongMeasurementAdapter()
Creates a new adapter for an object of class 'Long Measurement
'.org.eclipse.emf.common.notify.Adapter
createMeasurementAdapter()
Creates a new adapter for an object of class 'Measurement
'.org.eclipse.emf.common.notify.Adapter
createScalarMeasurementAdapter()
Creates a new adapter for an object of class 'Scalar Measurement
'.org.eclipse.emf.common.notify.Adapter
createSimpleUnitAdapter()
Creates a new adapter for an object of class 'Simple Unit
'.org.eclipse.emf.common.notify.Adapter
createSIUnitAdapter()
Creates a new adapter for an object of class 'SI Unit
'.org.eclipse.emf.common.notify.Adapter
createStatisticRecordAdapter()
Creates a new adapter for an object of class 'Statistic Record
'.org.eclipse.emf.common.notify.Adapter
createStatisticsModelAdapter()
Creates a new adapter for an object of class 'Model
'.org.eclipse.emf.common.notify.Adapter
createUnitAdapter()
Creates a new adapter for an object of class 'Unit
'.org.eclipse.emf.common.notify.Adapter
createVectorMeasurementAdapter()
Creates a new adapter for an object of class 'Vector Measurement
'.boolean
isFactoryForType(java.lang.Object object)
Returns whether this factory is applicable for the type of the object.
-
Field Details
-
modelPackage
The cached model package.- Generated:
-
modelSwitch
The switch that delegates to thecreateXXX
methods.- Generated:
-
-
Constructor Details
-
StatisticsAdapterFactory
public StatisticsAdapterFactory()Creates an instance of the adapter factory.- Generated:
-
-
Method Details
-
isFactoryForType
public boolean isFactoryForType(java.lang.Object object)Returns whether this factory is applicable for the type of the object. This implementation returnstrue
if the object is either the model's package or is an instance object of the model.- Specified by:
isFactoryForType
in interfaceorg.eclipse.emf.common.notify.AdapterFactory
- Overrides:
isFactoryForType
in classorg.eclipse.emf.common.notify.impl.AdapterFactoryImpl
- Returns:
- whether this factory is applicable for the type of the object.
- Generated:
-
createAdapter
public org.eclipse.emf.common.notify.Adapter createAdapter(org.eclipse.emf.common.notify.Notifier target)Creates an adapter for thetarget
.- Overrides:
createAdapter
in classorg.eclipse.emf.common.notify.impl.AdapterFactoryImpl
- Parameters:
target
- the object to adapt.- Returns:
- the adapter for the
target
. - Generated:
-
createStatisticRecordAdapter
public org.eclipse.emf.common.notify.Adapter createStatisticRecordAdapter()Creates a new adapter for an object of class 'Statistic Record
'. 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:
StatisticRecord
- Generated:
-
createEPropertyTypeToValueAdapter
public org.eclipse.emf.common.notify.Adapter createEPropertyTypeToValueAdapter()Creates a new adapter for an object of class 'EProperty Type To Value
'. 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
- Generated:
-
createMeasurementAdapter
public org.eclipse.emf.common.notify.Adapter createMeasurementAdapter()Creates a new adapter for an object of class 'Measurement
'. 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:
Measurement
- Generated:
-
createScalarMeasurementAdapter
public org.eclipse.emf.common.notify.Adapter createScalarMeasurementAdapter()Creates a new adapter for an object of class 'Scalar Measurement
'. 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:
ScalarMeasurement
- Generated:
-
createVectorMeasurementAdapter
public org.eclipse.emf.common.notify.Adapter createVectorMeasurementAdapter()Creates a new adapter for an object of class 'Vector Measurement
'. 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:
VectorMeasurement
- Generated:
-
createIntMeasurementAdapter
public org.eclipse.emf.common.notify.Adapter createIntMeasurementAdapter()Creates a new adapter for an object of class 'Int Measurement
'. 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:
IntMeasurement
- Generated:
-
createLongMeasurementAdapter
public org.eclipse.emf.common.notify.Adapter createLongMeasurementAdapter()Creates a new adapter for an object of class 'Long Measurement
'. 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:
LongMeasurement
- Generated:
-
createFloatMeasurementAdapter
public org.eclipse.emf.common.notify.Adapter createFloatMeasurementAdapter()Creates a new adapter for an object of class 'Float Measurement
'. 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:
FloatMeasurement
- Generated:
-
createDoubleMeasurementAdapter
public org.eclipse.emf.common.notify.Adapter createDoubleMeasurementAdapter()Creates a new adapter for an object of class 'Double Measurement
'. 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:
DoubleMeasurement
- Generated:
-
createUnitAdapter
public org.eclipse.emf.common.notify.Adapter createUnitAdapter()Creates a new adapter for an object of class 'Unit
'. 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:
Unit
- Generated:
-
createComposedUnitAdapter
public org.eclipse.emf.common.notify.Adapter createComposedUnitAdapter()Creates a new adapter for an object of class 'Composed Unit
'. 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:
ComposedUnit
- Generated:
-
createSimpleUnitAdapter
public org.eclipse.emf.common.notify.Adapter createSimpleUnitAdapter()Creates a new adapter for an object of class 'Simple Unit
'. 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:
SimpleUnit
- Generated:
-
createSIUnitAdapter
public org.eclipse.emf.common.notify.Adapter createSIUnitAdapter()Creates a new adapter for an object of class 'SI Unit
'. 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:
SIUnit
- Generated:
-
createCustomUnitAdapter
public org.eclipse.emf.common.notify.Adapter createCustomUnitAdapter()Creates a new adapter for an object of class 'Custom Unit
'. 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:
CustomUnit
- Generated:
-
createStatisticsModelAdapter
public org.eclipse.emf.common.notify.Adapter createStatisticsModelAdapter()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:
StatisticsModel
- Generated:
-
createEObjectToStatisticsMapEntryAdapter
public org.eclipse.emf.common.notify.Adapter createEObjectToStatisticsMapEntryAdapter()Creates a new adapter for an object of class 'EObject To Statistics Map 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
- Generated:
-
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.
- Generated:
-