Uses of Class
ilog.views.IlvNamedProperty

Packages that use IlvNamedProperty
ilog.tgo.graphic.graphlayout Contains graph layout algorithms that extend those of package ilog.views.graphlayout. 
ilog.views Provides the classes necessary to create a high performance 2D graphic application. 
ilog.views.event Provides interfaces and classes for dealing with different types of events fired by JViews Graphics Framework classes. 
ilog.views.graphlayout A high-level, generic framework for the graph layout services provided by ILOG JViews, which allows you to easily obtain readable representations of graphs and networks. 
ilog.views.graphlayout.bus The Bus Layout algorithm is designed to display bus network topologies, that is, a set of nodes connected to a bus node. 
ilog.views.graphlayout.circular The Circular Layout algorithm displays graphs representing interconnected ring and/or star network topologies. 
ilog.views.graphlayout.grid The Grid Layout arranges the nodes either in the cells of a matrix (grid), or by rows or columns. 
ilog.views.graphlayout.hierarchical The Hierarchical Layout algorithm arranges the nodes of the graph in horizontal or vertical levels, so that the majority of the links point in the same direction (top-down, left-to-right, and so on). 
ilog.views.graphlayout.labellayout A generic framework for the label layout services provided by ILOG JViews, which can automatically place labels at graphic objects such as nodes and links. 
ilog.views.graphlayout.labellayout.annealing The Annealing Label Layout places labels close to related obstacles such that the amount of overlaps among labels, and between labels and obstacles is small. 
ilog.views.graphlayout.labellayout.random The Random Label Layout algorithm moves the labels of the manager at randomly computed positions inside an user-defined region. 
ilog.views.graphlayout.link The Link Layout algorithm reshapes the links of a graph without moving the nodes. 
ilog.views.graphlayout.link.longlink The Long Link Layout algorithm reshapes the links of a graph without moving the nodes. 
ilog.views.graphlayout.link.shortlink The Short Link Layout algorithm reshapes the links of a graph without moving the nodes. 
ilog.views.graphlayout.multiple The Multiple Layout class is not really a layout algorithm but rather a facility to compose multiple layout algorithms and treat them as one algorithm object. 
ilog.views.graphlayout.random The Random Layout algorithm moves the nodes of the graph at randomly computed positions inside a user-defined region. 
ilog.views.graphlayout.recursive The Recursive Layout class is not really a layout algorithm but rather a facility to traverse a nested graph containing subgraphs and perform layouts recursively for each subgraph. 
ilog.views.graphlayout.springembedder The Spring Embedder Layout algorithm can be used to lay out any type of graph. 
ilog.views.graphlayout.topologicalmesh The Topological Mesh Layout (TML) algorithm can be used to lay out cyclic graphs, both planar and non-planar. 
ilog.views.graphlayout.tree The Tree Layout arranges the nodes of a tree horizontally, vertically or radially, starting from the root of the tree. 
ilog.views.graphlayout.uniformlengthedges The Uniform Length Edges Layout algorithm can be used to lay out any type of graph; it allows you to specify the length of the links. 
ilog.views.hypergraph.edgeconnector This package contains the predefined hyperedge connectors of JViews. 
ilog.views.io Provides the input and output streams to store JViews objects in the IVL format. 
ilog.views.maps This package contains the base classes to write map applications. 
ilog.views.maps.beans Provides useful beans for creating map applications. 
ilog.views.maps.datasource Provides predefined data sources. 
ilog.views.maps.graphic This package contains graphic objects specialized for cartographic display. 
ilog.views.maps.label This package contains JViews Maps labeling classes. 
ilog.views.maps.theme Provides classes for dynamic styling. 
ilog.views.svg Contains classes adding SVG (Scalable Vector Graphic) support to ILOG JViews. 
ilog.views.swing Provides all the Swing components necessary to create an application mixing JViews and Swing. 
 

Uses of IlvNamedProperty in ilog.tgo.graphic.graphlayout
 

Subclasses of IlvNamedProperty in ilog.tgo.graphic.graphlayout
 class IltLinkLayoutGrapherProperty
          The class IltLinkLayoutGrapherProperty allows you to store the global settings of an instance of IltLinkLayout as a named property in the grapher.
 class IltLinkLayoutLinkProperty
          The class IltLinkLayoutLinkProperty allows you to store the settings of an instance of IltLinkLayout for an individual link as a named property in the link.
 class IltShortLinkLayoutGrapherProperty
          The class IltShortLinkLayoutGrapherProperty allows you to store the global settings of an instance of IltShortLinkLayout as a named property in the grapher.
 class IltShortLinkLayoutLinkProperty
          The class IltShortLinkLayoutLinkProperty allows you to store the settings of an instance of IltShortLinkLayout for an individual link as a named property in the link.
 

Methods in ilog.tgo.graphic.graphlayout that return IlvNamedProperty
 IlvNamedProperty IltLinkLayoutLinkProperty.copy()
          Copies the named property.
 IlvNamedProperty IltShortLinkLayoutGrapherProperty.copy()
          Copies the named property.
 IlvNamedProperty IltShortLinkLayoutLinkProperty.copy()
          Copies the named property.
 IlvNamedProperty IltLinkLayoutGrapherProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views
 

Methods in ilog.views that return IlvNamedProperty
abstract  IlvNamedProperty IlvNamedProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvManagerLayer.getNamedProperty(String name)
          Returns the named property associated with this layer having the specified name.
 IlvNamedProperty IlvGraphic.getNamedProperty(String name)
          Returns the named property associated with this graphic object.
 IlvNamedProperty IlvManagerLayer.setNamedProperty(IlvNamedProperty property)
          Associates a named property with the layer.
 IlvNamedProperty IlvGraphic.setNamedProperty(IlvNamedProperty property)
          Associates a named property with this graphic object.
 

Methods in ilog.views with parameters of type IlvNamedProperty
 IlvNamedProperty IlvManagerLayer.setNamedProperty(IlvNamedProperty property)
          Associates a named property with the layer.
 IlvNamedProperty IlvGraphic.setNamedProperty(IlvNamedProperty property)
          Associates a named property with this graphic object.
 

Constructors in ilog.views with parameters of type IlvNamedProperty
IlvNamedProperty(IlvNamedProperty source)
          Creates a new IlvNamedProperty by copying an existing one.
 

Uses of IlvNamedProperty in ilog.views.event
 

Methods in ilog.views.event that return IlvNamedProperty
 IlvNamedProperty NamedPropertyEvent.getNewValue()
          Returns the new named property.
 IlvNamedProperty NamedPropertyEvent.getOldValue()
          Returns the old named property.
 

Methods in ilog.views.event with parameters of type IlvNamedProperty
 void NamedPropertyEvent.setNewValue(IlvNamedProperty p)
          Changes the new named property.
 void NamedPropertyEvent.setOldValue(IlvNamedProperty p)
          Changes the old named property.
 

Constructors in ilog.views.event with parameters of type IlvNamedProperty
NamedPropertyEvent(IlvGraphic obj, IlvNamedProperty oldValue, IlvNamedProperty newValue)
          Creates the event.
 

Uses of IlvNamedProperty in ilog.views.graphlayout
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout
 class IlvGraphLayoutGrapherProperty
          The class IlvGraphLayoutGrapherProperty allows you to store the global settings of an instance of IlvGraphLayout as a named property in the grapher.
 class IlvGraphLayoutLinkProperty
          The class IlvGraphLayoutLinkProperty allows you to store the settings of an instance of IlvGraphLayout for an individual link as a named property in the link.
 class IlvGraphLayoutNodeProperty
          The class IlvGraphLayoutNodeProperty allows you to store the settings of an instance of IlvGraphLayout for an individual node as a named property in the node.
 

Methods in ilog.views.graphlayout that return IlvNamedProperty
 IlvNamedProperty IlvGraphLayoutGrapherProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvGraphLayoutNodeProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvGraphLayoutLinkProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.bus
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.bus
 class IlvBusLayoutGrapherProperty
          The class IlvBusLayoutGrapherProperty allows you to store the global settings of an instance of IlvBusLayout as a named property in the grapher.
 class IlvBusLayoutNodeProperty
          The class IlvBusLayoutNodeProperty allows you to store the settings of an instance of IlvBusLayout for an individual node as a named property in the node.
 

