Uses of Interface
org.barracudamvc.plankton.data.PData

Packages that use PData
org.barracudamvc.plankton.data   
org.barracudamvc.plankton.srv   
 

Uses of PData in org.barracudamvc.plankton.data
 

Subinterfaces of PData in org.barracudamvc.plankton.data
 interface PList
          The purpose of this interface is to extend the standard List interface to support the notions of parental hierarchy (allowing you to navigate up) state (by implementing the StateMap interface)
 interface PMap
          The purpose of this interface is to extend the standard Map interface to support the notions of parental hierarchy (allowing you to navigate up) state (by implementing the StateMap interface)
 

Classes in org.barracudamvc.plankton.data that implement PData
 class AbstractPData
          Abstract implementation of the basic PData methods.
 class PArrayList
          This class extends AbstractPData (which provides the parental/statemap functionality) and delegates most of the List functionality back to an underlying ArrayList
 class PHashMap
          This class extends AbstractPData (which provides the parental/statemap functionality) and delegates most of the Map functionality back to an underlying HashMap
 

Fields in org.barracudamvc.plankton.data declared as PData
protected  PData AbstractPData.parent
           
 

Methods in org.barracudamvc.plankton.data that return PData
 PData PData.getParent()
          get the objects parent (null if root)
 PData PData.getRootParent()
          get the root parent by chaining back up the heirarchy until we find the highest PData object in the heirarchy.
 PData AbstractPData.getParent()
          get the objects parent (null if root)
 PData AbstractPData.getRootParent()
          get the root parent by chaining back up the heirarchy until we find the highest PData object in the heirarchy.
 

Methods in org.barracudamvc.plankton.data with parameters of type PData
 void PData.setParent(PData p)
          set the object's parent
 void AbstractPData.setParent(PData p)
          set the object's parent.
 

Uses of PData in org.barracudamvc.plankton.srv
 

Methods in org.barracudamvc.plankton.srv with parameters of type PData
static Object SimpleServiceFinder.findInstance(Class c, PData pdata)
          Find an instance of a Class in an PData heirarchy.
static Object SimpleServiceFinder.findInstance(Class c, PData pdata, int searchDirection)
          Find an instance of a Class in an PData heirarchy
 



Copyright © 2004 BarracudaMVC.org All Rights Reserved.