Class DataID
- java.lang.Object
-
- org.eclipse.birt.report.engine.api.DataID
-
public class DataID extends java.lang.Object
the data id of the data used by an instance.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
append(java.lang.StringBuffer buffer)
add the instance id to the string buffer.boolean
equals(java.lang.Object a)
java.lang.String
getCellID()
Return the cell id.DataSetID
getDataSetID()
return the data set.long
getRowID()
Return the row id.static DataID
parse(java.lang.String dataId)
create a new data id instance from the string.java.lang.String
toString()
-
-
-
Field Detail
-
dataSet
protected DataSetID dataSet
Data set id.
-
rowId
protected long rowId
Id of the row.
-
cellId
protected java.lang.String cellId
Id of the cell.
-
-
Method Detail
-
getDataSetID
public DataSetID getDataSetID()
return the data set.- Returns:
-
getRowID
public long getRowID()
Return the row id.- Returns:
-
getCellID
public java.lang.String getCellID()
Return the cell id.- Returns:
-
append
public void append(java.lang.StringBuffer buffer)
add the instance id to the string buffer. It is a util class used by other internal packages.- Parameters:
buffer
-
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object a)
- Overrides:
equals
in classjava.lang.Object
-
parse
public static DataID parse(java.lang.String dataId)
create a new data id instance from the string.- Parameters:
dataId
- string representation of the data id- Returns:
- data id instance.
-
-