Uses of Interface
ilog.cpl.graphic.IlpGraphicView

Packages that use IlpGraphicView
ilog.cpl.css.function Contains function definitions to be used with the Cascading Style Sheet engine. 
ilog.cpl.equipment Together with ilog.cpl.IlpEquipment, this package constitutes the ILOG JTGO Equipment component. 
ilog.cpl.graph Contains the abstract common implementation for both the IlpNetwork and IlpEquipment components, including a model, a view and a controller and related classes. 
ilog.cpl.graphic Provides classes and interfaces to create graphic objects. 
ilog.cpl.graphic.component Deprecated Provides predefined graphic objects based on Swing components. 
ilog.cpl.graphic.views Provides graphic object and graphic view classes for creating and configuring graphic views based on ILOG JViews. 
ilog.cpl.interactor Contains all the base classes of interactors. 
ilog.cpl.network Together with ilog.cpl.IlpNetwork, this package constitutes the ILOG JTGO Network component. 
ilog.cpl.style Deprecated Provides classes and interfaces for handling styles (see IlpStyle). 
ilog.cpl.table Together with ilog.cpl.IlpTable, this package constitutes the ILOG JTGO Table component. 
ilog.cpl.table.interactor Contains all the table-specific interactors giving the ILOG JTGO Table component its default behavior. 
ilog.cpl.tree Together with ilog.cpl.IlpTree, this package constitutes the ILOG JTGO Tree component. 
ilog.tgo.composite Provides the classes for handling the zoom policies and the layer policies. 
ilog.tgo.css.function Contains predefined functions which can be used with the Cascading Style Sheet engine to compute values to ILOG JTGO object properties. 
ilog.tgo.faces Contains the common types used within JViews TGO Faces. 
ilog.tgo.graphic Provides all the classes for handling the graphical representations of the telecom objects. 
ilog.tgo.graphic.renderer Provides classes and support to create base renderers for telecom objects. 
ilog.tgo.model Provides classes for telecom objects, states and alarms. 
 

Uses of IlpGraphicView in ilog.cpl.css.function
 

Methods in ilog.cpl.css.function with parameters of type IlpGraphicView
 Object IlpCSSFunction.call(Object[] args, Class type, IlpContext appc, IlpGraphicView view, IlpRepresentationObject ro, IlpAttribute attribute)
          Calls the function.
 

Uses of IlpGraphicView in ilog.cpl.equipment
 

Classes in ilog.cpl.equipment that implement IlpGraphicView
 class IlpEquipmentView
          This class displays the contents of an IlpEquipmentModel in an ILOG JViews grapher.
 

Uses of IlpGraphicView in ilog.cpl.graph
 

Classes in ilog.cpl.graph that implement IlpGraphicView
 class IlpGraphView
          This class displays the contents of an IlpGraphModel in an ILOG JViews grapher.
 

Uses of IlpGraphicView in ilog.cpl.graphic
 

Subinterfaces of IlpGraphicView in ilog.cpl.graphic
 interface IlpStylableGraphicView
          This interface models views where objects can be graphically represented according to the Model-View-Controller paradigm and that can be customized using Cascading Style Sheets (CSS).
 

Methods in ilog.cpl.graphic that return IlpGraphicView
 IlpGraphicView IlpAbstractGraphic.getView()
          Returns the view in which the graphic is being displayed.
 IlpGraphicView IlpBasicGraphicViewStyleManager.getView()
          Deprecated. Returns the graphic view which is using this configuration.
 IlpGraphicView IlpToolTipManager.getView()
          Returns the graphic view associated to this manager, if there is one.
 IlpGraphicView IlpDefaultGraphicViewStyleManager.getView()
          Deprecated. Returns the graphic view which is using this configuration.
 IlpGraphicView IlpGraphic.getView()
          Returns the view in which this graphic is being used.
 IlpGraphicView IlpGraphicController.getView()
          Returns the view that is being controlled.
 IlpGraphicView IlpAbstractGraphicController.getView()
          Returns the view that is being controlled.
 