Methods in ilog.views.graphlayout.bus that return IlvNamedProperty
 IlvNamedProperty IlvBusLayoutGrapherProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvBusLayoutNodeProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.circular
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.circular
 class IlvCircularLayoutGrapherProperty
          The class IlvCircularLayoutGrapherProperty allows you to store the global settings of an instance of IlvCircularLayout as a named property in the grapher.
 class IlvCircularLayoutNodeProperty
          The class IlvCircularLayoutNodeProperty allows you to store the settings of an instance of IlvCircularLayout for an individual node as a named property in the node.
 class IlvClusterInfoProperty
          This class allows you to store, for each node of an IlvGrapher, the identifiers of the clusters to which the node belongs and the corresponding indexes of the node on each cluster.
 

Methods in ilog.views.graphlayout.circular that return IlvNamedProperty
 IlvNamedProperty IlvClusterInfoProperty.copy()
          Copies the property.
 IlvNamedProperty IlvCircularLayoutGrapherProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvCircularLayoutNodeProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.grid
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.grid
 class IlvGridLayoutGrapherProperty
          The class IlvGridLayoutGrapherProperty allows you to store the global settings of an instance of IlvGridLayout as a named property in the grapher.
 class IlvGridLayoutNodeProperty
          The class IlvGridLayoutNodeProperty allows you to store the settings of an instance of IlvGridLayout for an individual node as a named property in the node.
 

Methods in ilog.views.graphlayout.grid that return IlvNamedProperty
 IlvNamedProperty IlvGridLayoutNodeProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvGridLayoutGrapherProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.hierarchical
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.hierarchical
 class IlvHierarchicalLayoutGrapherProperty
          The class IlvHierarchicalLayoutGrapherProperty allows you to store the global settings of an instance of IlvHierarchicalLayout as a named property in the grapher.
 class IlvHierarchicalLayoutLinkProperty
          The class IlvHierarchicalLayoutLinkProperty allows you to store the settings of an instance of IlvHierarchicalLayout for an individual link as a named property in the link.
 class IlvHierarchicalLayoutNodeProperty
          The class IlvHierarchicalLayoutNodeProperty allows you to store the settings of an instance of IlvHierarchicalLayout for an individual node as a named property in the node.
 

Methods in ilog.views.graphlayout.hierarchical that return IlvNamedProperty
 IlvNamedProperty IlvHierarchicalLayoutLinkProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvHierarchicalLayoutGrapherProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvHierarchicalLayoutNodeProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.labellayout
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.labellayout
 class IlvLabelLayoutLabelProperty
          The class IlvLabelLayoutLabelProperty allows you to store the settings of an instance of IlvLabelLayout for an individual label as a named property in the label.
 class IlvLabelLayoutManagerProperty
          The class IlvLabelLayoutManagerProperty allows you to store the global settings of an instance of IlvLabelLayout as a named property in the manager.
 

Methods in ilog.views.graphlayout.labellayout that return IlvNamedProperty
 IlvNamedProperty IlvLabelLayoutLabelProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvLabelLayoutManagerProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.labellayout.annealing
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.labellayout.annealing
 class IlvAnnealingLabelLayoutLabelProperty
          The class IlvAnnealingLabelLayoutLabelProperty allows you to store the settings of an instance of IlvAnnealingLabelLayout for an individual label as a named property in the label.
 class IlvAnnealingLabelLayoutManagerProperty
          The class IlvAnnealingLabelLayoutManagerProperty allows you to store the global settings of an instance of IlvAnnealingLabelLayout as a named property in the manager.
 

Methods in ilog.views.graphlayout.labellayout.annealing that return IlvNamedProperty
 IlvNamedProperty IlvAnnealingLabelLayoutManagerProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvAnnealingLabelLayoutLabelProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.labellayout.random
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.labellayout.random
 class IlvRandomLabelLayoutManagerProperty
          The class IlvRandomLabelLayoutManagerProperty allows you to store the global settings of an instance of IlvRandomLabelLayout as a named property in the manager.
 

