Oracle Application Development Framework Model and Business Components Java API Reference 10.1.3.1.0
B28969-01


Uses of Interface
oracle.jbo.AttributeDef

Packages that use AttributeDef
oracle.adf.model.bc4j Contains a DataControl implementation for ADF Business Components. 
oracle.adf.model.binding Contains the abstract implementation of ADFm binding objects. 
oracle.adf.model.generic Contains a readonly DataControl implementation for JavaBeans. 
oracle.jbo Contains interfaces for client-side applications. 
oracle.jbo.uicli.binding Contains ADF Swing classes that handle interaction with BC4J objects for various ADF Swing bindings. 
oracle.jbo.uicli.controls Contains classes that implement ADF Swing controls  
oracle.jbo.uicli.jui Contains JClient classes that implement binding of Swing controls with BC4J ViewObject, Attributes or Rows. 

 

Uses of AttributeDef in oracle.adf.model.bc4j

 

Methods in oracle.adf.model.bc4j that return AttributeDef
 AttributeDef[] DCJboDataControl.getAttributeDefs(DCIteratorBinding iterBinding, java.lang.String[] attrNames)
           

 

Methods in oracle.adf.model.bc4j with parameters of type AttributeDef
 void DCJboDataControl.setAttributeInRow(DCIteratorBinding iterBind, Row row, AttributeDef ad, java.lang.Object value)
           
protected  void DCJboDataControl.resetAttributeExceptionInRow(DCIteratorBinding iter, Row row, AttributeDef def, oracle.jbo.AttrValException ave)
          Reset any deferred exception in the row for the given attribute, for which the AttrValException was raised.

 

Uses of AttributeDef in oracle.adf.model.binding

 

Methods in oracle.adf.model.binding that return AttributeDef
 AttributeDef[] DCIteratorBinding.getAttributeDefs()
          get all attribute defs for the RSI that this iterator binding is bound to.
 AttributeDef[] DCIteratorBinding.getAttributeDefs(java.lang.String[] attrNames)
          return attribute defs for attributes that are named in the given array.
 AttributeDef[] DCDataControl.getAttributeDefs(DCIteratorBinding iterBinding, java.lang.String[] attrNames)
          Return attribute definition for the given iterator binding and for the given set of attributes from the elements-definition of the mapped collection.
protected  AttributeDef[] DCDataControl.resolveAttributeDefs(StructureDef def, java.lang.String[] attrNames)
           

 

Methods in oracle.adf.model.binding with parameters of type AttributeDef
 boolean DCIteratorBinding.isAttributeSortable(AttributeDef ad)
          View layer bindings may consult this to find out if an attribute in this iteratorBinding is sortable or not.
 boolean DCDataControl.isAttributeSortable(DCIteratorBinding iter, AttributeDef ad)
           
 void DCDataControl.setAttributeInRow(DCIteratorBinding iterBind, Row row, AttributeDef ad, java.lang.Object value)
           
protected  void DCDataControl.resetAttributeExceptionInRow(DCIteratorBinding iter, Row row, AttributeDef def, oracle.jbo.AttrValException ave)
           
protected  void DCControlBinding.resetAttributeExceptionInRow(Row row, AttributeDef def, oracle.jbo.AttrValException ave)
           
 java.lang.Object DCBindingContainer.callBeforeSetAttribute(DCControlBinding ctrl, Row row, AttributeDef ad, java.lang.Object value)
          Invoked before any control binding performs a setAttribute call on a BC4J row.

 

Uses of AttributeDef in oracle.adf.model.generic

 

Classes in oracle.adf.model.generic that implement AttributeDef
 class AttributeDefImpl
          The AttributeDefHelper class implement the AttributeDef interface

 

Methods in oracle.adf.model.generic that return AttributeDef
 AttributeDef[] StructureDefImpl.getAttributeDefs()
          Gets the defined attributes.
 AttributeDef StructureDefImpl.findAttributeDef(java.lang.String name)
          Gets an attribute definition, given its name.
 AttributeDef StructureDefImpl.lookupAttributeDef(java.lang.String name)
          Gets an attribute definition, given its name.
 AttributeDef StructureDefImpl.getAttributeDef(int index)
          Gets an attribute definition, given its index.
 AttributeDef[] DCGenericDataControl.getAttributeDefs(DCIteratorBinding iterBinding, java.lang.String[] attrNames)
           

 

