Uses of Class
ilog.views.IlvObjectInteractor

Packages that use IlvObjectInteractor
ilog.tgo.composite Provides the classes for handling the zoom policies and the layer policies. 
ilog.tgo.graphic Provides all the classes for handling the graphical representations of the telecom objects. 
ilog.tgo.interactor Provides the predefined interactors for a view. 
ilog.views Provides the classes necessary to create a high performance 2D graphic application. 
ilog.views.bpmn Contains the classes for the BPMN Support. 
ilog.views.graphic Contains the predefined graphic objects of JViews. 
ilog.views.graphic.composite.objectinteractor Provides a predefined interactor for the composite graphics. 
ilog.views.hypergraph This package contains the graphic framework for hypergraphs. 
ilog.views.hypergraph.edgeconnector This package contains the predefined hyperedge connectors of JViews. 
ilog.views.maps.graphic This package contains graphic objects specialized for cartographic display. 
ilog.views.objectinteractor Provides the predefined interactors for a graphic object. 
ilog.views.prototypes Provides legacy facilities that allow you to define custom graphic objects easily. 
ilog.views.sdm The main ILOG JViews Stylable Data Mapper (SDM) package. 
ilog.views.sdm.renderer Contains the classes that define the renderers of an SDM engine. 
ilog.views.svg Contains classes adding SVG (Scalable Vector Graphic) support to ILOG JViews. 
 

Uses of IlvObjectInteractor in ilog.tgo.composite
 

Methods in ilog.tgo.composite that return IlvObjectInteractor
 IlvObjectInteractor IltcCompositeGraphic.getInteractor(ilog.tgo.composite.internal.IltcGraphicElement g)
          Returns the interactor to be positioned on a graphic element.
 

Uses of IlvObjectInteractor in ilog.tgo.graphic
 

Subclasses of IlvObjectInteractor in ilog.tgo.graphic
 class IltExpandCollapseInteractor
          IltExpandCollapseInteractor is an object interactor set on subgrapher nodes.
 class IltObjectInteractor
          Deprecated. Since JTGO 3.0, object interactors are managed by the Controller element of each Graphic Component. Controllers are part of the MVC trio that composes a graphic component. It is responsible for storing and setting interactors to the view and its objects. Interactors can be defined using the Graphic Controller API or by loading cascading style sheets with Interactor definition. Concerning tooltips, their customization is now achieved only through CSS using properties toolTipText or toolTipGraphic. The toolTipGraphic property has priority.
 

Methods in ilog.tgo.graphic that return IlvObjectInteractor
 IlvObjectInteractor IltCompositeInteractions.getElementFallbackInteractor(IltGraphicElementName elementName)
          Deprecated. Returns the fallback interactor for a graphic element.
 IlvObjectInteractor IltCompositeInteractions.getElementInteractor(IltGraphicElementName elementName)
          Deprecated. Interactors are stored in the Controller component that is part of each graphic component. Interactors are no longer associated to graphic elements, instead they are associated to business attributes. Business attributes are graphically represented as decorations attached to the object base, for instance, the alarm balloon decoration is the graphic representation of attribute newAlarmCount in the Network component. Therefore, if you would like to add interactions to an alarm balloon, you should register an object interactor associated to this attribute. This feature is available in the Network, Equipment and Table components.
 IlvObjectInteractor IltCompositeInteractions.getFallbackInteractor()
          Deprecated. Returns the fallback interactor for the composite graphic object as a whole.
 IlvObjectInteractor IltCompositeInteractions.getInteractor()
          Deprecated. Interactors are stored in the Controller component that is part of each graphic component.
 IlvObjectInteractor IltCompositeGraphic.getInteractor(ilog.tgo.composite.internal.IltcGraphicElement g)
          Returns the interactor to be positioned on a graphic element.
 IlvObjectInteractor IltCompositeInteractions.getInteractorOn(IltGraphicElementName elementName)
          Deprecated. Returns the interactor to be positioned on a given graphic element.
 

Methods in ilog.tgo.graphic with parameters of type IlvObjectInteractor
 void IltCompositeInteractions.setElementFallbackInteractor(IltGraphicElementName elementName, IlvObjectInteractor interactor)
          Deprecated. Sets the interactor for a graphic element.
 void IltCompositeInteractions.setElementInteractor(IltGraphicElementName elementName, IlvObjectInteractor interactor)
          Deprecated. Interactors are stored in the Controller component that is part of each graphic component. Interactors are no longer associated to graphic elements, instead they are associated to business attributes. Business attributes are graphically represented as decorations attached to the object base, for instance, the alarm balloon decoration is the graphic representation of attribute newAlarmCount in the network component. Therefore, if you would like to add interactions to an alarm balloon, you should register an object interactor associated to this attribute. This feature is available in the Network, Equipment and Table components.
 void IltCompositeInteractions.setFallbackInteractor(IlvObjectInteractor interactor)
          Deprecated. Sets the fallback interactor for the composite graphic object as a whole.
 void IltCompositeInteractions.setInteractor(IlvObjectInteractor interactor)
          Deprecated. Interactors are stored in the Controller component that is part of each graphic component. You can customize object interactors using the Graphic controller API or using CSS.
 

