Uses of Class
ilog.tgo.graphic.IltGraphicElementName

Packages that use IltGraphicElementName
ilog.tgo.awt Deprecated Provides AWT components necessary to create an application mixing ILOG JTGO and AWT. 
ilog.tgo.css Contains basic classes to provide the customization of ILOG JTGO predefined business objects using CSS. 
ilog.tgo.graphic Provides all the classes for handling the graphical representations of the telecom objects. 
ilog.tgo.resource Provides classes for handling graphical resources. 
ilog.tgo.swing Provides Swing classes necessary to create an application mixing ILOG JTGO and Swing. 
ilog.tgo.util Provides general purpose classes and interfaces used in ILOG JTGO. 
 

Uses of IltGraphicElementName in ilog.tgo.awt
 

Methods in ilog.tgo.awt with parameters of type IltGraphicElementName
 PopupMenu IltPopupMenuFactory.create(IltObject object, IltCompositeGraphic graphic, IltGraphicElementName elementName)
          Deprecated. Returns a popup menu to be used on a given element of the graphic representation of an object.
 

Uses of IltGraphicElementName in ilog.tgo.css
 

Methods in ilog.tgo.css that return IltGraphicElementName
 IltGraphicElementName IltObjectCustomization.getAlarmLossOfConnectivityPosition()
          Returns the position of loss of connectivity indicator.
 

Uses of IltGraphicElementName in ilog.tgo.graphic
 

Fields in ilog.tgo.graphic declared as IltGraphicElementName
static IltGraphicElementName IltGraphicElementName.AlarmBalloon
          Alarm balloon, which is displayed on top of the graphic object when new alarms are triggered.
static IltGraphicElementName IltGraphicElementName.AlarmCount
          Alarm counter label (including the alarm letter), which is displayed either on the graphic object base or on its associated plinth.
static IltGraphicElementName IltGraphicElementName.Base
          Base drawing of a network element, a link, a group, or a card.
static IltGraphicElementName IltGraphicElementName.ContainerStatus
          Container status icon, indicating expanded vs. collapsed.
static IltGraphicElementName IltGraphicElementName.Family
          Family label in the bottom right corner of a network element symbolic representation.
static IltGraphicElementName IltGraphicElementName.Function
          Function icon in the bottom left corner of a network element symbolic representation.
static IltGraphicElementName IltGraphicElementName.Generic
          Generic graphic element name.
static IltGraphicElementName IltGraphicElementName.Icon
          Group icon which is used to display an image inside groups.
static IltGraphicElementName IltGraphicElementName.InformationIcon
          Collapsed information icon, which when clicked upon maximizes the information window.
static IltGraphicElementName IltGraphicElementName.InformationWindow
          Expanded information window containing the list of secondary states.
static IltGraphicElementName IltGraphicElementName.InState
          The secondary state icon on the left border of a base.
static IltGraphicElementName IltGraphicElementName.Media
          The media icon attached to the link.
static IltGraphicElementName IltGraphicElementName.Name
          Name label, which is displayed either under network elements or on groups and cards.
static IltGraphicElementName IltGraphicElementName.OutState
          The secondary state icon on the right border of a base.
static IltGraphicElementName IltGraphicElementName.Plinth
          Plinth containing the alarm and secondary state decorations associated with the object.
static IltGraphicElementName IltGraphicElementName.PSRIFromEnd
          Protection Switch Request Indicator icon stacker on the "from" end of the link.
static IltGraphicElementName IltGraphicElementName.PSRIToEnd
          Protection Switch Request Indicator icon stacker on the "to" end of the link.
static IltGraphicElementName IltGraphicElementName.SecondaryStateModifiers
          Icon stacker, which is displayed on the top of the network element base and on the group and card base to show the secondary states held by the object.
static IltGraphicElementName IltGraphicElementName.SystemIcon
          Collapsed system icon, which when clicked upon maximizes the system window.
static IltGraphicElementName IltGraphicElementName.SystemWindow
          Expanded system window containing the list of attributes present in the object system.
static IltGraphicElementName IltGraphicElementName.Technology
          The technology icon attached to the link.
 

Methods in ilog.tgo.graphic that return IltGraphicElementName
 IltGraphicElementName IltCompositeInteractions.CompositeInteractorContext.getElementName()
           
 IltGraphicElementName IltObjectInteractorContext.getElementName()
          Deprecated. Returns the name of the graphic element on which the event has occurred.
 

Methods in ilog.tgo.graphic with parameters of type IltGraphicElementName
 void IltCompositeGraphic.drawElements(Graphics g, IlvTransformer t, IltGraphicElementName name)
          Draws all subobjects of the composite graphic object.
 IlvRect IltCompositeGraphic.getElementBounds(IltGraphicElementName name, IlvTransformer t)
          Returns the bounding box of the requested graphic element.
 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.
