Uses of Class
templates.presentation.TemplateEditableCanvas

Packages that use TemplateEditableCanvas
templates.presentation   
 

Uses of TemplateEditableCanvas in templates.presentation
 

Subclasses of TemplateEditableCanvas in templates.presentation
 class TemplateConsistencyCanvas
          A TemplateEditableCanvas which highlights the elements which contribute to consistency issues in the template design.
 

Fields in templates.presentation declared as TemplateEditableCanvas
protected  TemplateEditableCanvas UIActions.CreateEntityAction.canvas
          The canvas which will contain the entity.
protected  TemplateEditableCanvas UIActions.OpenModelAction.canvas
          The canvas which contains the entity for the template component whose underlying model has to be loaded and activated.
protected  TemplateEditableCanvas UIActions.LabelAction.canvas
          The canvas which contains the entity which will be relabelled.
protected  TemplateEditableCanvas UIActions.DeleteAction.canvas
          The canvas which contains the diagram element to be deleted.
protected  TemplateEditableCanvas UIActions.EventLinksAction.canvas
          The canvas which contains the connector whose events links will be specified.
protected  TemplateEditableCanvas UIActions.AssignFSAAction.canvas
          The canvas which contains the entity to whose template component an FSA model will be assigned.
protected  TemplateEditableCanvas UIActions.DeleteAllLinksAction.canvas
          The canvas which contains the connector whose event links will be removed.
protected  TemplateEditableCanvas UIActions.MatchEventsAction.canvas
          The canvas which contains the connector whose event links will be replaced.
protected  TemplateEditableCanvas UIActions.SetModuleAction.canvas
          The canvas which contains the template component whose type will be set.
protected  TemplateEditableCanvas UIActions.SetChannelAction.canvas
          The canvas which contains the template component whose type will be set.
protected  TemplateEditableCanvas UIActions.SetColorAction.canvas
          The canvas which contains the entity whose background color will be changed.
protected  TemplateEditableCanvas UIActions.ResetIconAction.canvas
          The canvas which contains the entity whose icon will be reset.
protected  TemplateEditableCanvas UIActions.ShowSupAction.canvas
          The canvas which contains the channel for which a supervisor will be computed.
protected  TemplateEditableCanvas UIActions.ConnectAction.canvas
          The canvas which contains the entity where the new connector will originate.
protected  TemplateEditableCanvas UIActions.SetControllabilityAction.canvas
          Deprecated.  
protected  TemplateEditableCanvas TemplateToolset.TemplateUID.canvas
          The main canvas which lets the user edit the template design.
protected  TemplateEditableCanvas MouseInterpreter.canvas
          The canvas with which the user interacts.
protected static TemplateEditableCanvas EventLinksDialog.canvas
          The canvas which contains the connector between the TemplateComponents whose events are linked.
protected static TemplateEditableCanvas EntityLabellingDialog.canvas
          The canvas which contains the entity which will be relabelled.
protected static TemplateEditableCanvas ControllabilityDialog.canvas
          Deprecated.  
protected static TemplateEditableCanvas AssignFSADialog.canvas
          The canvas which contains the entity to whose TemplateComponent a new FSA model will be assigned.
 

Methods in templates.presentation with parameters of type TemplateEditableCanvas
static void EventLinksDialog.showAndAssign(TemplateEditableCanvas canvas, Connector connector)
          Show the assign events dialog to let the user link events between the TemplateComponents contained by the Entitys connected by the given Connector.
static void AssignFSADialog.showAndAssign(TemplateEditableCanvas canvas, Entity entity)
          Refresh the content of the combo boxes with FSA models and templates, display the FSA model assignment dialog, and wait for user input.
static void EntityLabellingDialog.showAndLabel(TemplateEditableCanvas canvas, Entity entity)
          Display the component labelling dialog to let the user enter a new label for the given entity.
static void ControllabilityDialog.showAndModify(TemplateEditableCanvas canvas, Entity channel)
          Deprecated.  
 

Constructors in templates.presentation with parameters of type TemplateEditableCanvas
ConnectorPopup(TemplateEditableCanvas canvas, Connector connector)
          Construct the context pop-up menu for the given connector.
DiagramPopup(TemplateEditableCanvas canvas, java.awt.Point location)
          Construct the context pop-up menu for the given convas.
EntityPopup(TemplateEditableCanvas canvas, Entity entity)
          Construct the context pop-up menu for the given entity.
MouseInterpreter(TemplateEditableCanvas canvas)
          Construct a new mouse interpreter for the given canvas.
UIActions.AssignFSAAction(TemplateEditableCanvas canvas, Entity entity)
          Construct an action to display the dialog for assigning an FSA model to the given template component.
UIActions.ConnectAction(TemplateEditableCanvas canvas, Entity entity)
          Construct an action to start drawing a new connector from the given entity.
UIActions.CreateEntityAction(TemplateEditableCanvas canvas, java.awt.Point location)
          Construct an action to add a new Entity at the given location.
UIActions.DeleteAction(TemplateEditableCanvas canvas, DiagramElement element)
          Construct an action to delete a given diagram element from a given template diagram.
UIActions.DeleteAllLinksAction(TemplateEditableCanvas canvas, Connector connector)
          Construct an action to remove all links between the events of the template components connected by the given connector.
UIActions.EventLinksAction(TemplateEditableCanvas canvas, Connector connector)
          Construct an action to display the dialog for specifying the linking of events between the template components connected by the given connector.
UIActions.LabelAction(TemplateEditableCanvas canvas, Entity entity)
          Construct an action to display the entity labelling dialog and let the user relabel the given Entity.
UIActions.MatchEventsAction(TemplateEditableCanvas canvas, Connector connector)
          Construct an action to replace all links between the template components connected by the given connector with links only between the events with matching names.
UIActions.OpenModelAction(TemplateEditableCanvas canvas, Entity entity)
          Construct an action to load and activate in IDES the underlying model of the specified template component.
UIActions.ResetIconAction(TemplateEditableCanvas canvas, Entity entity)
          Construct an action to reset the icon of the given entity to its default form.
UIActions.SetChannelAction(TemplateEditableCanvas canvas, Entity entity)
          Construct an action to set the type of the given template component to TemplateComponent.TYPE_CHANNEL (channel).
UIActions.SetColorAction(TemplateEditableCanvas canvas, Entity entity)
          Construct an action to display the color chooser dialog to let the user select the background color of the icon of the given entity.
UIActions.SetControllabilityAction(TemplateEditableCanvas canvas, Entity channel)
          Deprecated.  
UIActions.SetModuleAction(TemplateEditableCanvas canvas, Entity entity)
          Construct an action to set the type of the given template component to TemplateComponent.TYPE_MODULE (module).
UIActions.ShowSupAction(TemplateEditableCanvas canvas, Entity channel)
          Construct an action to compute and display the supervisor for the given channel.