Uses of IlvObjectInteractor in ilog.tgo.interactor
 

Subclasses of IlvObjectInteractor in ilog.tgo.interactor
 class IltMoveObjectInteractor
          This class defines an object interactor which allows the user to move the graphic object.
 

Uses of IlvObjectInteractor in ilog.views
 

Subclasses of IlvObjectInteractor in ilog.views
 class IlvHoverHighlightingImageOperation
          The hover highlighting image operation allows you to highlight a graphic object when the mouse hovers on it.
 class IlvLinkImageEditInteractor
          The IlvLinkImageEditInteractor class is used to edit a link image.
 class IlvPolyPointsEdition
          IlvPolyPointsEdition is an object interactor used to edit graphic objects that implement the interface IlvPolyPointsInterface, such as IlvPolyPoints, IlvPolyline, and so forth.
 class IlvReshapeSelection
          An object interactor that reshapes an instance of IlvDrawSelection.
 

Methods in ilog.views that return IlvObjectInteractor
static IlvObjectInteractor IlvObjectInteractor.Get(String name)
          Returns an object interactor.
 IlvObjectInteractor IlvGraphic.getAndAssociateObjectInteractor()
          Returns the active object interactor.
 IlvObjectInteractor IlvGraphic.getObjectInteractor()
          Returns the object interactor associated with this object.
 IlvObjectInteractor IlvManager.getObjectInteractor(IlvGraphic obj)
          Deprecated. Beginning with ILOG JViews 5.0 you should use IlvGraphic.getObjectInteractor() instead.
 

Methods in ilog.views with parameters of type IlvObjectInteractor
protected  void IlvGraphic.notifyObjectInteractorToManager(IlvObjectInteractor interactor)
          Notifies the manager that the object interactor has changed.
static void IlvObjectInteractor.Put(String name, IlvObjectInteractor inter)
          Registers an object interactor.
 void IlvManager.setObjectInteractor(IlvGraphic obj, IlvObjectInteractor interactor)
          Deprecated. Beginning with ILOG JViews 5.0 you should use IlvGraphic.setObjectInteractor(ilog.views.IlvObjectInteractor) instead.
 void IlvGraphic.setObjectInteractor(IlvObjectInteractor interactor)
          Changes the object interactor associated with this object.
 

Uses of IlvObjectInteractor in ilog.views.bpmn
 

Subclasses of IlvObjectInteractor in ilog.views.bpmn
 class IlvBPMNCompositeInteractor
          An object interactor that collapses and expands a sub-process.
 

Uses of IlvObjectInteractor in ilog.views.graphic
 

Subclasses of IlvObjectInteractor in ilog.views.graphic
 class IlvGraphicHandleInteractor
          This class is an object interactor that delegates to another object interactor.
static class IlvGraphicSet.DelegateObjectInteractor
          A delegating interactor for IlvGraphicSet objects.
 class IlvSplineEdition
          IlvSplineEdition is an object interactor used to edit IlvSpline objects.
 class IlvSplineLinkEdition
          IlvSplineLinkEdition is an object interactor used to edit IlvSplineLinkImage objects.
static class IlvText.Editor
          This is the text editor of IlvText.
 

Fields in ilog.views.graphic declared as IlvObjectInteractor
static IlvObjectInteractor IlvFullZoomingGraphic.DELEGATE_INTERACTOR
          The delegate interactor for IlvFullZoomingGraphic objects.
static IlvObjectInteractor IlvHalfZoomingGraphic.DELEGATE_INTERACTOR
          The delegate interactor for IlvHalfZoomingGraphic objects.
 

Methods in ilog.views.graphic with parameters of type IlvObjectInteractor
 boolean IlvFullZoomingGraphic.isDelegateObjectInteractor(IlvObjectInteractor inter)
          Tests whether the input object interactor is the delegate interactor suitable for this class.
 boolean IlvHalfZoomingGraphic.isDelegateObjectInteractor(IlvObjectInteractor inter)
          Tests whether the input object interactor is the delegate interactor suitable for this class.
 boolean IlvGraphicHandleBag.isDelegateObjectInteractor(IlvObjectInteractor inter)
          Tests whether the input object interactor is the delegate interactor suitable for this class.