Methods in ilog.cpl.graphic with parameters of type IlpGraphicView
static IlpToolTipManager IlpToolTipManager.AddToolTipSupport(IlpGraphicView view)
          Adds tooltip support to an IlpGraphicView object.
 void IlpGraphicController.attach(IlpGraphicView view)
          Attaches a controller to a given view.
 void IlpAbstractGraphicController.attach(IlpGraphicView v)
          Attaches a controller to a given view.
protected  void IlpAbstractGraphicController.attachView(IlpGraphicView view)
           
 IlpGraphic IlpGraphicRenderer.createGraphic(IlpGraphicView view, IlpRepresentationObject object, IlpAttribute attribute, IlpGraphicRendererContext rendererContext)
          Creates a new IlpGraphic from an IlpRepresentationObject and optional attribute.
protected  IlpGraphicViewStyleManager IlpAbstractGraphicController.createGraphicViewStyleManager(IlpContext context, IlpGraphicView view)
          Creates the graphic view style manager, either by retrieving it from an XML file or any other storage, or simply by creating an empty instance.
protected  IlpViewInteractionContext IlpAbstractGraphicController.createViewInteractionContext(IlpGraphicView view)
          Returns a new view interaction context for the given view.
 Object IlpGraphicRendererContext.getPropertyValue(String property, IlpGraphicView view, IlpClass bclass, IlpAttribute battr)
          Retrieves the value of a styling property for a given a business attribute.
 Object IlpGraphicRendererContext.getPropertyValue(String property, IlpGraphicView view, IlpRepresentationObject ro)
          Retrieves the value of a styling property for a given representation object in the graphic view.
 Object IlpGraphicRendererContext.getPropertyValue(String property, IlpGraphicView view, IlpRepresentationObject ro, IlpAttribute a)
          Retrieves the value of a styling property for a given representation object in the graphic view.
static IlpToolTipManager IlpToolTipManager.GetToolTipManager(IlpGraphicView view)
          Returns the IlpToolTipManager instance associated with a view, or null if tooltip support for the view has not been added.
static boolean IlpToolTipManager.HasToolTipSupport(IlpGraphicView view)
          Returns true if the graphic view has tooltip support.
protected  void IlpAbstractGraphicController.initGraphicViewStyleManager(IlpContext context, IlpGraphicView view)
          Creates the graphic view style manager, either retrieving the configuration from an XML file or any other storage, or simply creating an empty instance; and initializes the view with it.
static void IlpToolTipManager.RemoveToolTipSupport(IlpGraphicView view)
          Removes tooltip support from an IlpGraphicView object.
 

Constructors in ilog.cpl.graphic with parameters of type IlpGraphicView
IlpAbstractGraphic(IlpGraphicView view, IlpRepresentationObject object)
          Creates a graphic to represent the given object inside the given view.
IlpAbstractGraphic(IlpGraphicView view, IlpRepresentationObject object, IlpAttribute attribute)
          Creates a graphic to represent an attribute in the given object inside the given view.
IlpBasicGraphicViewStyleManager(IlpContext context, IlpGraphicView graphicView)
          Deprecated. Creates a basic graphic view style manager, based on the given context and to be used by the given graphic view.
IlpCompositeGraphic(IlpGraphicView graphicView, IlpRepresentationObject object)
          Deprecated. Creates a graphic to represent the given object inside the given view.
IlpCompositeGraphic(IlpGraphicView graphicView, IlpRepresentationObject object, IlpAttribute attribute)
          Deprecated. Creates a graphic to represent an attribute in the given object inside the given view.
IlpDefaultGraphicViewStyleManager(IlpContext context, IlpGraphicView graphicView)
          Deprecated. Creates a default graphic view style manager, based on the given context and to be used by the given graphic view.
IlpGraphicRendererContext(IlpGraphicView view, IlpRepresentationObject ro, IlpAttribute attribute, boolean selected, boolean expanded, boolean focus, boolean showChildren)
          Creates a renderer context with the given initial information.
IlpLeafGraphic(IlpGraphicView graphicView, IlpRepresentationObject object)
          Creates a graphic to represent the given object inside the given view.
