Oracle Warehouse Builder Java API Reference
10g Release 1 (10.1)

B12155-01

oracle.owb.report
Interface ReportItem

All Superinterfaces:
Extensible, OWBNamedObject, PropertyOwner

public interface ReportItem
extends OWBNamedObject, Extensible

A ReportItem represents an item within a Report.


Field Summary
static java.lang.String AXIS
          AXIS indicates that the report placement for the report item is an axis.
static java.lang.String MEASURE
          MEASURE indicates that the report placement for the report item is a measure.
static java.lang.String XAXIS
          XAXIS indicates that the report placement for the report item is the x axis.
static java.lang.String YAXIS
          YAXIS indicates that the report placement for the report item is the y axis.
static java.lang.String ZAXIS
          ZAXIS indicates that the report placement for the report item is the z (page) axis.

 

Method Summary
 OWBNamedObject getRelatedAttribute()
          Returns the related attribute, which may be a Column, a cube Measure, a dimension Level Attribute or a Query Item.
 Report getReport()
          Returns the owning report.
 java.lang.String getReportPlacement()
          Returns the placement for the report item in the report.
 void setRelatedAttribute(OWBNamedObject attribute)
          Sets the related attribute for the Report Item to reference a Column, a cube Measure, a dimension Level Attribute or a Query Item.
 void setReportPlacement(java.lang.String reportPlacement)
          Sets the placement for the report item in the report.

 

Methods inherited from interface oracle.owb.foundation.OWBNamedObject
delete, getBusinessName, getClassDefinition, getComponent, getDescription, getName, getUOID, isDeletable, isEditable, isRenamable, setBusinessName, setDescription, setName

 

Methods inherited from interface oracle.owb.foundation.property.PropertyOwner
getDefaultPropertyValue, getLogicalPropertyKeys, getPhysicalPropertyKeys, getPropertyDomain, getPropertyKeys, getPropertyValue, getPropertyValueString, isLogicalProperty, isPhysicalProperty, isReadOnlyProperty, setPropertyValue, setPropertyValueByString

 

Field Detail

MEASURE

public static final java.lang.String MEASURE
MEASURE indicates that the report placement for the report item is a measure.
See Also:
Constant Field Values

AXIS

public static final java.lang.String AXIS
AXIS indicates that the report placement for the report item is an axis.
See Also:
Constant Field Values

XAXIS

public static final java.lang.String XAXIS
XAXIS indicates that the report placement for the report item is the x axis.
See Also:
Constant Field Values

YAXIS

public static final java.lang.String YAXIS
YAXIS indicates that the report placement for the report item is the y axis.
See Also:
Constant Field Values

ZAXIS

public static final java.lang.String ZAXIS
ZAXIS indicates that the report placement for the report item is the z (page) axis.
See Also:
Constant Field Values
Method Detail

getReportPlacement

public java.lang.String getReportPlacement()
Returns the placement for the report item in the report.
Returns:
a String representing the report placement value. Possible values are MEASURE, AXIS, XAXIS, YAXIS or ZAXIS.
See Also:
setReportPlacement(java.lang.String)

setReportPlacement

public void setReportPlacement(java.lang.String reportPlacement)
Sets the placement for the report item in the report.
Parameters:
reportPlacement - a String specifying the report placement value. Possible values are MEASURE, AXIS, XAXIS, YAXIS or ZAXIS.
See Also:
getReportPlacement()

getReport

public Report getReport()
Returns the owning report.
Returns:
the Report to which the report item belongs.

setRelatedAttribute

public void setRelatedAttribute(OWBNamedObject attribute)
Sets the related attribute for the Report Item to reference a Column, a cube Measure, a dimension Level Attribute or a Query Item.
Parameters:
attribute - an OWBNamedObject specifying the related attribute. (A null attribute value leaves the related attribute unset.)
See Also:
getRelatedAttribute()

getRelatedAttribute

public OWBNamedObject getRelatedAttribute()
Returns the related attribute, which may be a Column, a cube Measure, a dimension Level Attribute or a Query Item.
Returns:
an OWBNamedObject representing the related attribute or null if none.
See Also:
setRelatedAttribute(oracle.owb.foundation.OWBNamedObject)

Oracle Warehouse Builder Java API Reference
10g Release 1 (10.1)

B12155-01

Copyright © 2003, Oracle. All Rights Reserved.