Uses of Class
org.palo.api.ext.favoriteviews.FavoriteViewTreeNode

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

Uses of FavoriteViewTreeNode in org.palo.api
 

Methods in org.palo.api that return FavoriteViewTreeNode
 FavoriteViewTreeNode Connection.loadFavoriteViews()
          Loads all favorite views stored with this connection and returns the root of the favorite view tree representing those views or null, if no favorite views were stored in this connection.
 

Methods in org.palo.api with parameters of type FavoriteViewTreeNode
 void Connection.storeFavoriteViews(FavoriteViewTreeNode favoriteViews)
          Stores the favorite views for this connection.
 

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

Methods in org.palo.api.ext.favoriteviews that return FavoriteViewTreeNode
 FavoriteViewTreeNode FavoriteViewTreeNode.getChildAt(int index)
          Returns the child at the specified index.
 FavoriteViewTreeNode[] FavoriteViewTreeNode.getChildren()
          Returns all children of this node.
 FavoriteViewTreeNode FavoriteViewTreeNode.getParent()
          Returns the parent of this node.
 

Methods in org.palo.api.ext.favoriteviews with parameters of type FavoriteViewTreeNode
 void FavoriteViewTreeNode.addChild(FavoriteViewTreeNode child)
          Adds a child at the end of the list of children of this node.
 int FavoriteViewTreeNode.indexOfChild(FavoriteViewTreeNode child)
          Returns the index of the specified child or -1 if it is not a child of this node.
 void FavoriteViewTreeNode.insertChild(int index, FavoriteViewTreeNode child)
          Inserts a child at the given index into the list of children of this node.
 void FavoriteViewTreeNode.removeChild(FavoriteViewTreeNode child)
          Removes the specified child from the list of children and sets the child's parent to null.
 void FavoriteViewTreeNode.setParent(FavoriteViewTreeNode parent)
          Sets a new parent for this node.
 

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

Methods in org.palo.api.ext.favoriteviews.impl that return FavoriteViewTreeNode
 FavoriteViewTreeNode FavoriteViewXMLHandler.getRoot()
          Returns the root of the generated tree.
 FavoriteViewTreeNode FavoriteViewModel.loadFavoriteViews(Connection con)
          The method retrieves the AdvancedSystem database of the connection (or creates it, if it is not yet in the connection) and also gets the bookmark-cube from the AdvancedSystem database (or creates it, if it had not been present (for this user)).
 

Methods in org.palo.api.ext.favoriteviews.impl with parameters of type FavoriteViewTreeNode
 void FavoriteViewXMLBuilder.preOrderTraversal(FavoriteViewTreeNode node)
          Traverses the specified tree in pre-order (children before the parent) and signals visit-begin and visit-end notifications upon doing so.
 void FavoriteViewModel.storeFavoriteViews(Connection con, FavoriteViewTreeNode root)
          Stores a favorite views tree in the given connection.
 

Uses of FavoriteViewTreeNode in org.palo.api.impl
 

Methods in org.palo.api.impl that return FavoriteViewTreeNode
 FavoriteViewTreeNode ConnectionImpl.loadFavoriteViews()
           
 

Methods in org.palo.api.impl with parameters of type FavoriteViewTreeNode
 void ConnectionImpl.storeFavoriteViews(FavoriteViewTreeNode favoriteViews)