Business Components

Uses of Interface
oracle.jbo.ViewLink

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

Uses of ViewLink in oracle.jbo
 

Methods in oracle.jbo that return ViewLink
TypeName
 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.
 ViewLink ApplicationModule.findViewLink(java.lang.String vlName)
          Finds the named View Link.
 

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

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

Uses of ViewLink in oracle.jbo.server
 

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

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


Business Components