org.eclipse.modisco.utils.chart.metamodel.chart.provider
Class chartItemProviderAdapterFactory

java.lang.Object
  extended by AdapterFactoryImpl
      extended by org.eclipse.modisco.utils.chart.metamodel.chart.util.chartAdapterFactory
          extended by org.eclipse.modisco.utils.chart.metamodel.chart.provider.chartItemProviderAdapterFactory

public class chartItemProviderAdapterFactory
extends chartAdapterFactory

This is the factory that is used to provide the interfaces needed to support Viewers. The adapters generated by this factory convert EMF adapter notifications into calls to fireNotifyChanged. The adapters also support Eclipse property sheets. Note that most of the adapters are shared among multiple instances.

Generated:

Field Summary
static java.lang.String copyright
           
 
Constructor Summary
chartItemProviderAdapterFactory()
          This constructs an instance.
 
Method Summary
 Adapter adapt(Notifier notifier, java.lang.Object type)
          This implementation substitutes the factory itself as the key for the adapter.
 void addListener(INotifyChangedListener notifyChangedListener)
          This adds a listener.
 Adapter createAxeAdapter()
          This creates an adapter for a Axe.
 Adapter createChartAdapter()
          This creates an adapter for a Chart.
 Adapter createCoordinateAdapter()
          This creates an adapter for a Coordinate.
 Adapter createPointAdapter()
          This creates an adapter for a Point.
 Adapter createSerieAdapter()
          This creates an adapter for a Serie.
 void dispose()
          This disposes all of the item providers created by this factory.
 void fireNotifyChanged(Notification notification)
          This delegates to changeNotifier and to parentAdapterFactory.
 ComposeableAdapterFactory getRootAdapterFactory()
          This returns the root adapter factory that contains this factory.
 boolean isFactoryForType(java.lang.Object type)
           
 void removeListener(INotifyChangedListener notifyChangedListener)
          This removes a listener.
 void setParentAdapterFactory(ComposedAdapterFactory parentAdapterFactory)
          This sets the composed adapter factory that contains this factory.
 
Methods inherited from class org.eclipse.modisco.utils.chart.metamodel.chart.util.chartAdapterFactory
createAdapter, createEObjectAdapter
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

copyright

public static final java.lang.String copyright

See Also:
Constant Field Values
Generated:
Constructor Detail

chartItemProviderAdapterFactory

public chartItemProviderAdapterFactory()
This constructs an instance.

Generated:
Method Detail

createChartAdapter

public Adapter createChartAdapter()
This creates an adapter for a Chart.

Overrides:
createChartAdapter in class chartAdapterFactory
Returns:
the new adapter.
See Also:
Chart
Generated:

createAxeAdapter

public Adapter createAxeAdapter()
This creates an adapter for a Axe.

Overrides:
createAxeAdapter in class chartAdapterFactory
Returns:
the new adapter.
See Also:
Axe
Generated:

createSerieAdapter

public Adapter createSerieAdapter()
This creates an adapter for a Serie.

Overrides:
createSerieAdapter in class chartAdapterFactory
Returns:
the new adapter.
See Also:
Serie
Generated:

createPointAdapter

public Adapter createPointAdapter()
This creates an adapter for a Point.

Overrides:
createPointAdapter in class chartAdapterFactory
Returns:
the new adapter.
See Also:
Point
Generated:

createCoordinateAdapter

public Adapter createCoordinateAdapter()
This creates an adapter for a Coordinate.

Overrides:
createCoordinateAdapter in class chartAdapterFactory
Returns:
the new adapter.
See Also:
Coordinate
Generated:

getRootAdapterFactory

public ComposeableAdapterFactory getRootAdapterFactory()
This returns the root adapter factory that contains this factory.

Generated:

setParentAdapterFactory

public void setParentAdapterFactory(ComposedAdapterFactory parentAdapterFactory)
This sets the composed adapter factory that contains this factory.

Generated:

isFactoryForType

public boolean isFactoryForType(java.lang.Object type)

Overrides:
isFactoryForType in class chartAdapterFactory
Returns:
whether this factory is applicable for the type of the object.
Generated:

adapt

public Adapter adapt(Notifier notifier,
                     java.lang.Object type)
This implementation substitutes the factory itself as the key for the adapter.

Generated:

addListener

public void addListener(INotifyChangedListener notifyChangedListener)
This adds a listener.

Generated:

removeListener

public void removeListener(INotifyChangedListener notifyChangedListener)
This removes a listener.

Generated:

fireNotifyChanged

public void fireNotifyChanged(Notification notification)
This delegates to changeNotifier and to parentAdapterFactory.

Generated:

dispose

public void dispose()
This disposes all of the item providers created by this factory.

Generated: