public class DetailViewAdapterFactory
extends AdapterFactoryImpl
createXXX method for each class of the
model.
DetailViewPackage| Modifier and Type | Field and Description |
|---|---|
protected static DetailViewPackage |
modelPackage
The cached model package.
|
protected DetailViewSwitch<Adapter> |
modelSwitch
The switch that delegates to the
createXXX methods. |
| Constructor and Description |
|---|
DetailViewAdapterFactory()
Creates an instance of the adapter factory.
|
| Modifier and Type | Method and Description |
|---|---|
Adapter |
createAdapter(Notifier target)
Creates an adapter for the
target. |
Adapter |
createAndTransformerAdapter()
Creates a new adapter for an object of class '
And Transformer'. |
Adapter |
createBoolLEDComponentAdapter()
Creates a new adapter for an object of class '
Bool LED Component'. |
Adapter |
createButtonComponentAdapter()
Creates a new adapter for an object of class '
Button Component'. |
Adapter |
createCheckComponentAdapter()
Creates a new adapter for an object of class '
Check Component'. |
Adapter |
createComponentAdapter()
Creates a new adapter for an object of class '
Component'. |
Adapter |
createCompositeComponentAdapter()
Creates a new adapter for an object of class '
Composite Component'. |
Adapter |
createCompositeTransformerAdapter()
Creates a new adapter for an object of class '
Composite Transformer'. |
Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
Adapter |
createFillLayoutComponentAdapter()
Creates a new adapter for an object of class '
Fill Layout Component'. |
Adapter |
createGenericComponentAdapter()
Creates a new adapter for an object of class '
Generic Component'. |
Adapter |
createGroupEntryAdapter()
Creates a new adapter for an object of class '
Group Entry'. |
Adapter |
createGroupGridComponentAdapter()
Creates a new adapter for an object of class '
Group Grid Component'. |
Adapter |
createGroupGridEntryAdapter()
Creates a new adapter for an object of class '
Group Grid Entry'. |
Adapter |
createHiddenComponentAdapter()
Creates a new adapter for an object of class '
Hidden Component'. |
Adapter |
createInvisibleAdapter()
Creates a new adapter for an object of class '
Invisible'. |
Adapter |
createItemValueSourceAdapter()
Creates a new adapter for an object of class '
Item Value Source'. |
Adapter |
createLabelComponentAdapter()
Creates a new adapter for an object of class '
Label Component'. |
Adapter |
createLinkComponentAdapter()
Creates a new adapter for an object of class '
Link Component'. |
Adapter |
createNotTransformerAdapter()
Creates a new adapter for an object of class '
Not Transformer'. |
Adapter |
createOrTransformerAdapter()
Creates a new adapter for an object of class '
Or Transformer'. |
Adapter |
createPermissionVisibilityAdapter()
Creates a new adapter for an object of class '
Permission Visibility'. |
Adapter |
createProgressComponentAdapter()
Creates a new adapter for an object of class '
Progress Component'. |
Adapter |
createReadableComponentAdapter()
Creates a new adapter for an object of class '
Readable Component'. |
Adapter |
createRegistrationAdapter()
Creates a new adapter for an object of class '
Registration'. |
Adapter |
createScriptModuleAdapter()
Creates a new adapter for an object of class '
Script Module'. |
Adapter |
createScriptVisibilityAdapter()
Creates a new adapter for an object of class '
Script Visibility'. |
Adapter |
createSimpleGridComponentAdapter()
Creates a new adapter for an object of class '
Simple Grid Component'. |
Adapter |
createTestVisibilityAdapter()
Creates a new adapter for an object of class '
Test Visibility'. |
Adapter |
createTextComponentAdapter()
Creates a new adapter for an object of class '
Text Component'. |
Adapter |
createTextInputComponentAdapter()
Creates a new adapter for an object of class '
Text Input Component'. |
Adapter |
createTextInputMultiComponentAdapter()
Creates a new adapter for an object of class '
Text Input Multi Component'. |
Adapter |
createURLImageComponentAdapter()
Creates a new adapter for an object of class '
URL Image Component'. |
Adapter |
createValueComponentAdapter()
Creates a new adapter for an object of class '
Value Component'. |
Adapter |
createValueSetComponentAdapter()
Creates a new adapter for an object of class '
Value Set Component'. |
Adapter |
createValueSourceAdapter()
Creates a new adapter for an object of class '
Value Source'. |
Adapter |
createViewAdapter()
Creates a new adapter for an object of class '
View'. |
Adapter |
createVisibilityAdapter()
Creates a new adapter for an object of class '
Visibility'. |
Adapter |
createWriteableComponentAdapter()
Creates a new adapter for an object of class '
Writeable Component'. |
boolean |
isFactoryForType(java.lang.Object object)
Returns whether this factory is applicable for the type of the object.
|
protected static DetailViewPackage modelPackage
protected DetailViewSwitch<Adapter> modelSwitch
createXXX methods.
public DetailViewAdapterFactory()
public boolean isFactoryForType(java.lang.Object object)
true if the object is either the
model's package or is an instance object of the model.
public Adapter createAdapter(Notifier target)
target.
target - the object to adapt.target.public Adapter createViewAdapter()
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.
Viewpublic Adapter createComponentAdapter()
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.
Componentpublic Adapter createGroupEntryAdapter()
Group 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.
GroupEntrypublic Adapter createLabelComponentAdapter()
Label 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.
LabelComponentpublic Adapter createCompositeComponentAdapter()
Composite 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.
CompositeComponentpublic Adapter createFillLayoutComponentAdapter()
Fill Layout 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.
FillLayoutComponentpublic Adapter createButtonComponentAdapter()
Button 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.
ButtonComponentpublic Adapter createBoolLEDComponentAdapter()
Bool LED 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.
BoolLEDComponentpublic Adapter createValueSourceAdapter()
Value Source'.
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.
ValueSourcepublic Adapter createItemValueSourceAdapter()
Item Value Source'.
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.
ItemValueSourcepublic Adapter createNotTransformerAdapter()
Not Transformer'.
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.
NotTransformerpublic Adapter createGenericComponentAdapter()
Generic 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.
GenericComponentpublic Adapter createRegistrationAdapter()
Registration'.
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.
Registrationpublic Adapter createSimpleGridComponentAdapter()
Simple Grid 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.
SimpleGridComponentpublic Adapter createGroupGridComponentAdapter()
Group Grid 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.
GroupGridComponentpublic Adapter createGroupGridEntryAdapter()
Group Grid 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.
GroupGridEntrypublic Adapter createValueSetComponentAdapter()
Value Set 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.
ValueSetComponentpublic Adapter createValueComponentAdapter()
Value 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.
ValueComponentpublic Adapter createCompositeTransformerAdapter()
Composite Transformer'.
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.
CompositeTransformerpublic Adapter createAndTransformerAdapter()
And Transformer'.
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.
AndTransformerpublic Adapter createOrTransformerAdapter()
Or Transformer'.
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.
OrTransformerpublic Adapter createTextInputComponentAdapter()
Text Input 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.
TextInputComponentpublic Adapter createWriteableComponentAdapter()
Writeable 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.
WriteableComponentpublic Adapter createReadableComponentAdapter()
Readable 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.
ReadableComponentpublic Adapter createTextComponentAdapter()
Text 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.
TextComponentpublic Adapter createTextInputMultiComponentAdapter()
Text Input Multi 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.
TextInputMultiComponentpublic Adapter createCheckComponentAdapter()
Check 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.
CheckComponentpublic Adapter createLinkComponentAdapter()
Link 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.
LinkComponentpublic Adapter createURLImageComponentAdapter()
URL Image 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.
URLImageComponentpublic Adapter createProgressComponentAdapter()
Progress 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.
ProgressComponentpublic Adapter createHiddenComponentAdapter()
Hidden 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.
HiddenComponentpublic Adapter createVisibilityAdapter()
Visibility'.
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.
Visibilitypublic Adapter createScriptVisibilityAdapter()
Script Visibility'.
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.
ScriptVisibilitypublic Adapter createPermissionVisibilityAdapter()
Permission Visibility'.
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.
PermissionVisibilitypublic Adapter createInvisibleAdapter()
Invisible'.
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.
Invisiblepublic Adapter createTestVisibilityAdapter()
Test Visibility'.
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.
TestVisibilitypublic Adapter createScriptModuleAdapter()
Script Module'.
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.
ScriptModulepublic Adapter createEObjectAdapter()
Copyright (c) IBH SYSTEMS GmbH and others 2010, 2013.
All rights reserved. This program and the accompanying materials
are made available under the terms of the
Eclipse Public License v1.0