Uses of Interface
org.palo.api.CubeView

Packages that use CubeView
org.palo.api   
org.palo.api.ext.favoriteviews   
org.palo.api.ext.favoriteviews.impl   
 

Uses of CubeView in org.palo.api
 

Methods in org.palo.api that return CubeView
 CubeView Cube.addCubeView(java.lang.String name, Property[] properties)
          Adds a new cube view to this cube.
 CubeView Cube.addCubeView(java.lang.String id, java.lang.String name, Property[] properties)
          Deprecated. please use Cube.addCubeView(String, Property[]) instead
 CubeView Cube.getCubeView(java.lang.String id)
          Returns the cube view which is registered with the given id or null if no such view exists.
 CubeView[] Cube.getCubeViews()
          Deprecated. please use Cube.getCubeViews(PersistenceObserver) instead
 

Methods in org.palo.api with parameters of type CubeView
 void Cube.removeCubeView(CubeView view)
          Removes the given cube view instance from the cube
 

Uses of CubeView in org.palo.api.ext.favoriteviews
 

Methods in org.palo.api.ext.favoriteviews that return CubeView
 CubeView FavoriteView.getCubeView()
          Returns the CubeView that is attached to this favorite view.
 

Methods in org.palo.api.ext.favoriteviews with parameters of type CubeView
abstract  FavoriteView FavoriteViewFactory.createFavoriteView(java.lang.String name, CubeView view)
          Creates a new FavoriteView with a name and an attached cube view.
abstract  FavoriteView FavoriteViewFactory.createFavoriteView(java.lang.String name, CubeView view, int position)
          Creates a new FavoriteView with a name, an attached cube view, and a position.
 

Uses of CubeView in org.palo.api.ext.favoriteviews.impl
 

Methods in org.palo.api.ext.favoriteviews.impl that return CubeView
 CubeView FavoriteViewXMLHandler.findCubeViewById(Connection connection, java.lang.String dbId, java.lang.String cubeId, java.lang.String viewId)
          This method is used to find a CubeView object in the set of currently active databases and connections.
 CubeView FavoriteViewImpl.getCubeView()
          Returns the cube view that is attached to this favorite view.
 

Methods in org.palo.api.ext.favoriteviews.impl with parameters of type CubeView
 FavoriteView FavoriteViewFactoryImpl.createFavoriteView(java.lang.String name, CubeView view)
          Creates a new favorite view with a default position (0).
 FavoriteView FavoriteViewFactoryImpl.createFavoriteView(java.lang.String name, CubeView view, int position)
          Creates a new favorite view.
 

Constructors in org.palo.api.ext.favoriteviews.impl with parameters of type CubeView
FavoriteViewImpl(java.lang.String name, CubeView view)
          Creates a new FavoriteView with a name and an attached cube view.
FavoriteViewImpl(java.lang.String name, CubeView view, int position)
          Creates a new FavoriteView with a name, an attached cube view, and a position.