Interface DataPoint
-
- All Superinterfaces:
org.eclipse.emf.ecore.EObject
,IChartObject
,org.eclipse.emf.common.notify.Notifier
- All Known Implementing Classes:
DataPointImpl
public interface DataPoint extends IChartObject
A representation of the model object 'Data Point'. DataPoint holds the settings for establishing the label text of a series' datapoints.The following features are supported:
- See Also:
AttributePackage.getDataPoint()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataPoint
copyInstance()
org.eclipse.emf.common.util.EList<DataPointComponent>
getComponents()
Returns the value of the 'Components' containment reference list.java.lang.String
getPrefix()
Returns the value of the 'Prefix' attribute.java.lang.String
getSeparator()
Returns the value of the 'Separator' attribute.java.lang.String
getSuffix()
Returns the value of the 'Suffix' attribute.void
setPrefix(java.lang.String value)
Sets the value of the 'Prefix
' attribute.void
setSeparator(java.lang.String value)
Sets the value of the 'Separator
' attribute.void
setSuffix(java.lang.String value)
Sets the value of the 'Suffix
' attribute.
-
-
-
Method Detail
-
getComponents
org.eclipse.emf.common.util.EList<DataPointComponent> getComponents()
Returns the value of the 'Components' containment reference list. The list contents are of typeDataPointComponent
. Specifies the components (values) being shown in the data label.- Returns:
- the value of the 'Components' containment reference list.
- See Also:
AttributePackage.getDataPoint_Components()
-
getPrefix
java.lang.String getPrefix()
Returns the value of the 'Prefix' attribute. Attribute "Prefix" specifies the prefix of the label text.- Returns:
- the value of the 'Prefix' attribute.
- See Also:
setPrefix(String)
,AttributePackage.getDataPoint_Prefix()
-
setPrefix
void setPrefix(java.lang.String value)
Sets the value of the 'Prefix
' attribute.- Parameters:
value
- the new value of the 'Prefix' attribute.- See Also:
getPrefix()
-
getSuffix
java.lang.String getSuffix()
Returns the value of the 'Suffix' attribute. Attribute "Suffix" specifies the prefix of the label text.- Returns:
- the value of the 'Suffix' attribute.
- See Also:
setSuffix(String)
,AttributePackage.getDataPoint_Suffix()
-
setSuffix
void setSuffix(java.lang.String value)
Sets the value of the 'Suffix
' attribute.- Parameters:
value
- the new value of the 'Suffix' attribute.- See Also:
getSuffix()
-
getSeparator
java.lang.String getSeparator()
Returns the value of the 'Separator' attribute. Specifies the separator used in the data label.- Returns:
- the value of the 'Separator' attribute.
- See Also:
setSeparator(String)
,AttributePackage.getDataPoint_Separator()
-
setSeparator
void setSeparator(java.lang.String value)
Sets the value of the 'Separator
' attribute.- Parameters:
value
- the new value of the 'Separator' attribute.- See Also:
getSeparator()
-
copyInstance
DataPoint copyInstance()
- Specified by:
copyInstance
in interfaceIChartObject
-
-