Business Components

Uses of Interface
oracle.jbo.ViewLink

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

Uses of ViewLink in oracle.jbo
 

Methods in oracle.jbo that return ViewLink
 ViewLink ApplicationModule.findViewLink(java.lang.String viewLinkName)
          Returns the specified View Link from this Application Module.
 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.
 

Methods in oracle.jbo with parameters of type ViewLink
 AttributeDef ViewObject.findViewLinkAccessor(ViewLink vl)
          Finds the view link accessor attribute.
 

Constructors in oracle.jbo with parameters of type ViewLink
ViewLinkAlreadyExistsException.ViewLinkAlreadyExistsException(ViewLink vl, RowSetIterator masterRSI, RowSet detailRowSet)
          Constructs a new instance.
 

Uses of ViewLink in oracle.jbo.jbotester
 

Methods in oracle.jbo.jbotester that return ViewLink
 ViewLink VLDialog.getViewLink()
           
 

Constructors in oracle.jbo.jbotester with parameters of type ViewLink
TreeForm.TreeForm(MainFrame frame, ObjTreeNode objNode, ViewLink vl)
           
 

Uses of ViewLink in oracle.jbo.server
 

Classes in oracle.jbo.server that implement ViewLink
 class ViewLinkImpl
          Implements the ViewLink interface, the middle-tier class that manages a master-detail relationship between two View Objects.
 

Methods in oracle.jbo.server that return ViewLink
 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.
 ViewLink ApplicationModuleImpl.findViewLink(java.lang.String vlName)
          Returns the specified View Link from this Application Module.
 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.
 ViewLink[] ViewObjectImpl.getViewLinks()
          Constructs an array of View Links that involve this View Object.
 

Methods in oracle.jbo.server with parameters of type ViewLink
 AttributeDef ViewObjectImpl.findViewLinkAccessor(ViewLink vl)
          Finds the View Link accessor attribute.
 


Business Components