protected  void IlvFullZoomingGraphic.notifyObjectInteractorToManager(IlvObjectInteractor interactor)
          Notifies the manager that the object interactor has changed.
protected  void IlvHalfZoomingGraphic.notifyObjectInteractorToManager(IlvObjectInteractor interactor)
          Notifies the manager that the object interactor has changed.
protected  void IlvGraphicHandleBag.notifyObjectInteractorToManager(IlvObjectInteractor interactor)
          Notifies the manager that the object interactor has changed.
 

Uses of IlvObjectInteractor in ilog.views.graphic.composite.objectinteractor
 

Subclasses of IlvObjectInteractor in ilog.views.graphic.composite.objectinteractor
 class IlvCompositeInteractor
          An object interactor that allows to perform Swing actions defined on IlvCompositeGraphic instances.
 

Uses of IlvObjectInteractor in ilog.views.hypergraph
 

Subclasses of IlvObjectInteractor in ilog.views.hypergraph
 class IlvHyperEdgeEdition
          An object interactor used to edit objects of class IlvHyperEdge.
 class IlvSegmentedHyperEdgeEdition
          An object interactor used to edit objects of class IlvSegmentedHyperEdge.
 

Uses of IlvObjectInteractor in ilog.views.hypergraph.edgeconnector
 

Subclasses of IlvObjectInteractor in ilog.views.hypergraph.edgeconnector
 class IlvHyperEdgePinConnectorEdition
          An object interactor used to edit objects of class IlvHyperEdgePinConnector.
 

Uses of IlvObjectInteractor in ilog.views.maps.graphic
 

Subclasses of IlvObjectInteractor in ilog.views.maps.graphic
 class IlvMapPolyPointEdition
          A IlvPolyPointsEdition that takes care of the MINIMUM_POINTS and MAXIMUM_POINTS properties if such properties are attached to the edited IlvGraphic.
 

Uses of IlvObjectInteractor in ilog.views.objectinteractor
 

Subclasses of IlvObjectInteractor in ilog.views.objectinteractor
 class IlvButtonInteractor
          This object interactor makes a graphic object act like a standard interface button.
 class IlvMoveObjectInteractor
          IlvMoveObjectInteractor is a local object interactor class that is used to let the user move a graphic object in a manager view.
 class IlvTextEditor
          This is the object interactor designed for a IlvTextSelection.
 

Uses of IlvObjectInteractor in ilog.views.prototypes
 

Subclasses of IlvObjectInteractor in ilog.views.prototypes
 class IlvGraphicGroupInteractor
          The class IlvGraphicGroupInteractor dispatches user events to a group encapsulated in an IlvGraphicGroup.
 class IlvGroupInteractor
          The class IlvGroupInteractor is a subclass of IlvObjectInteractor that can be used to define user interactions on a graphic element of a group.
 

Uses of IlvObjectInteractor in ilog.views.sdm
 

Subclasses of IlvObjectInteractor in ilog.views.sdm
 class IlvSDMCompositeInteractor
          The object interactor that is used on the composite graphics to invoke Swing actions.
 

Uses of IlvObjectInteractor in ilog.views.sdm.renderer
 

Subclasses of IlvObjectInteractor in ilog.views.sdm.renderer
static class IlvExpandCollapseRenderer.ExpandCollapseInteractor
          Deprecated. ExpandCollapseInteractor is the object interactor that is set on expandable nodes by the IlvExpandCollapseRenderer.
static class IlvLaneRenderer.ResizeLaneInteractor
          This class is public only to allow saving in an IVL file the contents of a grapher associated with an SDM engine and containing lanes.
static class IlvSubGraphRenderer.ExpandCollapseInteractor
          ExpandCollapseInteractor is the object interactor that is set on subgrapher nodes by the IlvSubGraphRenderer.
 

Fields in ilog.views.sdm.renderer declared as IlvObjectInteractor
protected  IlvObjectInteractor IlvInteractorRenderer._interactor
          The interactor that this renderer will put on graphic objects.
 

Uses of IlvObjectInteractor in ilog.views.svg
 

Subclasses of IlvObjectInteractor in ilog.views.svg
 class SVGHREFObjectInteractor
          This IlvObjectInteractor subclass allows the SVGInputStream to reproduce the SVG 'a' (hyperlink) element behavior in a JViews IlvManager.
 



Copyright © 1996-2007 ILOG S.A. All rights reserved.   Documentation homepage.   . All Rights Reserved.