| Package | Description | 
|---|---|
| griffon.core.mvc | 
 MVC Group management. 
 | 
| griffon.javafx.artifact | 
 JavaFX specific artifact types. 
 | 
| org.codehaus.griffon.runtime.core.artifact | 
 Artifact implementation [INTERNAL USE]. 
 | 
| org.codehaus.griffon.runtime.core.mvc | 
 MVC group implementation [INTERNAL USE]. 
 | 
| org.codehaus.griffon.runtime.javafx.artifact | 
 Artifact implementation [INTERNAL USE]. 
 | 
| org.codehaus.griffon.runtime.lanterna.artifact | 
 Artifact implementation [INTERNAL USE]. 
 | 
| org.codehaus.griffon.runtime.pivot.artifact | 
 Artifact implementation [INTERNAL USE]. 
 | 
| org.codehaus.griffon.runtime.swing.artifact | 
 Artifact implementation [INTERNAL USE]. 
 | 
| Modifier and Type | Interface and Description | 
|---|---|
interface  | 
MVCFunction<M extends GriffonModel,V extends GriffonView,C extends GriffonController>
An specialized function for working with MVC members. 
 | 
interface  | 
TypedMVCGroup<M extends GriffonModel,V extends GriffonView,C extends GriffonController>  | 
| Modifier and Type | Method and Description | 
|---|---|
<V extends GriffonView> | 
MVCGroupManager.findView(String name,
        Class<V> type)
Finds a named view. 
 | 
<V extends GriffonView> | 
MVCGroupManager.getView(String name,
       Class<V> type)
Finds a named view. 
 | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
MVCHandler.withMVC(Class<? extends MVC> mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)
Instantiates an MVC group of the specified type then destroys it after it has been handled. 
 | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
MVCHandler.withMVC(Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)
Instantiates an MVC group of the specified type then destroys it after it has been handled. 
 | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
MVCHandler.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)
Instantiates an MVC group of the specified type then destroys it after it has been handled. 
 | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
MVCHandler.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)
Instantiates an MVC group of the specified type then destroys it after it has been handled. 
 | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
MVCHandler.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)
Instantiates an MVC group of the specified type then destroys it after it has been handled. 
 | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
MVCHandler.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)
Instantiates an MVC group of the specified type then destroys it after it has been handled. 
 | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
MVCHandler.withMVC(Map<String,Object> args,
       String mvcType,
       MVCFunction<M,V,C> handler)
Instantiates an MVC group of the specified type then destroys it after it has been handled. 
 | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
MVCHandler.withMVC(Map<String,Object> args,
       String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)
Instantiates an MVC group of the specified type then destroys it after it has been handled. 
 | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
MVCHandler.withMVC(String mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)
Instantiates an MVC group of the specified type then destroys it after it has been handled. 
 | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
MVCHandler.withMVC(String mvcType,
       MVCFunction<M,V,C> handler)
Instantiates an MVC group of the specified type then destroys it after it has been handled. 
 | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
MVCHandler.withMVC(String mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)
Instantiates an MVC group of the specified type then destroys it after it has been handled. 
 | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
MVCHandler.withMVC(String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)
Instantiates an MVC group of the specified type then destroys it after it has been handled. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
GriffonView | 
MVCGroup.getView()
Returns the View portion of this group. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Map<String,? extends GriffonView> | 
MVCGroupManager.getViews()
Returns all currently available view instances, keyed by group name. 
 | 
