Uses of Interface
au.gov.tas.dpiwe.mr.bean.BeanObject

Packages that use BeanObject
au.gov.tas.dpiwe.mr.bean The au.gov.tas.dpiwe.mr.bean package contains the classes and interfaces supporting the development and deployment of Mr Architecture beans, as well as an example bean, consisting of three components, Bean, BeanHome and BeanObject, and its corresponding implementation components, ThinBean, MrBeanHome and MrBean, as would be created by the DeploymentTool. 
 

Uses of BeanObject in au.gov.tas.dpiwe.mr.bean
 

Classes in au.gov.tas.dpiwe.mr.bean that implement BeanObject
 class MrBean
          This is an implementation of the abstract Bean class which wraps a ThinBean with container-based persistence logic.
 

Methods in au.gov.tas.dpiwe.mr.bean that return BeanObject
 BeanObject BeanHome.create(Object primaryKey)
          A creator method creates a new bean object, selecting the primary key from a sequence if none is provided.
 BeanObject MrBeanHome.create(Object primaryKey)
          Creates a new bean object instance.
 BeanObject MrBeanHome.findAllByPrimaryKey(Object primaryKey)
          Finds an existing bean object, and all its related objects.
 BeanObject BeanHome.findByPrimaryKey(Object primaryKey)
          A finder method that locates an existing bean object.
 BeanObject MrBeanHome.findByPrimaryKey(Object primaryKey)
          Finds an existing bean object.
 BeanObject Bean.retrieveParentBean()
          A one to zero or one relationship destructor.
 BeanObject BeanObject.retrieveParentBean()
          A one to zero or one relationship destructor.
 

Methods in au.gov.tas.dpiwe.mr.bean with parameters of type BeanObject
 void Bean.putParentBean(BeanObject parentBean)
          A one to zero or one relationship setter.
 void BeanObject.putParentBean(BeanObject parentBean)
          A one to zero or one relationship setter.