com.supermap.mapping.imChart
Class RelationalChartPoint
- java.lang.Object
-
- com.supermap.mapping.imChart.ChartPoint
-
- com.supermap.mapping.imChart.RelationalChartPoint
-
public class RelationalChartPoint extends ChartPoint
Relation chart point class
-
-
Constructor Summary
Constructors Constructor and Description RelationalChartPoint()
The default constructor.RelationalChartPoint(Point2D point, float weighted)
The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.util.ArrayList<RelationalChartPoint>
getRelationalPoints()
Get the relation point collection.java.lang.String
getRelationName()
Get the relation point name.void
setRelationalPoints(java.util.ArrayList<RelationalChartPoint> points)
Set the relation point collection.void
setRelationName(java.lang.String name)
Set the relation point name.-
Methods inherited from class com.supermap.mapping.imChart.ChartPoint
getPoint, getWeighted, setPoint, setWeighted
-
-
-
-
Constructor Detail
-
RelationalChartPoint
public RelationalChartPoint()
The default constructor.
-
RelationalChartPoint
public RelationalChartPoint(Point2D point, float weighted)
The constructor.- Parameters:
point
- Point coordinates on the map.weighted
- The weight
-
-
Method Detail
-
setRelationName
public void setRelationName(java.lang.String name)
Set the relation point name.- Parameters:
name
- relation point name.
-
getRelationName
public java.lang.String getRelationName()
Get the relation point name.- Returns:
- the relation point name.
-
setRelationalPoints
public void setRelationalPoints(java.util.ArrayList<RelationalChartPoint> points)
Set the relation point collection.- Parameters:
points
- relation point collection.
-
getRelationalPoints
public java.util.ArrayList<RelationalChartPoint> getRelationalPoints()
Get the relation point collection.- Returns:
- the relation point collection.
-
-