Copyright © 2011 Citra Technologies. All Rights Reserved.

com.citra.pivot.olap.metadata
Interface OlapObject

All Known Subinterfaces:
OlapCube, OlapDimension, OlapHierarchy, OlapLevel, OlapMeasure, OlapMember, OlapSchema
All Known Implementing Classes:
AbstractOlapObject, AbstractTableObject, DerivedTableMeasure, OlapCubeImpl, OlapDimensionImpl, OlapHierarchyImpl, OlapLevelImpl, OlapMeasureImpl, OlapMemberImpl, OlapRootMember, OlapSchemaImpl, StandardTableMeasure, TableCube, TableDimension, TableHierarchy, TableLevel, TableMeasure, TableMember, TableSchema

public interface OlapObject

OlapObject is the base class of all olap metadata objects. It defines methods for retrieving the name, id, caption and description of the object.


Method Summary
 String getCaption()
          Retrieves the caption of the olap object.
 String getDescription()
          Retrieves the description of the olap object.
 String getID()
          Retrieves the id of the olap object.
 String getName()
          Retrieves the name of the olap object.
 

Method Detail

getCaption

String getCaption()
Retrieves the caption of the olap object.

Returns:
the caption as string

getDescription

String getDescription()
Retrieves the description of the olap object.

Returns:
the description as string

getID

String getID()
Retrieves the id of the olap object.

Returns:
the id as string

getName

String getName()
Retrieves the name of the olap object.

Returns:
the name as string

Copyright © 2011 Citra Technologies. All Rights Reserved.