-
ilog.cpl.util.IlpExpansionStrategyFactory
: This class is used by adapters to retrieve the expansion strategy factory to be used by each representation object when it is created. Expansion strategies can be shared among several representation objects.
-
ilog.cpl.tree.IlpDefaultTreeExpansionStrategyFactory
: Default expansion strategy factory for the tree component. This factory returns a specific expansion strategy according to the value of the CSS property expansion
in the parent representation object.
-
ilog.cpl.network.IlpDefaultNetworkExpansionStrategyFactory
: Default expansion strategy factory for the network component. This factory returns a specific expansion strategy according to the value of the CSS property expansion
in the parent representation object.
-
ilog.cpl.network.NetworkExpansionListener
: Listener to expand and collapse events in subnetworks within a network component.
-
ilog.cpl.network.NetworkExpansionEvent
: Event sent when a subnetwork is expanded or collapsed in the network component.
-
ilog.cpl.interactor.IlpActionEventFactory
: This class is used by interactors to create events that will be passed to triggered actions. By default, IlpAbstractInteractor
uses the registered factory to create the new events in the method createActionEvent
.
-
ilog.cpl.util.IlpBatchable
: Specification for a class that supports grouping updates in batches.
-
ilog.tgo.graphic.IltSecStateModifierToolTipGraphic
: This class implements a tooltip renderer that displays state information in secondary state indicators. It is intended to be used with attribute objectState
in predefined business objects, in the following configuration:
object."ilog.tgo.model.IltObject/objectState" {
toolTipRenderer: @+SecStateModifierRenderer;
#SecStateModifierRenderer {
class: 'ilog.tgo.graphic.IltSecStateModifierToolTipRenderer';
-
ilog.tgo.model.attribute.IltShortcutAttributeType
: Defines the type of shortcuts that are supported by the network elements and groups. (See Shortcut Representation.)
-
ilog.tgo.resource.IltSettings
: Stores the predefined state configuration. (See State System description)
-
ilog.cpl.service.IlpAbstractValueMap
: Base implementation for predefined value maps that can be used in CSS files.
-
ilog.cpl.service.IlpIndexedValueMap
: Value map implementation where each entry (key, value) can be defined separately in CSS files using indexed property setters. This value map implementation allows you to create value map instances in CSS files that store complex types, such as blinking colors.
-
All classes in
ilog.tgo.graphic.renderer
provide the framework to create base renderers used to draw the base of telecom business objects according to the properties defined by the states and alarms set in the objects. These classes replace the previous framework provided by IltDrawer
and its subclasses.
-
ilog.tgo.model.IltOffPageConnector.Type
: Off-page connectors have now a type which defines the way the object is graphically represented. This class defines the enumeration of supported types.
-
ilog.cpl.interactor.IlpDefaultPopupMenuFactory
: This class provides support to create pop-up menus based on the configured menu items. This pop-up menu factory creates a static pop-up menu based on the given menu items and displays this pop-up menu whenever requested. You can use this class to create pop-up menus through CSS files.
-
ilog.cpl.interactor.IlpGestureAction
and ilog.cpl.interactor.IlpKeyStrokeAction
: These classes have been introduced as beans that can be used to customize interactors via CSS. The following example shows how interactors and pop-up menus can be customized via CSS:
viewInteractor: @=viewInt;
class: 'ilog.cpl.interactor.IlpDefaultViewInteractor';
popupMenuFactory: @+popupFactory;
class: 'ilog.cpl.interactor.IlpGestureAction';
gesture: BUTTON2_CLICKED;
action: @=actionButton2Clicked;
class: 'package.yourAction';
class: 'ilog.cpl.interactor.IlpDefaultPopupMenuFactory';
class: 'javax.swing.JMenuItem';
action: @=actionButton2Clicked;
-
ilog.cpl.equipment.IlpAbstractEquipmentModelListener
: Convenience class to create equipment model listeners. This class provides empty implementations to all equipment model listener methods.
-
ilog.cpl.network.IlpAbstractNetworkModelListener
: Convenience class to create network model listeners. This class provides empty implementations to all network model listener methods.
-
ilog.cpl.graph.action.IlpCreateRectGroupAction
, ilog.cpl.graph.action.IlpCreatePolyGroupAction
and ilog.cpl.graph.action.IlpCreateLinearGroupAction
implement actions to create objects that represent rectangular groups, polygonal groups or linear groups, respectively. These actions can be used in the network and equipment components as toolbar buttons.
-
ilog.cpl.graph.GraphModelEvent
: The common model event for both equipment and network components subclassed by ilog.cpl.equipment.EquipmentModelEvent
and ilog.cpl.network.NetworkModelEvent
. This event is observed by ilog.cpl.graph.GraphModelListener
implementations.
-
ilog.cpl.graph.GraphModelListener
: This interface is the common model event listener for both equipment and network components. It is extended by ilog.cpl.equipment.EquipmentModelListener
and ilog.cpl.network.NetworkModelListener
.
-
ilog.cpl.graph.IlpAbstractGraphHandler
: This class provides the base implementation for a graph handler. ilog.cpl.equipment.IlpEquipmentHandlerWithDataSource
and ilog.cpl.network.IlpNetworkHandlerWithDataSource
are subclasses of this class.
-
ilog.cpl.graph.IlpAbstractGraphModel
: This abstract class provides the common implementation for the equipment model (ilog.cpl.equipment.IlpAbstractEquipmentModel
) and the network model (ilog.cpl.network.IlpAbstractNetworkModel
).
-
ilog.cpl.graph.IlpAbstractGraphSelectionModel
: This class provides the common implementation for the equipment selection model (ilog.cpl.equipment.IlpAbstractEquipmentSelectionModel
) and the network selection model (ilog.cpl.network.IlpAbstractNetworkSelectionModel
).
-
ilog.cpl.graph.IlpDefaultNodeExpansionStrategyFactory
: This class implements the default expansion strategy factory. It is common to the equipment and the network components.
-
ilog.cpl.graph.IlpDefaultNodeRenderer
: This class implements the default graphic renderer for representation objects. It is common to the equipment and the network components.
-
ilog.cpl.graph.IlpDefaultPositionConverter
: This class is the default implementation for the ilog.cpl.graphic.IlpPositionConverter
. It is common to the equipment and the network components.
-
ilog.cpl.graph.IlpExpansionHandler
: This interface is shared by the equipment and the network components. It defines how a container object is expanded or collapsed through user interaction.
-
ilog.cpl.graph.IlpGraphController
: This class is the common implementation for the equipment controller (ilog.cpl.equipment.IlpEquipmentController
) and the network controller (ilog.cpl.network.IlpNetworkController
).
-
ilog.cpl.graph.IlpGraphHandler
: This interface defines the common handler for both the equipment handler (ilog.cpl.equipment.IlpEquipmentHandler
) and the network handler (ilog.cpl.network.IlpNetworkHandler
).
-
ilog.cpl.graph.IlpGraphHandlerWithDataSource
: This class implements the abstract graph handler (ilog.cpl.graph.IlpAbstractGraphHandler
). It provides the common implementation for equipment and network components connected to a data source.
-
ilog.cpl.graph.IlpGraphHandlerWithoutDataSource
: This class implements the abstract graph handler (ilog.cpl.graph.IlpAbstractGraphHandler
). It provides the common implementation for equipment and network components not connected to a data source.
-
ilog.cpl.graph.IlpGraphLoggers
: This class contains the loggers for the graph package.
-
ilog.cpl.graph.IlpGraphModel
: This interface defines the graph model, which is the common model for the equipment model (ilog.cpl.equipment.IlpEquipmentModel
) and the network model (ilog.cpl.networkIlpNetworkModel
).
-
ilog.cpl.graph.IlpGraphView
: This abstract class provides the common implementation for the equipment view (ilog.cpl.equipment.IlpEquipmentView
) and the network view (ilog.cpl.network.IlpNetworkView
).
-
ilog.cpl.graph.IlpLoadHandler
: This interface is shared by the equipment and the network components. It defines how objects are loaded into the model.
-
ilog.cpl.graph.IlpMutableGraphModel
: This interface defines write methods to the graph model. It is the common interface for the equipment mutable model (ilog.cpl.equipment.IlpMutableEquipmentModel
) and the network mutable model (ilog.cpl.network.IlpMutableNetworkModel
).
-
ilog.cpl.graph.IlpNodeHandler
: This interface is shared by the equipment and the network components. It defines how representation objects are created through user interaction.
-
ilog.cpl.graph.IlpNodeRenderer
: This interface defines a graphic renderer for representation objects.
-
ilog.cpl.graph.IlpGraphSelectionModel
: The common interface for the equipment selection model (ilog.cpl.equipment.IlpEquipmentSelectionModel
) and the network selection model (ilog.cpl.network.IlpNetworkSelectionModel
).
-
ilog.cpl.graph.IlpPositionChange
: This class represents a change in the position of an object. It is used by the position handler to process position changes.
-
ilog.cpl.graph.IlpPositionHandler
: This interface defines the API to handle changes in the position of graphic objects.
-
ilog.cpl.graph.NodeExpansionEvent
: This class represents an expansion event that is fired when a container object is expanded or collapsed. It is observed by implementations of the ilog.cpl.graph.NodeEventListener
interface.
-
ilog.cpl.graph.NodeExpansionListener
: This interface defines the event listener for ilog.cpl.graph.NodeExpansionEvent
events that are fired when container objects are expanded or collapsed.
-
ilog.cpl.graph.GraphSelectionEvent
: This class represents a selection event that is fired when an object is selected or unselected. It is observed by the selection model (ilog.cpl.graph.IlpAbstractGraphSelectionModel
).
-
ilog.cpl.graph.action.IlpCollapseObjectAction
: An action to collapse a container object.
-
ilog.cpl.graph.action.IlpCreateLinearGroupAction
: An action to create a new linear group object.
-
ilog.cpl.graph.action.IlpCreateLinkAction
: An action to create a new link object.
-
ilog.cpl.graph.action.IlpCreateNodeAction
: An action to create a new node object.
-
ilog.cpl.graph.action.IlpCreatePolyGroupAction
: An action to create a new polygroup object.
-
ilog.cpl.graph.action.IlpCreateRectGroupAction
: An action to create a new rectgroup
object.
-
ilog.cpl.graph.action.IlpEnsureAtCenterAction
: An action to center the network or equipment view into a given object.
-
ilog.cpl.graph.action.IlpEnsureVisibleAction
: An action to scroll the network or equipment view so that a given object is displayed.
-
ilog.cpl.graph.action.IlpExpandedObjectAction
: An action to expand a container object.
-
ilog.cpl.graph.action.IlpMoveObjectsAction
: An action to move a set of given objects.
-
ilog.cpl.graph.action.IlpRemoveObjectAction
: An action to remove a given object.
-
ilog.cpl.graph.action.IlpRemoveObjectsAction
: An action to remove a given set of objects.
-
ilog.cpl.graph.action.IlpRemoveSelectedObjectsAction
: An action to remove the selected objects.
-
ilog.cpl.graph.action.IlpSelectAllObjectsAction
: An action to select all objects in the component view.
-
ilog.cpl.graph.action.IlpUpdateObjectAction
: An action to update/refresh a given object, used in general to update attributes.
-
ilog.cpl.graph.action.toolbar.IlpGraphFitToContentsAction
: Abstract class that implements the common features of the Fit To Contents action for the equipment and network components.
-
ilog.cpl.graph.action.toolbar.IlpGraphFitToContentsButton
: Abstract class that implements the common features of the Fit To Contents button for the equipment and network components.
-
ilog.cpl.graph.action.toolbar.IlpGraphInteractorAction
: Abstract class that adds an action to the view. It is used by some of the equipment and network toolbar actions.
-
ilog.cpl.graph.action.toolbar.IlpGraphInteractorButton
: Abstract class that represents a toolbar button. It is used by some of the equipment and network toolbar buttons.
-
ilog.cpl.graph.interactor.IlpGraphEditEquipmentObjectInteractor
: Abstract class that implements the base features for the view interactor that edits equipment objects.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentEditGroupAction
: An action to edit group objects in the equipment component.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentEditGroupButton
: A toolbar button to edit group objects.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentEditLabelButton
: A toolbar button to edit the label of a given object in the equipment component.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentEditLinkPortAction
: An action to edit link ports in the equipment component.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentEditLinkPortButton
: A toolbar button to edit link ports in the equipment component.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentFitToContentsAction
: An action to fit the visible objects into the view area.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentFitToContentsButton
: A toolbar button to fit the visible objects into the view area.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentInteractorAction
: An action to set an interactor to the equipment view.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentInteractorButton
: The basic implementation of the equipment view toolbar.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentLabelLayoutAction
: An action to trigger the label layout in the equipment component.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentLabelLayoutButton
: A toolbar button to trigger the label layout in the equipment component.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentMakeLinearGroupButton
: A toolbar button to create a new linear group object in the equipment component.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentMakeLinkButton
: A toolbar button to create a new link object in the equipment component.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentMakePolyGroupButton
: A toolbar button to create a new polygroup object in the equipment component.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentMakeRectGroupButton
: A toolbar button to create a new rectangular group object in the equipment component.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentPanButton
: A toolbar button to pan the equipment view.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentScrollToContentsAction
: An action to scroll a given object so that it is visible in the equipment view.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentScrollToContentsButton
: A toolbar button to scroll a given object so that it is visible in the equipment view.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentSelectAction
: An action to select an object in the equipment view.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentSelectButton
: A toolbar button to select an object in the equipment view.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentUnZoomViewButton
: A toolbar button to unzoom from a rectangle.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentZoomBackAction
: An action to restore the previous zoom level in the equipment view.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentZoomBackButton
: A toolbar button to restore the previous zoom level in the equipment view.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentZoomInAction
: An action to increase the zoom factor of the equipment view.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentZoomInButton
: A toolbar button to increase the zoom factor of the equipment view.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentZoomOutAction
: An action to decrease the zoom factor of the equipment view.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentZoomOutButton
: A toolbar button to decrease the zoom factor of the equipment view.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentZoomResetAction
: An action to reset the zoom level of the equipment view to its original value.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentZoomResetButton
: A toolbar button to reset the zoom level of the equipment view to its original value.
-
ilog.cpl.equipment.action.toolbar.IlpEquipmentZoomViewButton
: A toolbar button to zoom on a rectangle.
-
ilog.cpl.equipment.renderer.IlpBackgroundsRenderer
: Defines the background CSS configuration renderer for the equipment view. This class is for user reference only.
-
ilog.cpl.equipment.renderer.IlpGraphLayoutRenderer
: Defines the graph layout CSS configuration renderer for the equipment view. This class is for user reference only.
-
ilog.cpl.equipment.renderer.IlpInteractorRenderer
: Defines the interactor CSS configuration renderer for the equipment view. This class is for user reference only.
-
ilog.cpl.equipment.renderer.IlpLabelLayoutRenderer
: Defines the label layout CSS configuration renderer for the equipment view. This class is for user reference only.
-
ilog.cpl.equipment.renderer.IlpLinkLayoutRenderer
: Defines the link layout CSS configuration renderer for the equipment view. This class is for user reference only.
-
ilog.cpl.equipment.renderer.IlpOverviewRenderer
: Defines the overview CSS configuration renderer for the equipment view. This class is for user reference only.
-
ilog.cpl.equipment.renderer.IlpPositioningRenderer
: Defines the positioning CSS configuration renderer for the equipment view. This class is for user reference only.
-
ilog.cpl.equipment.renderer.IlpToolbarRenderer
: Defines the toolbar CSS configuration renderer for the equipment view. This class is for user reference only.
-
ilog.cpl.equipment.renderer.IlpViewRenderer
: Defines the view CSS configuration renderer for the equipment view. This class is for user reference only.
-
ilog.cpl.equipment.renderer.IlpZoomingRenderer
: Defines the zooming CSS configuration renderer for the equipment view. This class is for user reference only.
-
ilog.cpl.network.interactor.IlpEditEquipmentObjectInteractor
: Defines a view interactor to edit equipment objects such as cards, ports and LEDs.
-
ilog.util.IlEventObject
: Defines a basic class for the events that are exchanged between the components