IlpLeafGraphic(IlpGraphicView graphicView, IlpRepresentationObject object, IlpAttribute attribute)
          Creates a graphic to represent an attribute in the given object inside the given view.
IlpLeafGraphic(IlpGraphicView graphicView, IlpRepresentationObject object, IlpAttribute attribute, JComponent c)
          Creates a graphic to represent an attribute in the given object inside the given view.
IlpLeafGraphic(IlpGraphicView graphicView, IlpRepresentationObject object, JComponent c)
          Creates a graphic to represent the given object inside the given view.
IlpToolTipManager(IlpGraphicView v)
          IlpToolTipManagers are only created by the library.
 

Uses of IlpGraphicView in ilog.cpl.graphic.component
 

Constructors in ilog.cpl.graphic.component with parameters of type IlpGraphicView
IlpAlarmBalloon(IlpGraphicView view, IlpRepresentationObject obj, IlpAttribute attr, IlpGraphic inner)
          Deprecated. Creates a new instance by adding the inner graphic within the alarm balloon according to the given orientation.
IlpAlarmBalloon(IlpGraphicView view, IlpRepresentationObject obj, IlpAttribute attr, IlpGraphic inner, Insets i, int orient, int depth, int thickness, Color bg, Color border, Color shadow, int rad, int distance)
          Deprecated. Creates a new instance by adding the inner graphic within the alarm balloon according to the given orientation.
IlpAlarmBalloon(IlpGraphicView view, IlpRepresentationObject obj, IlpAttribute attr, IlpGraphic inner, int orient, Color bg)
          Deprecated. Creates a new instance by adding the inner graphic within the alarm balloon, according to the given orientation.
IlpAlarmBalloon(IlpGraphicView view, IlpRepresentationObject obj, IlpGraphic inner)
          Deprecated. Creates a new instance by adding the inner graphic within the alarm balloon, according to the given orientation.
IlpBalloon(IlpGraphicView view, IlpRepresentationObject obj, IlpAttribute attr, IlpGraphic inner)
          Deprecated. Creates a new instance, grouping an outer element and an inner element.
IlpBalloon(IlpGraphicView view, IlpRepresentationObject obj, IlpAttribute attr, IlpGraphic inner, Insets i, int orient, int depth, int thickness, Color bg, Color border, Color shadow)
          Deprecated. Creates a new instance, grouping an outer element and an inner element.
IlpCentered(IlpGraphicView view, IlpRepresentationObject obj, Component outer, IlpGraphic inner)
          Deprecated. Creates a new instance, grouping an outer element and an inner element.
IlpCentered(IlpGraphicView view, IlpRepresentationObject obj, IlpAttribute attr, Component outer, IlpGraphic inner)
          Deprecated. Creates a new instance, grouping an outer element and an inner element.
IlpCentered(IlpGraphicView view, IlpRepresentationObject obj, IlpAttribute attr, Component outer, IlpGraphic inner, Insets i)
          Deprecated. Creates a new instance, grouping an outer element and an inner element.
IlpInfoBalloon(IlpGraphicView view, IlpRepresentationObject obj, IlpAttribute attribute, IlpGraphic inner)
          Deprecated. Creates a new instance by adding the inner graphic within the information balloon, according to the given orientation.
IlpInfoBalloon(IlpGraphicView view, IlpRepresentationObject obj, IlpAttribute attr, IlpGraphic inner, Insets i, int orient, int depth, int thickness, Color bg, Color border, Color shadow)
          Deprecated. Creates a new instance by adding the inner graphic within the information balloon, according to the given orientation.
IlpInfoBalloon(IlpGraphicView view, IlpRepresentationObject obj, IlpAttribute attr, IlpGraphic inner, int orient, Color bg)
          Deprecated. Creates a new instance by adding the inner graphic within the information balloon, according to the given orientation.
IlpInfoBalloon(IlpGraphicView view, IlpRepresentationObject obj, IlpGraphic inner)
          Deprecated. Creates a new instance by adding the inner graphic within the information balloon, according to the given orientation.