| Modifier and Type | Interface and Description | 
|---|---|
interface  | 
JavaFXGriffonView  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
AbstractGriffonView
Base implementation of the GriffonView interface. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonArtifact.withMVC(Class<? extends MVC> mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonMvcArtifact.withMVC(Class<? extends MVC> mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonArtifact.withMVC(Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonMvcArtifact.withMVC(Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonArtifact.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonMvcArtifact.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonArtifact.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonMvcArtifact.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonArtifact.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonMvcArtifact.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonArtifact.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonMvcArtifact.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonArtifact.withMVC(Map<String,Object> args,
       String mvcType,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonMvcArtifact.withMVC(Map<String,Object> args,
       String mvcType,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonArtifact.withMVC(Map<String,Object> args,
       String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonMvcArtifact.withMVC(Map<String,Object> args,
       String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonArtifact.withMVC(String mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonMvcArtifact.withMVC(String mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonArtifact.withMVC(String mvcType,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonMvcArtifact.withMVC(String mvcType,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonArtifact.withMVC(String mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonMvcArtifact.withMVC(String mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonArtifact.withMVC(String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractGriffonMvcArtifact.withMVC(String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
| Modifier and Type | Method and Description | 
|---|---|
GriffonClass | 
ViewArtifactHandler.newGriffonClassInstance(Class<GriffonView> clazz)  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
AbstractTypedMVCGroup<M extends GriffonModel,V extends GriffonView,C extends GriffonController>  | 
| Modifier and Type | Method and Description | 
|---|---|
<V extends GriffonView> | 
AbstractMVCGroupManager.findView(String name,
        Class<V> type)  | 
<V extends GriffonView> | 
AbstractMVCGroupManager.getView(String name,
       Class<V> type)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroup.withMVC(Class<? extends MVC> mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVC(Class<? extends MVC> mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCHandler.withMVC(Class<? extends MVC> mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
DelegatingMVCGroup.withMVC(Class<? extends MVC> mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroup.withMVC(Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVC(Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCHandler.withMVC(Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
DelegatingMVCGroup.withMVC(Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroup.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCHandler.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
DelegatingMVCGroup.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroup.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCHandler.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
DelegatingMVCGroup.withMVC(Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroup.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCHandler.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
DelegatingMVCGroup.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroup.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCHandler.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<MVC extends TypedMVCGroup,M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
DelegatingMVCGroup.withMVC(Map<String,Object> args,
       Class<? extends MVC> mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroup.withMVC(Map<String,Object> args,
       String mvcType,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVC(Map<String,Object> args,
       String mvcType,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCHandler.withMVC(Map<String,Object> args,
       String mvcType,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
DelegatingMVCGroup.withMVC(Map<String,Object> args,
       String mvcType,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroup.withMVC(Map<String,Object> args,
       String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVC(Map<String,Object> args,
       String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCHandler.withMVC(Map<String,Object> args,
       String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
DelegatingMVCGroup.withMVC(Map<String,Object> args,
       String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroup.withMVC(String mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVC(String mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCHandler.withMVC(String mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
DelegatingMVCGroup.withMVC(String mvcType,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroup.withMVC(String mvcType,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVC(String mvcType,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCHandler.withMVC(String mvcType,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
DelegatingMVCGroup.withMVC(String mvcType,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroup.withMVC(String mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVC(String mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCHandler.withMVC(String mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
DelegatingMVCGroup.withMVC(String mvcType,
       String mvcId,
       Map<String,Object> args,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroup.withMVC(String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVC(String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCHandler.withMVC(String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
<M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
DelegatingMVCGroup.withMVC(String mvcType,
       String mvcId,
       MVCFunction<M,V,C> handler)  | 
protected <M extends GriffonModel,V extends GriffonView,C extends GriffonController> | 
AbstractMVCGroupManager.withMVCGroup(MVCGroupConfiguration configuration,
            String mvcId,
            Map<String,Object> args,
            MVCFunction<M,V,C> handler)  | 
| Modifier and Type | Method and Description | 
|---|---|
GriffonView | 
AbstractMVCGroup.getView()  | 
GriffonView | 
DelegatingMVCGroup.getView()  | 
| Modifier and Type | Method and Description | 
|---|---|
Map<String,? extends GriffonView> | 
AbstractMVCGroupManager.getViews()  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
AbstractJavaFXGriffonView
JavaFX-friendly implementation of the GriffonView interface. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
AbstractLanternaGriffonView
Lanterna-friendly implementation of the GriffonView interface. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
AbstractPivotGriffonView
Pivot-friendly implementation of the GriffonView interface. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
AbstractSwingGriffonView
Swing-friendly implementation of the GriffonView interface. 
 |