Business Components

Uses of Interface
oracle.jbo.ViewObject

Packages that use ViewObject
oracle.jbo Contains interfaces for client-side applications. 
oracle.jbo.jbotester   
oracle.jbo.server Contains the implementation of middle tier components. 
 

Uses of ViewObject in oracle.jbo
 

Methods in oracle.jbo that return ViewObject
 ViewObject ApplicationModule.findViewObject(java.lang.String voName)
          Gets the named View Object that was created at runtime in the Application Module or created with Design Time tools.
 ViewObject ApplicationModule.createViewObject(java.lang.String vuName, java.lang.String voName)
          Creates an updateable View Object from the name of a ViewObject metadata definition.
 ViewObject ApplicationModule.createViewObjectFromQueryClauses(java.lang.String vuName, java.lang.String eoName, java.lang.String selectClause, java.lang.String fromClause, java.lang.String whereClause, java.lang.String orderByClause)
          Creates an updateable View Object from an Entity Object and additional SQL clauses.
 ViewObject ApplicationModule.createViewObjectFromQueryStmt(java.lang.String vuName, java.lang.String sqlStatement)
          Creates a read-only View Object definition from a SQL statement.
 ViewObject RowSet.getViewObject()
          Gets the View Object that contains the row set.
 ViewObject ViewCriteria.getViewObject()
          Gets the View Object that owns the view criteria.
 ViewObject ViewLink.getSource()
          Gets the link's master View Object.
 ViewObject ViewLink.getDestination()
          Gets the link's detail View Object.
 

Methods in oracle.jbo with parameters of type ViewObject
 ViewLink ApplicationModule.createViewLink(java.lang.String viewLinkName, java.lang.String viewLinkDefName, ViewObject master, ViewObject detail)
          Creates a View Link, given the View Link name, the Def name, and the names of the master and detail View Objects.
 ViewLink ApplicationModule.createViewLinkFromEntityAssocName(java.lang.String viewLinkName, java.lang.String entityAssocName, ViewObject master, ViewObject detail)
          Creates a View Link, given the View Objects and an Entity Association.
 ViewLink ApplicationModule.createViewLinkBetweenViewObjects(java.lang.String viewLinkName, java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause)
          Creates a View Link given either a View Link Definition or an Entity Association.
 

Constructors in oracle.jbo with parameters of type ViewObject
ViewCriteria.ViewCriteria(ViewObject viewObject)
          Creates an empty view criteria object.
 

Uses of ViewObject in oracle.jbo.jbotester
 

Methods in oracle.jbo.jbotester that return ViewObject
 ViewObject VODialog.getViewObject()
           
 

Methods in oracle.jbo.jbotester with parameters of type ViewObject
static java.lang.String JboTesterUtil.getDataAsXML(ViewObject vo)
           
static void JboTesterUtil.createViewCriteria(MainFrame parent, ViewObject vo)
           
 

Constructors in oracle.jbo.jbotester with parameters of type ViewObject
SimpleForm.SimpleForm(MainFrame frame, ObjTreeNode objNode, ViewObject vo)
           
MDForm.MDForm(MainFrame frame, ObjTreeNode objNode, ViewObject masterVO, ViewObject detailVO)
           
VCDialog.VCDialog(MainFrame frame, ViewObject vo)
           
 

Uses of ViewObject in oracle.jbo.server
 

Classes in oracle.jbo.server that implement ViewObject
 class ViewObjectImpl
          The implementation of the ViewObject interface, the middle-tier class that manages database queries and the view rows that result from executing queries.
 