IlpStacker(IlpGraphicView view, IlpRepresentationObject obj)
          Deprecated. Creates a new stacker graphic.
IlpStacker(IlpGraphicView view, IlpRepresentationObject obj, IlpAttribute attribute)
          Deprecated. Creates a new stacker graphic.
IlpStacker(IlpGraphicView view, IlpRepresentationObject obj, IlpAttribute attr, int orientation, int alignment, int spacing)
          Deprecated. Creates a new stacker graphic for the attribute or representation object, with the given characteristics for orientation, alignment and spacing.
 

Uses of IlpGraphicView in ilog.cpl.graphic.views
 

Subinterfaces of IlpGraphicView in ilog.cpl.graphic.views
 interface IlpStylableViewsView
          This is a graphic view that uses an ILOG JViews IlvManagerView object for displaying and that can be customized using Cascading Style Sheets (CSS).
 interface IlpViewsView
          This is a graphic view which uses an ILOG JViews IlvManagerView object for displaying.
 

Methods in ilog.cpl.graphic.views that return IlpGraphicView
 IlpGraphicView IlpManagerView.getGraphicView()
          Returns the graphic view to which this manager view belongs.
 

Constructors in ilog.cpl.graphic.views with parameters of type IlpGraphicView
IlpManagerView(IlpGraphicView cplView)
          Creates a new manager view.
IlpManagerView(IlpGraphicView cplView, IlvManager manager)
          Creates a new manager view to display the contents of the specified manager.
IlpManagerView(IlpGraphicView cplView, IlvManager manager, IlvTransformer t)
          Creates a new manager view.
IlpManagerView(IlpGraphicView cplView, IlvManager manager, IlvTransformer t, boolean isInteracted)
          Creates a new manager view.
 

Uses of IlpGraphicView in ilog.cpl.interactor
 

Methods in ilog.cpl.interactor that return IlpGraphicView
 IlpGraphicView IlpDefaultInteractionContext.getView()
          Returns the graphic view.
 IlpGraphicView IlpViewActionEvent.getView()
          Returns the view in which the interaction occurred.
 IlpGraphicView IlpAbstractPopupMenuFactory.getView()
          Returns the view in which the pop-up menu is to be displayed.
 IlpGraphicView IlpInteractionContext.getView()
          Returns the view this context refers to.
 IlpGraphicView IlpObjectActionEvent.getView()
          Returns the view in which the interaction occurred.
 

Constructors in ilog.cpl.interactor with parameters of type IlpGraphicView
IlpDefaultInteractionContext(IlpGraphicView view)
          Constructs an interaction context dedicated to a view.
IlpDefaultObjectInteractionContext(IlpGraphicView view, IlpGraphic graphic)
          Constructs an interaction context dedicated to a view and a single object in this view.
IlpDefaultObjectInteractionContext(IlpGraphicView view, IlpGraphic graphic, AWTEvent event)
          Constructs an interaction context dedicated to a view and a single object in this view.
IlpDefaultObjectInteractionContext(IlpGraphicView view, IlpRepresentationObject representationObject)
          Constructs an interaction context dedicated to a view and a single object in this view.
IlpDefaultObjectInteractionContext(IlpGraphicView view, IlpRepresentationObject representationObject, IlpAttribute attribute)
          Constructs an interaction context dedicated to a view, a single object and a single attribute in this view.
IlpDefaultObjectInteractionContext(IlpGraphicView view, IlpRepresentationObject ro, IlpGraphic graphic, AWTEvent event)
          Constructs an interaction context dedicated to a view and a single object in this view.
IlpDefaultViewInteractionContext(IlpGraphicView view)
          Constructs an interaction context dedicated to a view.
 

Uses of IlpGraphicView in ilog.cpl.network
 

Classes in ilog.cpl.network that implement IlpGraphicView
 class IlpNetworkView
          This class displays the contents of an IlpNetworkModel in an ILOG JViews grapher.
 

Uses of IlpGraphicView in ilog.cpl.style
 