Methods in oracle.adf.model.generic with parameters of type AttributeDef
 boolean DCGenericDataControl.isAttributeSortable(DCIteratorBinding iter, AttributeDef ad)
          Subclasses need to implement sorting and turn this flag on if the given attribute is sortable for a given iterator.

 

Uses of AttributeDef in oracle.jbo

 

Methods in oracle.jbo that return AttributeDef
 AttributeDef[] StructureDef.getAttributeDefs()
          Gets the defined attributes.
 AttributeDef StructureDef.findAttributeDef(java.lang.String name)
          Gets an attribute definition, given its name.
 AttributeDef StructureDef.lookupAttributeDef(java.lang.String name)
          Gets an attribute definition, given its name.
 AttributeDef StructureDef.getAttributeDef(int index)
          Gets an attribute definition, given its index.

 

Constructors in oracle.jbo with parameters of type AttributeDef
Key(java.lang.String sString, AttributeDef[] keyAttrs)
           

 

Uses of AttributeDef in oracle.jbo.uicli.binding

 

Classes in oracle.jbo.uicli.binding that implement AttributeDef
 class JUCtrlParameterDef
           

 

Fields in oracle.jbo.uicli.binding declared as AttributeDef
protected  AttributeDef JUCtrlListBinding.mFirstDisplayAttr
           

 

Methods in oracle.jbo.uicli.binding that return AttributeDef
 AttributeDef[] JUCtrlValueBinding.getAttributeDefs()
          Return Attribute definitions of the attributes to which this binding is bound to.
 AttributeDef JUCtrlValueBinding.getAttributeDef(int index)
          Returns attribute definition at the given index.
 AttributeDef JUCtrlValueBinding.lookupAttributeDef(java.lang.String name)
           
 AttributeDef JUCtrlValueBinding.findAttributeDef(java.lang.String name)
           
 AttributeDef JUCtrlValueBinding.getAttributeDef()
          Primarily for spel support.
 AttributeDef[] JUCtrlParameterBinding.getAttributeDefs()
          Return this binding's definition in an AttributeDef[].
protected  AttributeDef[] JUCtrlListBinding.getDisplayAttributeDefs()
           

 

Methods in oracle.jbo.uicli.binding with parameters of type AttributeDef
 java.lang.Object JUCtrlValueBinding.getAttributeFromRow(Row row, AttributeDef def)
          Return formatted attribute value for the attribute with the given attribute definition and in the given row.
 void JUCtrlValueBinding.setAttributeInRow(Row row, AttributeDef def, java.lang.Object value)
           
 void JUCtrlValueBinding.setAttributeInRow(Row row, AttributeDef def, java.lang.Object value, boolean handleException)
           
protected  java.util.ArrayList JUCtrlValueBinding.getAttributes(Row row, AttributeDef[] attrs)
          Returns formatted attribute values for the given set of attribute defs.
protected  java.util.ArrayList JUCtrlValueBinding.getAttributeValues(Row row, AttributeDef[] attrs)
          Returns un-formatted (raw) attribute values.
protected  void JUCtrlValueBinding.setInputValueInRow(JUCtrlValueBinding binding, Row row, AttributeDef ad, java.lang.Object value, boolean handleException)
           
protected  java.lang.Object JUCtrlValueBinding.getInputValueInRow(JUCtrlValueBinding binding, Row row, AttributeDef ad)
           
protected  java.lang.Object JUCtrlRangeBinding.getInputValueInRow(JUCtrlValueBinding binding, Row row, AttributeDef ad)
           
protected  void JUCtrlRangeBinding.setInputValueInRow(JUCtrlValueBinding binding, Row row, AttributeDef ad, java.lang.Object value, boolean handleException)
           

 

Uses of AttributeDef in oracle.jbo.uicli.controls

 

Constructors in oracle.jbo.uicli.controls with parameters of type AttributeDef
JUMultiAttrListCellRenderer(AttributeDef[] defs)
           

 

Uses of AttributeDef in oracle.jbo.uicli.jui

 

Methods in oracle.jbo.uicli.jui that return AttributeDef
 AttributeDef[] JUButtonGroupBinding.getDisplayAttributeDefs()
           

 


Oracle Application Development Framework Model and Business Components Java API Reference 10.1.3.1.0
B28969-01


Copyright © 1997, 2006, Oracle. All rights reserved.