Uses of Interface
org.palo.api.Database

Packages that use Database
org.palo.api   
org.palo.api.ext.favoriteviews.impl   
org.palo.api.impl   
org.palo.api.impl.subsets   
org.palo.api.impl.views   
org.palo.api.subsets.io   
 

Uses of Database in org.palo.api
 

Methods in org.palo.api that return Database
 Database Connection.addDatabase(java.lang.String name)
          Adds a new database with the given name to this Connection.
 Database Dimension.getDatabase()
          Returns the parent Database of this instance.
 Database Cube.getDatabase()
          Returns the parent Database of this instance.
 Database Connection.getDatabaseAt(int index)
          Returns the database stored at the given index.
 Database Connection.getDatabaseById(java.lang.String id)
          Returns the database stored under the given id or null if no such database exists.
 Database Connection.getDatabaseByName(java.lang.String name)
          Returns the database stored under the given name or null if no such database exists.
 Database[] ConnectionEvent.getDatabases()
          Returns the affected Databases of the event if the event is applicable to databases, otherwise null is returned.
 Database[] Connection.getDatabases()
          Returns an array of Database instances available for this connection.
 Database[] Connection.getSystemDatabases()
          Returns an array of system Database instances available for this connection.
 

Methods in org.palo.api with parameters of type Database
 void Connection.removeDatabase(Database database)
          Removes a database from this Connection.
 

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

Methods in org.palo.api.ext.favoriteviews.impl with parameters of type Database
 Cube FavoriteViewModel.createBookmarkCubeInExistingDatabase(Database db)
          If a connection is found that _does_ have an AdvancedSystem database but which does not include the bookmarks cube, this method creates the new bookmarks cube.
 

Uses of Database in org.palo.api.impl
 

Methods in org.palo.api.impl that return Database
 Database ConnectionImpl.addDatabase(java.lang.String name)
           
 Database ConnectionImpl.getDatabaseAt(int index)
           
 Database ConnectionImpl.getDatabaseById(java.lang.String id)
           
 Database ConnectionImpl.getDatabaseByName(java.lang.String name)
           
 Database[] ConnectionImpl.getDatabases()
           
 Database[] ConnectionImpl.getSystemDatabases()
           
 

Methods in org.palo.api.impl with parameters of type Database
 void ConnectionImpl.removeDatabase(Database database)
           
 

Uses of Database in org.palo.api.impl.subsets
 

Methods in org.palo.api.impl.subsets with parameters of type Database
 boolean SubsetPersistence.hasSubsets(Database database)
           
 Subset[] SubsetPersistence.loadAll(Database database)
           
 

Uses of Database in org.palo.api.impl.views
 

Methods in org.palo.api.impl.views with parameters of type Database
 void CubeViewManager.init(Database database)
           
 

Uses of Database in org.palo.api.subsets.io
 

Methods in org.palo.api.subsets.io with parameters of type Database
static boolean SubsetIOHandler.supportsNewSubsets(Database database)
          Returns true if new subsets, i.e.
 

Constructors in org.palo.api.subsets.io with parameters of type Database
SubsetIOHandler(Database database)