Fields in ilog.cpl.style declared as IlpGraphicView
protected  IlpGraphicView IlpStyleContext.graphicView
          Deprecated. Business object
 

Methods in ilog.cpl.style that return IlpGraphicView
 IlpGraphicView IlpStyleContext.getGraphicView()
          Deprecated. Returns graphic view.
 

Methods in ilog.cpl.style with parameters of type IlpGraphicView
 void IlpStyleContext.setGraphicView(IlpGraphicView view)
          Deprecated. Sets the graphic view afterwards.
 

Constructors in ilog.cpl.style with parameters of type IlpGraphicView
IlpInstanceStyleContext(IlpGraphicView graphicView, ReferenceQueue q)
          Deprecated. Constructor for an IlpGraphicView.
IlpStyleContext(IlpGraphicView view, ReferenceQueue q)
          Deprecated. Constructor for an IlpGraphicView.
 

Uses of IlpGraphicView in ilog.cpl.table
 

Classes in ilog.cpl.table that implement IlpGraphicView
 class IlpTableView
          This class is the view part of the ILOG JTGO Table Component.
 

Methods in ilog.cpl.table with parameters of type IlpGraphicView
protected  IlpViewInteractionContext IlpTableController.createViewInteractionContext(IlpGraphicView view)
           
 

Uses of IlpGraphicView in ilog.cpl.table.interactor
 

Constructors in ilog.cpl.table.interactor with parameters of type IlpGraphicView
IlpTableHeaderInteractionContext(IlpGraphicView view)
          Constructor
IlpTableViewInteractionContext(IlpGraphicView view)
          Constructor
 

Uses of IlpGraphicView in ilog.cpl.tree
 

Classes in ilog.cpl.tree that implement IlpGraphicView
 class IlpTreeView
          Graphic view part of the MVC architecture for the tree component.
 

Uses of IlpGraphicView in ilog.tgo.composite
 

Methods in ilog.tgo.composite that return IlpGraphicView
 IlpGraphicView IltcCompositeGraphic.getView()
          Returns the view where this graphic is being used.
 

Methods in ilog.tgo.composite with parameters of type IlpGraphicView
 void IltcCompositeGraphic.setView(IlpGraphicView view)
          Sets the graphic view for this instance.
 

Uses of IlpGraphicView in ilog.tgo.css.function
 

Methods in ilog.tgo.css.function with parameters of type IlpGraphicView
 Object IltAbstractAlarmSummaryFunction.call(Object[] args, Class type, IlpContext appc, IlpGraphicView view, IlpRepresentationObject ro, IlpAttribute attribute)
           
 Object IltAbstractHighestSeverityFunction.call(Object[] args, Class type, IlpContext appc, IlpGraphicView view, IlpRepresentationObject ro, IlpAttribute attribute)
           
 Object IltAbstractSeverityColorFunction.call(Object[] args, Class type, IlpContext appc, IlpGraphicView view, IlpRepresentationObject ro, IlpAttribute attribute)
           
 Object IltSeverityIconFunction.call(Object[] args, Class type, IlpContext appc, IlpGraphicView view, IlpRepresentationObject ro, IlpAttribute attribute)
          Called to execute the function.
 Object IltSettingsFunction.call(Object[] args, Class type, IlpContext appc, IlpGraphicView view, IlpRepresentationObject ro, IlpAttribute attribute)
          Calls the function.
 Object IltAbstractAlarmCountFunction.call(Object[] args, Class type, IlpContext appc, IlpGraphicView view, IlpRepresentationObject ro, IlpAttribute attribute)
           
 Object IltPrimaryStateSummaryFunction.call(Object[] args, Class type, IlpContext appc, IlpGraphicView view, IlpRepresentationObject ro, IlpAttribute attribute)
          Called to execute the function.
 Object IltSecondaryStateSummaryFunction.call(Object[] args, Class type, IlpContext appc, IlpGraphicView view, IlpRepresentationObject ro, IlpAttribute attribute)
          Called to execute the function.
 

Uses of IlpGraphicView in ilog.tgo.faces
 

