Package | Description |
---|---|
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 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 Rogue Wave JViews.
|
ilog.cpl.interactor |
Contains all the base classes of interactors.
|
ilog.cpl.network |
Together with
ilog.cpl.IlpNetwork , this package constitutes the 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 JTGO Table component. |
ilog.cpl.table.interactor |
Contains all the table-specific interactors giving the JTGO Table component its default behavior.
|
ilog.cpl.tree |
Together with
ilog.cpl.IlpTree , this package constitutes
the 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 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.
|
ilog.tgo.swing |
Provides Swing classes necessary to create an application mixing JTGO and Swing.
|
Modifier and Type | Method and Description |
---|---|
Object |
IlpCSSFunction.call(Object[] args,
Class<?> type,
IlpContext appc,
IlpGraphicView view,
IlpRepresentationObject ro,
IlpAttribute attribute)
Calls the function.
|
Modifier and Type | Class and Description |
---|---|
class |
IlpEquipmentView
This class displays the contents of an
IlpEquipmentModel
in a Rogue Wave JViews grapher. |
Modifier and Type | Class and Description |
---|---|
class |
IlpGraphView
This class displays the contents of an
IlpGraphModel
in a Rogue Wave JViews grapher. |
Modifier and Type | Interface and Description |
---|---|
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).
|
Modifier and Type | Method and Description |
---|---|
IlpGraphicView |
IlpToolTipManager.getView()
Returns the graphic view associated to this manager, if there is one.
|
IlpGraphicView |
IlpGraphicController.getView()
Returns the view that is being controlled.
|
IlpGraphicView |
IlpGraphic.getView()
Returns the view in which this graphic is being used.
|
IlpGraphicView |
IlpDefaultGraphicViewStyleManager.getView()
Deprecated.
Returns the graphic view which is using this configuration.
|
IlpGraphicView |
IlpBasicGraphicViewStyleManager.getView()
Deprecated.
Returns the graphic view which is using this configuration.
|
IlpGraphicView |
IlpAbstractGraphicController.getView()
Returns the view that is being controlled.
|
IlpGraphicView |
IlpAbstractGraphic.getView()
Returns the view in which the graphic is being displayed.
|
Modifier and Type | Method and Description |
---|---|
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. |
Constructor and Description |
---|
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)
IlpToolTipManager s are only created by the library. |
Constructor and Description |
---|
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.
|
Modifier and Type | Interface and Description |
---|---|
interface |
IlpStylableViewsView
This is a graphic view that uses a Rogue Wave JViews
IlvManagerView
object for displaying and that can be customized using Cascading
Style Sheets (CSS). |
interface |
IlpViewsView
This is a graphic view which uses a Rogue Wave JViews
IlvManagerView
object for displaying. |
Modifier and Type | Method and Description |
---|---|
IlpGraphicView |
IlpManagerView.getGraphicView()
Returns the graphic view to which this manager view belongs.
|
Constructor and Description |
---|
IlpManagerView(IlpGraphicView cplView)
Deprecated.
|
IlpManagerView(IlpGraphicView cplView,
IlvManager manager)
Deprecated.
|
IlpManagerView(IlpGraphicView cplView,
IlvManager manager,
IlvTransformer t)
Deprecated.
|
IlpManagerView(IlpGraphicView cplView,
IlvManager manager,
IlvTransformer t,
boolean isInteracted)
Deprecated.
|
IlpManagerView(IlpGraphicView cplView,
IlvManager manager,
IlvTransformer transf,
IlSynchronizationContext syncCtx,
boolean isInteracted)
Creates a new manager view.
|
Modifier and Type | Method and Description |
---|---|
IlpGraphicView |
IlpViewActionEvent.getView()
Returns the view in which the interaction occurred.
|
IlpGraphicView |
IlpObjectActionEvent.getView()
Returns the view in which the interaction occurred.
|
IlpGraphicView |
IlpInteractionContext.getView()
Returns the view this context refers to.
|
IlpGraphicView |
IlpDefaultInteractionContext.getView()
Returns the graphic view.
|
IlpGraphicView |
IlpAbstractPopupMenuFactory.getView()
Returns the view in which the pop-up menu is to be displayed.
|
Constructor and Description |
---|
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.
|
Modifier and Type | Class and Description |
---|---|
class |
IlpNetworkView
This class displays the contents of an
IlpNetworkModel
in a Rogue Wave JViews grapher. |
Modifier and Type | Field and Description |
---|---|
protected IlpGraphicView |
IlpStyleContext.graphicView
Deprecated.
Business object
|
Modifier and Type | Method and Description |
---|---|
IlpGraphicView |
IlpStyleContext.getGraphicView()
Deprecated.
Returns graphic view.
|
Modifier and Type | Method and Description |
---|---|
void |
IlpStyleContext.setGraphicView(IlpGraphicView view)
Deprecated.
Sets the graphic view afterwards.
|
Constructor and Description |
---|
IlpInstanceStyleContext(IlpGraphicView graphicView,
ReferenceQueue q)
Deprecated.
Constructor for an
IlpGraphicView . |
IlpStyleContext(IlpGraphicView view,
ReferenceQueue q)
Deprecated.
Constructor for an
IlpGraphicView . |
Modifier and Type | Class and Description |
---|---|
class |
IlpTableView
This class is the view part of the JTGO Table Component.
|
Modifier and Type | Method and Description |
---|---|
protected IlpViewInteractionContext |
IlpTableController.createViewInteractionContext(IlpGraphicView view) |
Constructor and Description |
---|
IlpTableHeaderInteractionContext(IlpGraphicView view)
Constructor
|
IlpTableViewInteractionContext(IlpGraphicView view)
Constructor
|
Modifier and Type | Class and Description |
---|---|
class |
IlpTreeView
Graphic view part of the MVC architecture for the tree component.
|
Modifier and Type | Method and Description |
---|---|
IlpGraphicView |
IltcCompositeGraphic.getView()
Returns the view where this graphic is being used.
|
Modifier and Type | Method and Description |
---|---|
void |
IltcCompositeGraphic.setView(IlpGraphicView view)
Sets the graphic view for this instance.
|
Modifier and Type | Method and Description |
---|---|
Object |
IltTinyImageFunction.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 |
IltAbstractHighestSeverityFunction.call(Object[] args,
Class<?> type,
IlpContext appc,
IlpGraphicView view,
IlpRepresentationObject ro,
IlpAttribute attribute) |
Object |
IltAbstractAlarmSummaryFunction.call(Object[] args,
Class<?> type,
IlpContext appc,
IlpGraphicView view,
IlpRepresentationObject ro,
IlpAttribute attribute) |
Object |
IltAbstractAlarmCountFunction.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 |
IltSecondaryStateSummaryFunction.call(Object[] args,
Class type,
IlpContext appc,
IlpGraphicView view,
IlpRepresentationObject ro,
IlpAttribute attribute)
Called to execute the function.
|
Object |
IltPrimaryStateSummaryFunction.call(Object[] args,
Class type,
IlpContext appc,
IlpGraphicView view,
IlpRepresentationObject ro,
IlpAttribute attribute)
Called to execute the function.
|
Modifier and Type | Method and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
IlpGraphicView |
IltGraphicElementAggregate.getView()
Deprecated.
Returns the view in which this graphic object is being used.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
IlpGraphicView |
IltBaseRenderer.getView()
Returns the graphic view where this renderer is being
used.
|
Modifier and Type | Method and Description |
---|---|
void |
IltBaseRenderer.setView(IlpGraphicView v)
Returns the graphic view where this renderer is being
used.
|
Modifier and Type | Method and Description |
---|---|
IlpGraphic |
IltObjectDefaultRenderer.createGraphic(IlpGraphicView view,
IltGraphicManager manager,
IlpRepresentationObject object,
IlpAttribute attribute,
IlpGraphicRendererContext rendererContext)
Deprecated.
Creates a new graphic representation.
|
Modifier and Type | Method and Description |
---|---|
static void |
IltComponentUtilities.clearImage(IlpGraphicView view,
IlpRepresentationObject ro)
Removes the image that has been generated for the given representation object.
|
void |
IltComponentUtilities.clearObjectImage(IlpGraphicView view)
Removes all images that have been created for the given view.
|
void |
IltComponentUtilities.clearObjectImage(IlpGraphicView view,
IlpRepresentationObject ro)
Removes the image that has been generated for the given representation object.
|
static Image |
IltComponentUtilities.getTinyImage(IlpGraphicView view,
IlpRepresentationObject ro)
Returns an image displaying the tiny representation of the given predefined
business object.
|
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.