Business Components

Uses of Interface
oracle.jbo.ViewObject

Packages that use.*
PackageDescription
oracle.jbo Contains interfaces for client-side applications. 
oracle.jbo.server Contains the implementation of middle tier components. 
oracle.jbo.uicli.binding Contains JClient classes that handle interaction with BC4J objects for various JClient bindings. 
oracle.jbo.xsql   
 

Uses of ViewObject in oracle.jbo
 

Methods in oracle.jbo that return ViewObject
TypeName
 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.
 ViewObject RowSet.getViewObject()
          Gets the View Object that contains the row set.
 ViewObject ApplicationModule.createViewObject(java.lang.String voName, java.lang.String defName)
          Creates a View Object in this Application Module from the View Object 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 View Object in this Application Module from an Entity Object and additional SQL clauses.
 ViewObject ApplicationModule.createViewObjectFromQueryStmt(java.lang.String vuName, java.lang.String sqlStatement)
          Creates a View Object in this Application Module based on a SQL statement.
 ViewObject ApplicationModule.findViewObject(java.lang.String voName)
          Finds the named View Object.
 ViewObject ApplicationModule.findViewObjectUsingEntity(ViewObject[] vos, java.lang.String entityName, java.lang.String[] attrName)
          Given an array of View Objects (the vos parameter), finds the first matching View Object.
 

Methods in oracle.jbo with parameters of type ViewObject
TypeName
 void JboException.doEntityToVOMapping(ApplicationModule rootAm, ViewObject[] vos)
           
 void AttrValException.doEntityToVOMapping(ApplicationModule rootAm, ViewObject[] vos)
           
 ViewLink ApplicationModule.createViewLink(java.lang.String vlName, java.lang.String defName, ViewObject master, ViewObject detail)
          Creates a View Link in this Application Module from the View Link definition.
 ViewLink ApplicationModule.createViewLinkFromEntityAssocName(java.lang.String vlName, java.lang.String entityAssocName, ViewObject master, ViewObject detail)
          Creates a View Link in this Application Module from an Entity Association.
 ViewLink ApplicationModule.createViewLinkBetweenViewObjects(java.lang.String vlName, java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause)
          Creates a View Link in this Application Module.
 ViewObject ApplicationModule.findViewObjectUsingEntity(ViewObject[] vos, java.lang.String entityName, java.lang.String[] attrName)
          Given an array of View Objects (the vos parameter), finds the first matching View Object.
 void RowValException.doEntityToVOMapping(ApplicationModule rootAm, ViewObject[] vos)
           
 

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

Uses of ViewObject in oracle.jbo.server
 

Classes in oracle.jbo.server that implement ViewObject
TypeName
 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
TypeName
 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.
protected  ViewObject ApplicationModuleImpl.createViewObject(java.lang.String voName, ViewDefImpl viewDef)
           
 ViewObject ApplicationModuleImpl.createViewObject(java.lang.String voName, java.lang.String vDefName)
          Creates an updateable View Object.
 ViewObject ApplicationModuleImpl.findViewObjectUsingEntity(ViewObject[] vos, java.lang.String eoName, java.lang.String[] attrNames)
           
 ViewObject ViewRowImpl.getViewObject()
          Gets the View Object to which this row belongs.
 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 ViewLinkImpl.getSource()
          Gets the master (source side) View Object.
 ViewObject ViewLinkImpl.getDestination()
          Gets the detail (destination side) View Object.
 ViewObject ViewObjectImpl.getViewObject()
           
 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 ViewRowSetImpl.getViewObject()
          Returns this row set's View Object.
 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 ViewRowSetIteratorImpl.getViewObject()
          Returns this row set iterator's view object.
 

Methods in oracle.jbo.server with parameters of type ViewObject
TypeName
 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.
 ViewObject ApplicationModuleImpl.findViewObjectUsingEntity(ViewObject[] vos, java.lang.String eoName, java.lang.String[] attrNames)
           
 java.lang.String BaseSQLBuilderImpl.getViewCriteriaClause(ViewObject vo, ViewCriteria criteria)
           
 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.
 void ViewLinkImpl.setSource(ViewObject source)
          Sets the master (source side) View Object.
 void ViewLinkImpl.setDestination(ViewObject destination)
          Sets the detail (destination side) View Object.
 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.
 java.lang.String ViewCriteriaAdapter.getViewCriteriaClause(ViewObject vo, ViewCriteria vc)
           
 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.
 

Uses of ViewObject in oracle.jbo.uicli.binding
 

Methods in oracle.jbo.uicli.binding that return ViewObject
TypeName
 ViewObject JUControlBinding.getViewObject()
          Returns the ViewObject for which this control is displaying data.
 ViewObject JUIteratorBinding.getViewObject()
          Returns the instance of ViewObject of the RowIterator to which this iterator binding is associated.
 

Uses of ViewObject in oracle.jbo.xsql
 

Methods in oracle.jbo.xsql with parameters of type ViewObject
TypeName
 void ViewObject.setQueryParams(ViewObject vo, java.util.Dictionary request)
           
 


Business Components