|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IReportPartID
This interface is used to identify a report part within the report. Report parts include chart, text, and field objects. You need to specify the name and the data context of the object.
Method Summary | |
---|---|
java.lang.String |
getDataContext()
Returns a data subtree in the report. |
java.lang.String |
getName()
Returns the name of the report part. |
void |
setDataContext(java.lang.String context)
Sets a data subtree in the report. |
void |
setName(java.lang.String name)
Sets the name of the report part. |
Method Detail |
---|
java.lang.String getName()
Returns the name of the report part.
String
.void setName(java.lang.String name)
Sets the name of the report part.
name
- The name of the report part as a String
.java.lang.String getDataContext()
Returns a data subtree in the report. The data context represents the whole group tree or a sub tree in the group tree. DataContext can be specified using either strings or integers to narrow down the search for the report object. For example, "/Country[USA]/Region[CA]" or "2-1". You can use a wildcard (*) in the last position only. For example, "/Country[USA]/ Region[CA]/*" or "2-1-*".
String
.void setDataContext(java.lang.String context)
Sets a data subtree in the report. The data context represents the whole group tree or a sub tree in the group tree. DataContext can be specified using either strings or integers to narrow down the search for the report object. For example, "/Country[USA]/Region[CA]" or "2-1". You can use a wildcard (*) in the last position only. For example, "/Country[USA]/ Region[CA]/*" or "2-1-*".
context
- The data subtree name of the report part as a String
.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |