|
Oracle ADF Model and Business Components API Reference 10.1.2 B14022-02 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ViewObject | |
oracle.adf.model.bc4j | |
oracle.adf.model.binding | Contains the abstract implementation of ADFm binding objects. |
oracle.jbo | Contains interfaces for client-side applications. |
oracle.jbo.client.remote | |
oracle.jbo.common | Contains the implementation of components shared by thin clients and the middle tier. |
oracle.jbo.common.ws | |
oracle.jbo.domain | |
oracle.jbo.html | |
oracle.jbo.html.struts11.actions | |
oracle.jbo.server | Contains the implementation of middle tier components. |
oracle.jbo.server.ejb | |
oracle.jbo.server.ejb.facade | |
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.adf.model.bc4j |
Methods in oracle.adf.model.bc4j that return ViewObject | |
ViewObject |
DCJboDataControl.findCustomViewObject(java.lang.String name, java.lang.String interfaceName) |
Uses of ViewObject in oracle.adf.model.binding |
Methods in oracle.adf.model.binding that return ViewObject | |
ViewObject |
DCIteratorBinding.getViewObject() Returns the instance of ViewObject of the RowIterator to which this iterator binding is associated. |
ViewObject |
DCControlBinding.getViewObject() Returns the ViewObject for which this control is displaying data. |
protected ViewObject[] |
DCBindingContainer.getOrderedVOUsageList(DCDataControl dc) Returns an ordered list of ViewObject usages in this panel so that a JboException parameters can be transformed from Entity-layer names and exception parameters to ViewObject names and parameters. |
Uses of ViewObject in oracle.jbo |
Methods in oracle.jbo that return ViewObject | |
ViewObject |
ViewLink.getSource() Gets the link's master View Object. |
ViewObject |
ViewLink.getDestination() Gets the link's detail View Object. |
ViewObject |
ViewCriteria.getViewObject() Gets the View Object that owns the view criteria. |
ViewObject[] |
ViewClearCacheEvent.getViewObjects() Returns an array of View Objects whose cache has been cleared. |
ViewObject |
RowSet.getViewObject() Gets the View Object that contains this 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 | |
void |
RowValException.doEntityToVOMapping(ApplicationModule rootAm, ViewObject[] vos) |
void |
RowDMLException.doEntityToVOMapping(ApplicationModule rootAm, ViewObject[] vos) |
void |
JboException.doEntityToVOMapping(ApplicationModule rootAm, ViewObject[] vos) |
void |
AttrValException.doEntityToVOMapping(ApplicationModule rootAm, ViewObject[] vos) |
protected void |
AttrValException.setMappedParameters(ViewObject vo, java.lang.String[] attrNames) |
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. |
java.lang.Object[] |
ApplicationModule.transformExceptionParams(ViewObject[] vos, java.lang.String entityName, java.lang.String exceptionClassName, java.lang.Object[] params) Internal: Applications should not use this method. This method uses findViewObjectUsingEntity() to get the first ViewObject that this entity is used in and then transforms the parameters from a given JboException from their Entity layer equivalents to the ViewObject equivalents. |
Constructors in oracle.jbo with parameters of type ViewObject | |
ViewCriteria(ViewObject viewObject) Creates an empty view criteria object. |
|
ViewClearCacheEvent(Transaction source, ViewObject[] vos) Creates a View Object clear-cache event. |
Uses of ViewObject in oracle.jbo.client.remote |
Classes in oracle.jbo.client.remote that implement ViewObject | |
class |
ViewUsageImpl |
Fields in oracle.jbo.client.remote declared as ViewObject | |
protected ViewObject |
ViewLinkImpl.mSrc |
protected ViewObject |
ViewLinkImpl.mDest |
Methods in oracle.jbo.client.remote that return ViewObject | |
ViewObject |
ViewUsageImpl.getViewObject() |
ViewObject |
ViewLinkImpl.getSource() |
ViewObject |
ViewLinkImpl.getDestination() |
ViewObject |
ApplicationModuleImpl.findViewObjectUsingEntity(ViewObject[] vos, java.lang.String entityDefName, java.lang.String[] attrNames) |
ViewObject |
ApplicationModuleImpl.createViewObject(java.lang.String voName, java.lang.String vDefName) Create a ViewUsage using the name of a ViewObject class. |
ViewObject |
ApplicationModuleImpl.createViewObjectFromQueryClauses(java.lang.String voName, java.lang.String eoName, java.lang.String selectClause, java.lang.String fromClause, java.lang.String whereClause, java.lang.String orderByClause) |
ViewObject |
ApplicationModuleImpl.createViewObjectFromQueryStmt(java.lang.String voName, java.lang.String sqlStatement) Create a ViewUsage using a SQL statement. |
ViewObject |
ApplicationModuleImpl.findViewObject(java.lang.String voName) |
Methods in oracle.jbo.client.remote with parameters of type ViewObject | |
ViewObject |
ApplicationModuleImpl.findViewObjectUsingEntity(ViewObject[] vos, java.lang.String entityDefName, java.lang.String[] attrNames) |
java.lang.Object[] |
ApplicationModuleImpl.transformExceptionParams(ViewObject[] vos, java.lang.String entityDefName, java.lang.String className, java.lang.Object[] params) |
ViewLink |
ApplicationModuleImpl.createViewLink(java.lang.String viewLinkName, java.lang.String viewLinkDefName, ViewObject master, ViewObject detail) |
ViewLink |
ApplicationModuleImpl.createViewLinkFromEntityAssocName(java.lang.String viewLinkName, java.lang.String entityAssocName, ViewObject master, ViewObject detail) |
ViewLink |
ApplicationModuleImpl.createViewLinkBetweenViewObjects(java.lang.String viewLinkName, java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause) |
protected int |
ApplicationModuleImpl.getViewObjectId(ViewObject vo) |
Uses of ViewObject in oracle.jbo.common |
Subinterfaces of ViewObject in oracle.jbo.common | |
interface |
ViewObjectDynAttr |
Methods in oracle.jbo.common with parameters of type ViewObject | |
static ViewCriteria |
ViewCriteriaMarshaller.createCriteria(ViewObject vo, SvcMsgDataRow[] rowEntries, boolean[] isUpper, int[] conjunctions) |
static ViewCriteria |
ViewCriteriaMarshaller.fromSvcMsg(ViewObject vo, RequestParams reqParams) |
static ViewCriteria |
ViewCriteriaMarshaller.fromSvcMsgResp(ViewObject vo, ResponseValues respValues) |
void |
DataDocument.addViewObject(ViewObject vo) |
Uses of ViewObject in oracle.jbo.common.ws |
Classes in oracle.jbo.common.ws that implement ViewObject | |
class |
WSViewObjectImpl |
Methods in oracle.jbo.common.ws that return ViewObject | |
ViewObject |
WSViewObjectImpl.getViewObject() |
ViewObject |
WSViewLinkImpl.getSource() |
ViewObject |
WSViewLinkImpl.getDestination() |
ViewObject |
WSRowSetImpl.getViewObject() |
ViewObject |
WSApplicationModuleImpl.createViewObject(java.lang.String voName, java.lang.String defName) |
ViewObject |
WSApplicationModuleImpl.createViewObjectFromQueryClauses(java.lang.String voName, java.lang.String eoName, java.lang.String selectClause, java.lang.String fromClause, java.lang.String whereClause, java.lang.String orderByClause) |
ViewObject |
WSApplicationModuleImpl.createViewObjectFromQueryStmt(java.lang.String voName, java.lang.String sqlStatement) |
ViewObject |
WSApplicationModuleImpl.findViewObject(java.lang.String voName) |
ViewObject |
WSApplicationModuleImpl.findViewObjectUsingEntity(ViewObject[] vos, java.lang.String entityName, java.lang.String[] attrNames) |
ViewObject |
WSApplicationModuleImpl.findCustomViewObject(java.lang.String voName, java.lang.String voType) |
ViewObject |
WSApplicationModuleImpl.findCustomViewObject(WSViewObjectImpl wsvo, java.lang.String voType) |
Methods in oracle.jbo.common.ws with parameters of type ViewObject | |
ViewLink |
WSApplicationModuleImpl.createViewLink(java.lang.String vlName, java.lang.String defName, ViewObject master, ViewObject detail) |
ViewLink |
WSApplicationModuleImpl.createViewLinkFromEntityAssocName(java.lang.String vlName, java.lang.String entityAssocName, ViewObject master, ViewObject detail) |
ViewLink |
WSApplicationModuleImpl.createViewLinkBetweenViewObjects(java.lang.String vlName, java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause) |
ViewObject |
WSApplicationModuleImpl.findViewObjectUsingEntity(ViewObject[] vos, java.lang.String entityName, java.lang.String[] attrNames) |
java.lang.Object[] |
WSApplicationModuleImpl.transformExceptionParams(ViewObject[] vos, java.lang.String entityDefName, java.lang.String className, java.lang.Object[] params) |
Uses of ViewObject in oracle.jbo.domain |
Methods in oracle.jbo.domain with parameters of type ViewObject | |
protected void |
DataCreationException.setMappedParameters(ViewObject vo, java.lang.String[] attrNames) |
Uses of ViewObject in oracle.jbo.html |
Methods in oracle.jbo.html that return ViewObject | |
ViewObject |
BC4JContext.getViewObject() Returns the viewObject property. |
Methods in oracle.jbo.html with parameters of type ViewObject | |
static void |
HtmlServices.updateRowAttributesFromRequestParameters(ViewObject vo, Row row, RequestParameters params) Internal: Applications should not use this method. |
void |
BC4JContext.setViewObject(ViewObject vo) Set the viewObject property value. |
Uses of ViewObject in oracle.jbo.html.struts11.actions |
Methods in oracle.jbo.html.struts11.actions with parameters of type ViewObject | |
protected void |
QueryAction.addViewCriteria(ViewObject vo, javax.servlet.http.HttpServletRequest request) "addViewCriteria" dispatch method called by LookupDispatchAction |
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 |
ViewRowImpl.getViewObject() Gets the View Object to which this row belongs. |
ViewObject |
ViewObjectImpl.getViewObject() |
ViewObject |
ViewLinkImpl.getSource() Gets the master (source side) View Object. |
ViewObject |
ViewLinkImpl.getDestination() Gets the detail (destination side) View Object. |
ViewObject |
NullDBTransactionImpl.createViewObject(java.lang.String voDefName) Deprecated. 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) Deprecated. Implementation of the DBTransaction interface. |
ViewObject |
NullDBTransactionImpl.createViewObjectFromQueryStmt(java.lang.String sqlStatement) Deprecated. Implementation of the DBTransaction interface. |
ViewObject |
DBTransactionImpl2.createViewObjectFromQueryClauses(java.lang.String eoName, java.lang.String selectClause, java.lang.String fromClause, java.lang.String whereClause, java.lang.String orderByClause) Implementation of createViewObjectFromQueryClauses method. |
ViewObject |
DBTransactionImpl2.createViewObjectFromQueryStmt(java.lang.String sqlStatement) Implementation of createViewObjectFromQueryStmt method. |
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 |
ApplicationModuleImpl.findViewObject(java.lang.String voName) Finds the named View Object. |
ViewObject[] |
ApplicationModuleImpl.getViewObjects() Constructs an array of this Application Module's View Objects. |
ViewObject |
ApplicationModuleImpl.createViewObjectFromQueryStmt(java.lang.String voName, 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 voName, 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) |
protected ViewObject |
ApplicationModuleDefImpl.loadViewObject(ApplicationModule am, java.lang.String voName) |
Methods in oracle.jbo.server with parameters of type ViewObject | |
void |
ViewLinkImpl.setSource(ViewObject source) Sets the master (source side) View Object. |
void |
ViewLinkImpl.setDestination(ViewObject destination) Sets the detail (destination side) View Object. |
java.lang.String |
ViewCriteriaAdapter.getViewCriteriaClause(ViewObject vo, ViewCriteria vc) |
protected java.lang.String |
OracleSQLBuilderImpl.getFormattedRHSCompareFragment(ViewObject vo, ViewCriteria vc, AttributeDef attrDef, int sqlType, java.lang.String rhs) |
protected java.lang.String |
OracleSQLBuilderImpl.getFormattedLHSCompareFragment(ViewObject vo, ViewCriteria vc, AttributeDef attrDef, int sqltype, java.lang.String lhs, java.lang.Object rhs) |
ViewLink |
NullDBTransactionImpl.createViewLink(java.lang.String viewLinkDefName, ViewObject master, ViewObject detail) Deprecated. Implementation of the DBTransaction interface. |
ViewLink |
NullDBTransactionImpl.createViewLinkFromEntityAssocName(java.lang.String entityAssocName, ViewObject master, ViewObject detail) Deprecated. Implementation of the DBTransaction interface. |
ViewLink |
NullDBTransactionImpl.createViewLinkBetweenViewObjects(java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause) Deprecated. 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. |
protected java.lang.Object |
BaseSQLBuilderImpl.convertValueToWhereFragment(ViewObject vo, ViewCriteria vc, AttributeDef curDef, java.lang.String trimmedValue) |
java.lang.String |
BaseSQLBuilderImpl.getViewCriteriaClause(ViewObject vo, ViewCriteria criteria) |
protected java.lang.String |
BaseSQLBuilderImpl.getFormattedRHSCompareFragment(ViewObject vo, ViewCriteria vc, AttributeDef attrDef, int sqlType, java.lang.String rhs) |
protected java.lang.String |
BaseSQLBuilderImpl.getFormattedLHSCompareFragment(ViewObject vo, ViewCriteria vc, AttributeDef attrDef, int sqlType, java.lang.String lhs, java.lang.Object rhs) |
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. |
static AttributeDefValue[] |
ApplicationModuleImpl.getAttributeDefsForVO(ViewObject vo) |
ViewObject |
ApplicationModuleImpl.findViewObjectUsingEntity(ViewObject[] vos, java.lang.String eoName, java.lang.String[] attrNames) |
java.lang.Object[] |
ApplicationModuleImpl.transformExceptionParams(ViewObject[] inVOs, java.lang.String entityDefName, java.lang.String className, java.lang.Object[] params) |
protected java.lang.Object[] |
ApplicationModuleImpl.transformExceptionParams(ViewObject vo, java.lang.String entityDefName, java.lang.String className, java.lang.Object[] params) Internal: Applications should not call this method. |
byte[] |
ApplicationModuleImpl.getViewAttributesPermission(ViewObject vo) Returns the current authenticated user permission for view attributes. |
Uses of ViewObject in oracle.jbo.server.ejb |
Methods in oracle.jbo.server.ejb that return ViewObject | |
ViewObject |
LocalApplicationModuleImpl.createViewObject(java.lang.String voName, java.lang.String defName) |
ViewObject |
LocalApplicationModuleImpl.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) |
ViewObject |
LocalApplicationModuleImpl.createViewObjectFromQueryStmt(java.lang.String vuName, java.lang.String sqlStatement) |
ViewObject |
LocalApplicationModuleImpl.findViewObject(java.lang.String voName) |
ViewObject |
LocalApplicationModuleImpl.findViewObjectUsingEntity(ViewObject[] vos, java.lang.String entityName, java.lang.String[] attrName) |
Methods in oracle.jbo.server.ejb with parameters of type ViewObject | |
ViewLink |
LocalApplicationModuleImpl.createViewLink(java.lang.String vlName, java.lang.String defName, ViewObject master, ViewObject detail) |
ViewLink |
LocalApplicationModuleImpl.createViewLinkFromEntityAssocName(java.lang.String vlName, java.lang.String entityAssocName, ViewObject master, ViewObject detail) |
ViewLink |
LocalApplicationModuleImpl.createViewLinkBetweenViewObjects(java.lang.String vlName, java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause) |
ViewObject |
LocalApplicationModuleImpl.findViewObjectUsingEntity(ViewObject[] vos, java.lang.String entityName, java.lang.String[] attrName) |
java.lang.Object[] |
LocalApplicationModuleImpl.transformExceptionParams(ViewObject[] vos, java.lang.String entityDefName, java.lang.String className, java.lang.Object[] params) |
Uses of ViewObject in oracle.jbo.server.ejb.facade |
Classes in oracle.jbo.server.ejb.facade that implement ViewObject | |
class |
CmrAccessorViewImpl |
class |
FinderViewImpl Abstract base class for Finder-Based View Object. |
Uses of ViewObject in oracle.jbo.uicli.binding |
Methods in oracle.jbo.uicli.binding that return ViewObject | |
ViewObject[] |
JUFormBinding.getOrderedVOUsageList() Returns an ordered list of ViewObject usages in this panel so that a JboException parameters can be transformed from Entity-layer names and exception parameters to ViewObject names and parameters. |
ViewObject |
JUAccessorIteratorDef.calcAccessorPath(DCIteratorBinding accBinding, java.lang.StringBuffer buf) Advanced internal. |
Uses of ViewObject in oracle.jbo.xsql |
Methods in oracle.jbo.xsql with parameters of type ViewObject | |
void |
ViewObject.setQueryParams(ViewObject vo, java.util.Dictionary request) |
|
Oracle ADF Model and Business Components API Reference 10.1.2 B14022-02 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright © 1997, 2005, Oracle. All rights reserved.