Methods in ilog.views.graphlayout.labellayout.random that return IlvNamedProperty
 IlvNamedProperty IlvRandomLabelLayoutManagerProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.link
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.link
 class IlvLinkLayoutGrapherProperty
          The class IlvLinkLayoutGrapherProperty allows you to store the global settings of an instance of IlvLinkLayout as a named property in the grapher.
 class IlvLinkLayoutLinkProperty
          The class IlvLinkLayoutLinkProperty allows you to store the settings of an instance of IlvLinkLayout for an individual link as a named property in the link.
 

Methods in ilog.views.graphlayout.link that return IlvNamedProperty
 IlvNamedProperty IlvLinkLayoutLinkProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvLinkLayoutGrapherProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.link.longlink
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.link.longlink
 class IlvLongLinkLayoutGrapherProperty
          The class IlvLongLinkLayoutGrapherProperty allows you to store the global settings of an instance of IlvLongLinkLayout as a named property in the grapher.
 class IlvLongLinkLayoutLinkProperty
          The class IlvLongLinkLayoutLinkProperty allows you to store the settings of an instance of IlvLongLinkLayout for an individual link as a named property in the link.
 

Methods in ilog.views.graphlayout.link.longlink that return IlvNamedProperty
 IlvNamedProperty IlvLongLinkLayoutGrapherProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvLongLinkLayoutLinkProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.link.shortlink
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.link.shortlink
 class IlvShortLinkLayoutGrapherProperty
          The class IlvShortLinkLayoutGrapherProperty allows you to store the global settings of an instance of IlvShortLinkLayout as a named property in the grapher.
 class IlvShortLinkLayoutLinkProperty
          The class IlvShortLinkLayoutLinkProperty allows you to store the settings of an instance of IlvShortLinkLayout for an individual link as a named property in the link.
 class IlvShortLinkLayoutNodeProperty
          The class IlvShortLinkLayoutNodeProperty allows you to store the settings of an instance of IlvShortLinkLayout for an individual node as a named property in the node.
 

Methods in ilog.views.graphlayout.link.shortlink that return IlvNamedProperty
 IlvNamedProperty IlvShortLinkLayoutGrapherProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvShortLinkLayoutLinkProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvShortLinkLayoutNodeProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.multiple
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.multiple
 class IlvMultipleLayoutGrapherProperty
          The class IlvMultipleLayoutGrapherProperty allows you to store the global settings of an instance of IlvMultipleLayout as a named property in the grapher.
 

Methods in ilog.views.graphlayout.multiple that return IlvNamedProperty
 IlvNamedProperty IlvMultipleLayoutGrapherProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.random
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.random
 class IlvRandomLayoutGrapherProperty
          The class IlvRandomLayoutGrapherProperty allows you to store the global settings of an instance of IlvRandomLayout as a named property in the grapher.
 

Methods in ilog.views.graphlayout.random that return IlvNamedProperty
 IlvNamedProperty IlvRandomLayoutGrapherProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.recursive
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.recursive
 class IlvRecursiveLayoutGrapherProperty
          The class IlvRecursiveLayoutGrapherProperty allows you to store the global settings of an instance of IlvRecursiveLayout as a named property in the grapher.
 

Methods in ilog.views.graphlayout.recursive that return IlvNamedProperty
 IlvNamedProperty IlvRecursiveLayoutGrapherProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.springembedder
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.springembedder
 class IlvSpringEmbedderLayoutGrapherProperty
          The class IlvSpringEmbedderLayoutGrapherProperty allows you to store the global settings of an instance of IlvSpringEmbedderLayout as a named property in the grapher.
 

Methods in ilog.views.graphlayout.springembedder that return IlvNamedProperty
 IlvNamedProperty IlvSpringEmbedderLayoutGrapherProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.topologicalmesh
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.topologicalmesh
 class IlvTopologicalMeshLayoutGrapherProperty
          The class IlvTopologicalMeshLayoutGrapherProperty allows you to store the global settings of an instance of IlvTopologicalMeshLayout as a named property in the grapher.
 class IlvTopologicalMeshLayoutNodeProperty
          The class IlvTopologicalMeshLayoutNodeProperty allows you to store the settings of an instance of IlvTopologicalMeshLayout for an individual node as a named property in the node.
 