Methods in ilog.tgo.faces with parameters of type IlpGraphicView
protected  boolean IltFacesPropertyAccessor.acceptGetProperty(IlpGraphicView view, IlpRepresentationObject object, String propertyName)
          This default implementation calls IltFacesPropertyAccessor.acceptProperty(IlpGraphicView, IlpRepresentationObject, String).
protected  boolean IltFacesPropertyAccessor.acceptProperty(IlpGraphicView view, IlpRepresentationObject object, String propertyName)
          Returns whether or not a given property can be accessed.
 Map IltFacesPropertyAccessor.getProperties(IlpGraphicView view, IlpRepresentationObject object)
          Returns the properties of the given object.
protected  List IltFacesPropertyAccessor.getPropertyNames(IlpGraphicView view, IlpRepresentationObject object)
          Returns the properties that will be exposed for the given IlpRepresentationObject and IlpGraphicView instances.
protected  Object IltFacesPropertyAccessor.getStringFromValue(IlpGraphicView view, IlpRepresentationObject object, String propertyName, Object propertyValue)
          Converts the provided in-memory property representation to a client-side String representation of a property value.
 

Uses of IlpGraphicView in ilog.tgo.graphic
 

Methods in ilog.tgo.graphic that return IlpGraphicView
 IlpGraphicView IltGraphicElementAggregate.getView()
          Deprecated. Returns the view in which this graphic object is being used.
 

Methods in ilog.tgo.graphic with parameters of type IlpGraphicView
 void IltCompositeGraphic.completeGraphic(IlpGraphicView view, IlpRepresentationObject ro)
          Complete the composite graphic creation.
 IlpGraphic IltGraphicRenderer.createGraphic(IlpGraphicView view, IlpRepresentationObject object, IlpAttribute attribute, IlpGraphicRendererContext rendererContext)
          Deprecated. Creates a new graphic representation by delegating to the four-argument createGraphic method.
abstract  IlpGraphic IltGraphicRenderer.createGraphic(IlpGraphicView view, IltGraphicManager manager, IlpRepresentationObject object, IlpAttribute attribute, IlpGraphicRendererContext rendererContext)
          Deprecated. Creates a new IlpGraphic object.
static IltCompositeGrapher IltCompositeGrapher.FromNetworkView(IlpGraphicView graphView)
          Returns the top-level grapher of a given IlpGraphView.
static ilog.cpl.graphic.css.internal.IlpViewCSSContext IltGraphicRenderer.GetCSSContext(IlpGraphicView view)
          Deprecated. Returns the CSS information for the given view.
static IltGraphicManager IltGraphicRenderer.GetManagerForCreateGraphic(IlpGraphicView view, IlpRepresentationObject object, IlpAttribute attribute)
          Deprecated. Returns the IltGraphicManager in which the graphic object, of type IltCompositeGraphic, of a given object should be created.
protected static IltComponentManager IltGraphicRenderer.GetManagerForView(IlpGraphicView view)
          Deprecated.  
protected static IltComponentManager IltGraphicRenderer.GetManagerForWebView(IlpGraphicView view)
          Deprecated. counterpart of GetManagerForView for the web component views.
 

Uses of IlpGraphicView in ilog.tgo.graphic.renderer
 

Methods in ilog.tgo.graphic.renderer that return IlpGraphicView
 IlpGraphicView IltBaseRenderer.getView()
          Returns the graphic view where this renderer is being used.
 

Methods in ilog.tgo.graphic.renderer with parameters of type IlpGraphicView
 void IltBaseRenderer.setView(IlpGraphicView v)
          Returns the graphic view where this renderer is being used.
 

Uses of IlpGraphicView in ilog.tgo.model
 

Methods in ilog.tgo.model with parameters of type IlpGraphicView
 IlpGraphic IltObjectDefaultRenderer.createGraphic(IlpGraphicView view, IltGraphicManager manager, IlpRepresentationObject object, IlpAttribute attribute, IlpGraphicRendererContext rendererContext)
          Deprecated. Creates a new graphic representation.
 



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