Methods in oracle.jbo.server that return ViewObject
 ViewObject ViewRowSetIteratorImpl.getViewObject()
          Returns this row set iterator's view object.
 ViewObject ViewRowSetImpl.getViewObject()
          Returns this row set's View Object.
 ViewObject ApplicationModuleImpl.findViewObject(java.lang.String voName)
          Gets the named View Object that was created at runtime in the Application Module or created with Design Time tools.
 ViewObject[] ApplicationModuleImpl.getViewObjects()
          Constructs an array of this Application Module's View Objects.
 ViewObject ApplicationModuleImpl.createViewObjectFromQueryStmt(java.lang.String qName, java.lang.String query)
          Creates a read-only View Object, given a query statement and a name for the View Object.
 ViewObject ApplicationModuleImpl.createViewObjectFromQueryClauses(java.lang.String vuName, java.lang.String eoName, java.lang.String selectClause, java.lang.String fromClause, java.lang.String whereClause, java.lang.String orderByClause)
          Creates an updateable View Object.
 ViewObject ApplicationModuleImpl.createViewObject(java.lang.String voName, java.lang.String vDefName)
          Creates an updateable View Object.
 ViewObject NullDBTransactionImpl.createViewObject(java.lang.String voDefName)
          Implementation of the DBTransaction interface.
 ViewObject NullDBTransactionImpl.createViewObjectFromQueryClauses(java.lang.String eoName, java.lang.String selectClause, java.lang.String fromClause, java.lang.String whereClause, java.lang.String orderByClause)
          Implementation of the DBTransaction interface.
 ViewObject NullDBTransactionImpl.createViewObjectFromQueryStmt(java.lang.String sqlStatement)
          Implementation of the DBTransaction interface.
 ViewObject DBTransactionImpl.createViewObject(java.lang.String voDefName)
          Creates an anonymous query definition from the name of a ViewObject class.
 ViewObject DBTransactionImpl.createViewObjectFromQueryClauses(java.lang.String eoName, java.lang.String selectClause, java.lang.String fromClause, java.lang.String whereClause, java.lang.String orderByClause)
          Creates an updatable query definition.
 ViewObject DBTransactionImpl.createViewObjectFromQueryStmt(java.lang.String sqlStatement)
          Creates an anonymous query definition from an SQL statement.
 ViewObject DBTransaction.createViewObject(java.lang.String voDefName)
          Creates a ViewObject instance based on the named defintion.
 ViewObject DBTransaction.createViewObjectFromQueryClauses(java.lang.String eoName, java.lang.String selectClause, java.lang.String fromClause, java.lang.String whereClause, java.lang.String orderByClause)
          Creates an updatable View Object.
 ViewObject DBTransaction.createViewObjectFromQueryStmt(java.lang.String sqlStatement)
          Creates a View Object from a SQL statement.
 ViewObject ViewObjectImpl.getViewObject()
           
 ViewObject ViewRowImpl.getViewObject()
          Gets the View Object to which this row belongs.
 ViewObject ViewLinkImpl.getSource()
          Gets the master (source side) View Object.
 ViewObject ViewLinkImpl.getDestination()
          Gets the detail (destination side) View Object.
 

Methods in oracle.jbo.server with parameters of type ViewObject
 ViewLink ApplicationModuleImpl.createViewLink(java.lang.String viewLinkName, java.lang.String viewLinkDefName, ViewObject master, ViewObject detail)
          Creates a View Link, given the View Link name, the Def name, and the names of the master and detail View Objects.
 ViewLink ApplicationModuleImpl.createViewLinkFromEntityAssocName(java.lang.String viewLinkName, java.lang.String entityAssocName, ViewObject master, ViewObject detail)
          Creates a View Link, given the View Objects and an Entity Association.
 ViewLink ApplicationModuleImpl.createViewLinkBetweenViewObjects(java.lang.String viewLinkName, java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause)
          Creates a View Link given either a View Link Definition or an Entity Association.
 oracle.jbo.common.remote.rAttributeDescription[] ApplicationModuleImpl.getQueryInfo(ViewObject vo)
          Internal: Applications should not use this method.
 ViewLink NullDBTransactionImpl.createViewLink(java.lang.String viewLinkDefName, ViewObject master, ViewObject detail)
          Implementation of the DBTransaction interface.
 ViewLink NullDBTransactionImpl.createViewLinkFromEntityAssocName(java.lang.String entityAssocName, ViewObject master, ViewObject detail)
          Implementation of the DBTransaction interface.
 ViewLink NullDBTransactionImpl.createViewLinkBetweenViewObjects(java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause)
          Implementation of the DBTransaction interface.
 ViewLink DBTransactionImpl.createViewLink(java.lang.String viewLinkDefName, ViewObject master, ViewObject detail)
          Creates an anonymous View Link.
 ViewLink DBTransactionImpl.createViewLinkFromEntityAssocName(java.lang.String entityAssocName, ViewObject master, ViewObject detail)
          Creates a View Link.
 ViewLink DBTransactionImpl.createViewLinkBetweenViewObjects(java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause)
          Creates an anonymous View Link.
 ViewLink DBTransaction.createViewLink(java.lang.String viewLinkDefName, ViewObject master, ViewObject detail)
          Creates a View Link.
 ViewLink DBTransaction.createViewLinkFromEntityAssocName(java.lang.String entityAssocName, ViewObject master, ViewObject detail)
          Creates a View Link.
 ViewLink DBTransaction.createViewLinkBetweenViewObjects(java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause)
          Creates a View Link.
 void ViewLinkImpl.setSource(ViewObject source)
          Sets the master (source side) View Object.
 void ViewLinkImpl.setDestination(ViewObject destination)
          Sets the detail (destination side) View Object.
 


Business Components