Business Components

Uses of Interface
oracle.jbo.XMLInterface

Packages that use XMLInterface
oracle.jbo Contains interfaces for client-side applications. 
oracle.jbo.common Contains the implementation of components shared by thin clients and the middle tier. 
oracle.jbo.server Contains the implementation of middle tier components. 
 

Uses of XMLInterface in oracle.jbo
 

Subinterfaces of XMLInterface in oracle.jbo
 interface Row
          This interface provides access to table rows.
 interface RowSet
          Defines the middle-tier representation of a set of table rows.
 interface ViewObject
          Defines the presentation of the Entity Objects selected by an SQL statement.
 

Uses of XMLInterface in oracle.jbo.common
 

Methods in oracle.jbo.common with parameters of type XMLInterface
static org.w3c.dom.Node JboXMLUtil.writeAndProcessXML(XMLInterface obj, int depthCount, long options, oracle.xml.parser.v2.XSLStylesheet xslt)
           
static void JboXMLUtil.processAndReadXML(XMLInterface obj, org.w3c.dom.Element elem, int depthCount, oracle.xml.parser.v2.XSLStylesheet xslt)
           
 

Uses of XMLInterface in oracle.jbo.server
 

Subinterfaces of XMLInterface in oracle.jbo.server
 interface Entity
          Defines the middle-tier representation of database rows.
 

Classes in oracle.jbo.server that implement XMLInterface
 class EJBEntityImpl
           
 class EntityImpl
          This class implements the middle-tier representations of database rows.
 class RowImpl
          Base class for Entity Rows and View Object Rows.
(package private)  class oracle.jbo.server.RowSetImpl
          Internal: Applications should not use this class.
 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.
 class ViewRowImpl
          A View Object Row.
 class ViewRowSetImpl
          The middle-tier class that manages collections of view rows that result from executing a query.
 


Business Components