org.eclipse.birt.chart.model.data.util
Class DataAdapterFactory

java.lang.Object
  extended by org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
      extended by org.eclipse.birt.chart.model.data.util.DataAdapterFactory
All Implemented Interfaces:
org.eclipse.emf.common.notify.AdapterFactory

public class DataAdapterFactory
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:
DataPackage

Constructor Summary
DataAdapterFactory()
          Creates an instance of the adapter factory.
 
Method Summary
 org.eclipse.emf.common.notify.Adapter createActionAdapter()
          Creates a new adapter for an object of class 'Action'.
 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 createBaseSampleDataAdapter()
          Creates a new adapter for an object of class 'Base Sample Data'.
 org.eclipse.emf.common.notify.Adapter createBubbleDataSetAdapter()
          Creates a new adapter for an object of class 'Bubble Data Set'.
 org.eclipse.emf.common.notify.Adapter createDataElementAdapter()
          Creates a new adapter for an object of class 'Element'.
 org.eclipse.emf.common.notify.Adapter createDataSetAdapter()
          Creates a new adapter for an object of class 'Set'.
 org.eclipse.emf.common.notify.Adapter createDateTimeDataElementAdapter()
          Creates a new adapter for an object of class ' Date Time Data Element'.
 org.eclipse.emf.common.notify.Adapter createDateTimeDataSetAdapter()
          Creates a new adapter for an object of class 'Date Time Data Set'.
 org.eclipse.emf.common.notify.Adapter createDifferenceDataSetAdapter()
          Creates a new adapter for an object of class 'Difference Data Set'.
 org.eclipse.emf.common.notify.Adapter createEObjectAdapter()
          Creates a new adapter for the default case.
 org.eclipse.emf.common.notify.Adapter createGanttDataSetAdapter()
          Creates a new adapter for an object of class 'Gantt Data Set'.
 org.eclipse.emf.common.notify.Adapter createNullDataSetAdapter()
          Creates a new adapter for an object of class 'Null Data Set'.
 org.eclipse.emf.common.notify.Adapter createNumberDataElementAdapter()
          Creates a new adapter for an object of class 'Number Data Element'.
 org.eclipse.emf.common.notify.Adapter createNumberDataSetAdapter()
          Creates a new adapter for an object of class 'Number Data Set'.
 org.eclipse.emf.common.notify.Adapter createOrthogonalSampleDataAdapter()
          Creates a new adapter for an object of class ' Orthogonal Sample Data'.
 org.eclipse.emf.common.notify.Adapter createQueryAdapter()
          Creates a new adapter for an object of class 'Query'.
 org.eclipse.emf.common.notify.Adapter createRuleAdapter()
          Creates a new adapter for an object of class 'Rule'.
 org.eclipse.emf.common.notify.Adapter createSampleDataAdapter()
          Creates a new adapter for an object of class 'Sample Data'.
 org.eclipse.emf.common.notify.Adapter createSeriesDefinitionAdapter()
          Creates a new adapter for an object of class 'Series Definition'.
 org.eclipse.emf.common.notify.Adapter createSeriesGroupingAdapter()
          Creates a new adapter for an object of class 'Series Grouping'.
 org.eclipse.emf.common.notify.Adapter createStockDataSetAdapter()
          Creates a new adapter for an object of class 'Stock Data Set'.
 org.eclipse.emf.common.notify.Adapter createTextDataSetAdapter()
          Creates a new adapter for an object of class 'Text Data Set'.
 org.eclipse.emf.common.notify.Adapter createTriggerAdapter()
          Creates a new adapter for an object of class 'Trigger'.
 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
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DataAdapterFactory

public DataAdapterFactory()
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.

Specified by:
isFactoryForType in interface org.eclipse.emf.common.notify.AdapterFactory
Overrides:
isFactoryForType in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
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.

Overrides:
createAdapter in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
Parameters:
target - the object to adapt.
Returns:
the adapter for the target.

createActionAdapter

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

createBaseSampleDataAdapter

public org.eclipse.emf.common.notify.Adapter createBaseSampleDataAdapter()
Creates a new adapter for an object of class 'Base Sample Data'. 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:
BaseSampleData

createBubbleDataSetAdapter

public org.eclipse.emf.common.notify.Adapter createBubbleDataSetAdapter()
Creates a new adapter for an object of class 'Bubble Data Set'. 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:
BubbleDataSet

createDataElementAdapter

public org.eclipse.emf.common.notify.Adapter createDataElementAdapter()
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:
DataElement

createDataSetAdapter

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

createDateTimeDataElementAdapter

public org.eclipse.emf.common.notify.Adapter createDateTimeDataElementAdapter()
Creates a new adapter for an object of class ' Date Time Data 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:
DateTimeDataElement

createDateTimeDataSetAdapter

public org.eclipse.emf.common.notify.Adapter createDateTimeDataSetAdapter()
Creates a new adapter for an object of class 'Date Time Data Set'. 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:
DateTimeDataSet

createDifferenceDataSetAdapter

public org.eclipse.emf.common.notify.Adapter createDifferenceDataSetAdapter()
Creates a new adapter for an object of class 'Difference Data Set'. 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:
DifferenceDataSet

createGanttDataSetAdapter

public org.eclipse.emf.common.notify.Adapter createGanttDataSetAdapter()
Creates a new adapter for an object of class 'Gantt Data Set'. 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:
GanttDataSet

createNullDataSetAdapter

public org.eclipse.emf.common.notify.Adapter createNullDataSetAdapter()
Creates a new adapter for an object of class 'Null Data Set'. 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:
NullDataSet

createNumberDataElementAdapter

public org.eclipse.emf.common.notify.Adapter createNumberDataElementAdapter()
Creates a new adapter for an object of class 'Number Data 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:
NumberDataElement

createNumberDataSetAdapter

public org.eclipse.emf.common.notify.Adapter createNumberDataSetAdapter()
Creates a new adapter for an object of class 'Number Data Set'. 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:
NumberDataSet

createOrthogonalSampleDataAdapter

public org.eclipse.emf.common.notify.Adapter createOrthogonalSampleDataAdapter()
Creates a new adapter for an object of class ' Orthogonal Sample Data'. 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:
OrthogonalSampleData

createQueryAdapter

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

createRuleAdapter

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

createSampleDataAdapter

public org.eclipse.emf.common.notify.Adapter createSampleDataAdapter()
Creates a new adapter for an object of class 'Sample Data'. 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:
SampleData

createSeriesDefinitionAdapter

public org.eclipse.emf.common.notify.Adapter createSeriesDefinitionAdapter()
Creates a new adapter for an object of class 'Series Definition'. 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:
SeriesDefinition

createSeriesGroupingAdapter

public org.eclipse.emf.common.notify.Adapter createSeriesGroupingAdapter()
Creates a new adapter for an object of class 'Series Grouping'. 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:
SeriesGrouping

createStockDataSetAdapter

public org.eclipse.emf.common.notify.Adapter createStockDataSetAdapter()
Creates a new adapter for an object of class 'Stock Data Set'. 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:
StockDataSet

createTextDataSetAdapter

public org.eclipse.emf.common.notify.Adapter createTextDataSetAdapter()
Creates a new adapter for an object of class 'Text Data Set'. 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:
TextDataSet

createTriggerAdapter

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

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.


Copyright © 2005-2008 Actuate Corp. All rights reserved.