Methods in ilog.views.graphlayout.topologicalmesh that return IlvNamedProperty
 IlvNamedProperty IlvTopologicalMeshLayoutNodeProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvTopologicalMeshLayoutGrapherProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.tree
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.tree
 class IlvTreeLayoutGrapherProperty
          The class IlvTreeLayoutGrapherProperty allows you to store the global settings of an instance of IlvTreeLayout as a named property in the grapher.
 class IlvTreeLayoutLinkProperty
          The class IlvTreeLayoutLinkProperty allows you to store the settings of an instance of IlvTreeLayout for an individual link as a named property in the link.
 class IlvTreeLayoutNodeProperty
          The class IlvTreeLayoutNodeProperty allows you to store the settings of an instance of IlvTreeLayout for an individual node as a named property in the node.
 

Methods in ilog.views.graphlayout.tree that return IlvNamedProperty
 IlvNamedProperty IlvTreeLayoutGrapherProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvTreeLayoutNodeProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvTreeLayoutLinkProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.graphlayout.uniformlengthedges
 

Subclasses of IlvNamedProperty in ilog.views.graphlayout.uniformlengthedges
 class IlvUniformLengthEdgesLayoutGrapherProperty
          The class IlvUniformLengthEdgesLayoutGrapherProperty allows you to store the global settings of an instance of IlvUniformLengthEdgesLayout as a named property in the grapher.
 class IlvUniformLengthEdgesLayoutLinkProperty
          The class IlvUniformLengthEdgesLayoutLinkProperty allows you to store the settings of an instance of IlvUniformLengthEdgesLayout for an individual link as a named property in the link.
 

Methods in ilog.views.graphlayout.uniformlengthedges that return IlvNamedProperty
 IlvNamedProperty IlvUniformLengthEdgesLayoutGrapherProperty.copy()
          Copies the named property.
 IlvNamedProperty IlvUniformLengthEdgesLayoutLinkProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.hypergraph.edgeconnector
 

Subclasses of IlvNamedProperty in ilog.views.hypergraph.edgeconnector
static class IlvHyperEdgeConnector.HyperEdgeConnectorProperty
          This named property stores the hyperedge connector at a node.
 

Methods in ilog.views.hypergraph.edgeconnector that return IlvNamedProperty
 IlvNamedProperty IlvHyperEdgeConnector.HyperEdgeConnectorProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.io
 

Subclasses of IlvNamedProperty in ilog.views.io
 class IlvSingleValueNamedProperty
          The class IlvSingleValueNamedProperty is a named property for general purpose that allows to store a simple single value.
 

Methods in ilog.views.io that return IlvNamedProperty
 IlvNamedProperty IlvSingleValueNamedProperty.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.maps
 

Subclasses of IlvNamedProperty in ilog.views.maps
 class IlvAltitudeProviderProperty
          This class defines a named property used to store the altitude provider in an IlvManager containing cartographic data.
 class IlvAreasOfInterestProperty
          IlvAreasOfInterestProperty defines a named property used to store the areas of interest in an IlvManager instance that contain cartographic data.
 class IlvAttributeInfoProperty
          This class is used to store the names and types of map attributes.
 class IlvAttributeProperty
          This class is used to store the values of map attributes.
 class IlvCoordinateSystemProperty
          This class defines a named property that is used to store the coordinate system in an IlvManager containing cartographic data.
 class IlvDisplayPreferencesProperty
          This class defines a named property used to store the coordinate display preferences in an IlvManager containing cartographic data.
 class IlvFeatureAttributeProperty
          This class is used to store the values of map attributes.
 class IlvMapLayerProperty
          A IlvNamedProperty used to retrieve an IlvMapLayer from an IlvManagerLayer.
 class IlvMapLayerTreeProperty
          IlvMapLayerTreeProperty is a subclass of IlvNamedProperty used to store an IlvMapLayerTreeModel.
 class IlvProjectionProperty
          Deprecated. Since JViews 5.0, use ilog.views.maps.IlvCoordinateSystemProperty.
 

