Package ptolemy.actor.gui
Interface Editable
-
- All Known Implementing Classes:
AnnotationEditorFactory
,ArrayOfRecordsConfigureFactory
,CodeGeneratorGUIFactory
,CommunicationAspectMonitor.CommunicationAspectMonitorEditorFactory
,DocViewerFactory
,EditorFactory
,ExceptionManagerGUIFactory
,ExecutionAspectPlotterEditorFactory
,FileOrURLEditorFactory
,GiottoCEmachineFrameworkGenerator.CEmachineFrameworkEditorFactory
,GiottoCodeGenerator.GiottoEditorFactory
,GTIngredientsEditor.Factory
,HighlightEntities.HighlightIcons
,LiveLink
,MappingEditorGUIFactory
,MathematicalModelConverterGUIFactory
,Occupants.OccupantsConfigureFactory
,OntologySolverGUIFactory
,SchedulePlotter.SchedulePlotterEditorFactory
,TDLCodeGenerator.TDLEditorFactory
,TextEditorConfigureFactory
,TransformationAttributeEditorFactory
,VisibleParameterEditorFactory
,VisualSequenceDirector.SequenceConfigureFactory
public interface Editable
This is an interface for objects that can create an editor for interactively configuring something.- Since:
- Ptolemy II 10.0
- Version:
- $Id$
- Author:
- Edward A. Lee
- See Also:
EditorFactory
- Pt.AcceptedRating:
- Red (johnr)
- Pt.ProposedRating:
- Red (eal)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
createEditor()
Create an editor.void
createEditor(NamedObj object)
Create an editor for configuring the specified object.void
createEditor(NamedObj object, java.awt.Frame parent)
Create an editor for configuring the specified object with the specified parent window.
-
-
-
Method Detail
-
createEditor
void createEditor()
Create an editor. This editor will have no parent window.
-
createEditor
void createEditor(NamedObj object)
Create an editor for configuring the specified object. This editor will have no parent window.- Parameters:
object
- The object to configure.
-
createEditor
void createEditor(NamedObj object, java.awt.Frame parent)
Create an editor for configuring the specified object with the specified parent window.- Parameters:
object
- The object to configure.parent
- The parent window, or null if there is none.
-
-