abstract  IltcLayer IltLayerPolicy.getElementLayer(IltcCompositeGraphic graphic, IltGraphicElementName elementName)
          Returns the layer to be used for a specific graphic element, part of a composite object.
 IltcLayer IltCompositeGrapher.LayerPolicy.getElementLayer(IltcCompositeGraphic graphic, IltGraphicElementName elementName)
           
 IltToolTipFactory IltCompositeInteractions.getElementToolTipFactory(IltGraphicElementName elementName)
          Deprecated. Please use IlpToolTipManager and the CSS properties toolTipText or toolTipGraphic instead. The following example illustrates how you can customize a tooltip for an object being represented in your graphic component. The tooltip is displayed in the decoration that represents the name attribute of the object. In the network, equipment and table components you can customize tooltips for:
  • the whole object
  • specific attributes that are displayed as decorations
The following example shows how to customize a tooltip that is displayed on the decoration that represents the name of the object:
 object."ilog.tgo.model.IltNetworkElement/name" {
   toolTipText: "Network Element Name";
 }
 
 String IltCompositeInteractions.getElementToolTipText(IltGraphicElementName elementName)
          Deprecated. Please use IlpToolTipManager and the CSS properties toolTipText or toolTipGraphic instead. The following example illustrates how you can customize a tooltip for an object being represented in your graphic component. The tooltip is displayed in the decoration that represents the name attribute of the object. In the network, equipment and table components, you can customize tooltips for:
  • the whole object
  • specific attributes that are displayed as decorations
The following example shows how to customize a tooltip that is displayed on the decoration that represents the name of the object:
 object."ilog.tgo.model.IltNetworkElement/name" {
   toolTipText: "Network Element Name";
 }
 
 IlvObjectInteractor IltCompositeInteractions.getInteractorOn(IltGraphicElementName elementName)
          Deprecated. Returns the interactor to be positioned on a given graphic element.
 double[] IltCompositeGraphic.getVisibilityThreshold(IltGraphicElementName elementName)
          Returns the visibility threshold for the given element.
 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.setElementToolTipFactory(IltGraphicElementName elementName, IltToolTipFactory factory)
          Deprecated. Please use IlpToolTipManager and CSS properties toolTipText or toolTipGraphic instead. The following example illustrates how you can customize a tooltip for an object being represented in your graphic component. The tooltip is displayed in the decoration that represents the name attribute of the object. In the network, equipment and table components, you can customize tooltips for:
  • the whole object
  • specific attributes that are displayed as decorations
The following example shows how to customize a tooltip that is displayed on the decoration that represents the name of the object:
 object."ilog.tgo.model.IltNetworkElement/name" {
   toolTipText: "Network Element Name";
 }
 
 void IltCompositeInteractions.setElementToolTipText(IltGraphicElementName elementName, String text)
          Deprecated. Please use IlpToolTipManager and the CSS properties toolTipText or toolTipGraphic instead. The following example illustrates how you can customize a tooltip for an object being represented in your graphic component. The tooltip is displayed in the decoration that represents the name attribute of the object. In the network, equipment and table components, you can customize tooltips for:
  • the whole object
  • specific attributes that are displayed as decorations
The following example shows how to customize a tooltip that is displayed on the decoration that represents the name of the object:
 object."ilog.tgo.model.IltNetworkElement/name" {
   toolTipText: "Network Element Name";
 }
 
 

Uses of IltGraphicElementName in ilog.tgo.resource
 

Methods in ilog.tgo.resource with parameters of type IltGraphicElementName
static double IltrZoom.GetVisibilityThreshold(IltGraphicElementName elementName)
          Returns the threshold for the visibility of decorations of a given kind.
static void IltrZoom.SetVisibilityThreshold(IltGraphicElementName elementName, double visibilityThreshold)
          Changes the threshold for the visibility of decorations of a given kind.
 

Uses of IltGraphicElementName in ilog.tgo.swing
 

Methods in ilog.tgo.swing with parameters of type IltGraphicElementName
 JPopupMenu IltJPopupMenuFactory.create(IltObject object, IltCompositeGraphic graphic, IltGraphicElementName elementName)
          Deprecated. Returns a popup menu to be used on a given element of the graphic representation of an object.
 

Uses of IltGraphicElementName in ilog.tgo.util
 

Constructors in ilog.tgo.util with parameters of type IltGraphicElementName
IltManagerViewAutoAdjuster(IltCompositeGrapher grapher, IlvManagerView view, IltGraphicElementName elementName)
          Deprecated. Use IlpManagerViewAutoAdjuster instead.
 



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