Package adams.flow.processor
Interface GraphicalOutputProducingProcessor
-
- All Superinterfaces:
ActorProcessor
,Comparable<ActorProcessor>
,Destroyable
,OptionHandler
,ShallowCopySupporter<ActorProcessor>
- All Known Implementing Classes:
AbstractActorListingProcessor
,AbstractListingProcessor
,AbstractListNameUsage
,ActorStatistics
,CheckActorReferenceUsage
,CheckPlaceholders
,CheckStorageUsage
,CheckVariableUsage
,FindText
,ListActorReferenceUsage
,ListActorUsage
,ListAllStorageNames
,ListAllVariables
,ListAnnotationTags
,ListCallableActorUsage
,ListClassUsage
,ListDatabaseConnections
,ListObjectCommandlines
,ListPaths
,ListStorageUsage
,ListStructureModifyingActors
,ListTODOs
,ListVariableUsage
public interface GraphicalOutputProducingProcessor extends ActorProcessor
Interface for processors that can generate graphical output.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Component
getGraphicalOutput()
Returns the graphical output that was generated.String
getTitle()
Returns the title for the dialog.boolean
hasGraphicalOutput()
Returns whether graphical output was generated.-
Methods inherited from interface adams.flow.processor.ActorProcessor
compareTo, getErrors, hasErrors, process, shallowCopy, shallowCopy
-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
-
-
-
Method Detail
-
hasGraphicalOutput
boolean hasGraphicalOutput()
Returns whether graphical output was generated.- Returns:
- true if graphical output was generated
-
getGraphicalOutput
Component getGraphicalOutput()
Returns the graphical output that was generated.- Returns:
- the graphical output
-
getTitle
String getTitle()
Returns the title for the dialog.- Returns:
- the title
-
-