Methods in ilog.views.maps that return IlvNamedProperty
 IlvNamedProperty IlvDisplayPreferencesProperty.copy()
          Copies the property.
 IlvNamedProperty IlvMapLayerTreeProperty.copy()
          Returns a copy of this property.
 IlvNamedProperty IlvAltitudeProviderProperty.copy()
          Copies the property.
 IlvNamedProperty IlvAreasOfInterestProperty.copy()
          Copies the property.
 IlvNamedProperty IlvMapLayerProperty.copy()
          Returns a copy of this property.
 IlvNamedProperty IlvFeatureAttributeProperty.copy()
          Copies the property.
 IlvNamedProperty IlvCoordinateSystemProperty.copy()
          Copies the property.
 IlvNamedProperty IlvProjectionProperty.copy()
          Deprecated. Copies the property.
 IlvNamedProperty IlvAttributeInfoProperty.copy()
          Copies the property.
 IlvNamedProperty IlvAttributeProperty.copy()
          Copies the property.
 

Uses of IlvNamedProperty in ilog.views.maps.beans
 

Subclasses of IlvNamedProperty in ilog.views.maps.beans
 class IlvMapAnnotationProperty
          A property used to store and retrieve annotations information.
 

Methods in ilog.views.maps.beans that return IlvNamedProperty
 IlvNamedProperty IlvMapAnnotationProperty.copy()
          Returns a copy of this property.
 

Uses of IlvNamedProperty in ilog.views.maps.datasource
 

Subclasses of IlvNamedProperty in ilog.views.maps.datasource
 class IlvMapDataSourceProperty
          A named property used to attach a IlvMapDataSourceModel to a IlvManager.
 

Methods in ilog.views.maps.datasource that return IlvNamedProperty
 IlvNamedProperty IlvMapDataSourceProperty.copy()
          Returns a copy of this property.
 

Uses of IlvNamedProperty in ilog.views.maps.graphic
 

Subclasses of IlvNamedProperty in ilog.views.maps.graphic
static class IlvMapSelectionFactory.IlvMapEditable
          A named property telling that an IlvGraphic is editable.
 

Methods in ilog.views.maps.graphic that return IlvNamedProperty
 IlvNamedProperty IlvMapSelectionFactory.IlvMapEditable.copy()
          Copies the named property.
 

Uses of IlvNamedProperty in ilog.views.maps.label
 

Subclasses of IlvNamedProperty in ilog.views.maps.label
 class IlvMapLabelerProperty
          IlvMapLabelerProperty represents a named property that holds a IlvMapLabeler.
 

Methods in ilog.views.maps.label that return IlvNamedProperty
 IlvNamedProperty IlvMapLabelerProperty.copy()
          Returns a copy of this IlvMapLabelerProperty instance.
 

Uses of IlvNamedProperty in ilog.views.maps.theme
 

Subclasses of IlvNamedProperty in ilog.views.maps.theme
 class IlvMapStyleControllerProperty
          IlvMapStyleControllerProperty represents a IlvNamedProperty for storing an IlvMapStyleController.
 

Methods in ilog.views.maps.theme that return IlvNamedProperty
 IlvNamedProperty IlvMapStyleControllerProperty.copy()
          Returns a copy of this property.
 

Uses of IlvNamedProperty in ilog.views.svg
 

Subclasses of IlvNamedProperty in ilog.views.svg
 class SVGHREFProperty
          This IlvNamedProperty subclass allows access to details of the Xlink hyperreference associated with an IlvGraphic.
 

Methods in ilog.views.svg that return IlvNamedProperty
 IlvNamedProperty SVGHREFProperty.copy()
          Returns a copy of the SVGHREFProperty.
 

Uses of IlvNamedProperty in ilog.views.swing
 

Subclasses of IlvNamedProperty in ilog.views.swing
 class IlvThreadedActivityMonitorProperty
          This class defines a named property that is used to store the monitored threaded activities in an IlvManager containing map data.
 

Methods in ilog.views.swing that return IlvNamedProperty
 IlvNamedProperty IlvThreadedActivityMonitorProperty.copy()
          Copies the property.
 



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