| java.lang.Object org.apache.ojb.broker.metadata.DescriptorBase org.apache.ojb.broker.metadata.ArgumentDescriptor
Method Summary | |
final public FieldDescriptor | getFieldRef() Retrieve the field descriptor that this argument is related to. | public boolean | getIsReturnedByProcedure() | final public int | getJdbcType() Retrieve the jdbc type for the field descriptor that is related
to this argument. | final public ProcedureDescriptor | getProcedureDescriptor() Retrieve the procedure descriptor that this object is related to. | public Object | getValue(Object objekt) | public void | saveValue(Object objekt, Object value) | public void | setValue() Sets up this object to represent a null value. | public void | setValue(String fieldRefName, boolean returnedByProcedure) Sets up this object to represent a value that is derived from a field
in the corresponding class-descriptor.
If the value of fieldRefName is blank or refers to an
invalid field reference, then the value of the corresponding argument
will be set to null. | public void | setValue(String constantValue) Sets up this object to represent an argument that will be set to a
constant value. | public String | toString() | public String | toXML() |
getIsReturnedByProcedure | public boolean getIsReturnedByProcedure()(Code) | | |
getJdbcType | final public int getJdbcType()(Code) | | Retrieve the jdbc type for the field descriptor that is related
to this argument.
|
getProcedureDescriptor | final public ProcedureDescriptor getProcedureDescriptor()(Code) | | Retrieve the procedure descriptor that this object is related to.
The current value |
setValue | public void setValue()(Code) | | Sets up this object to represent a null value.
|
setValue | public void setValue(String fieldRefName, boolean returnedByProcedure)(Code) | | Sets up this object to represent a value that is derived from a field
in the corresponding class-descriptor.
If the value of fieldRefName is blank or refers to an
invalid field reference, then the value of the corresponding argument
will be set to null. In this case,
ArgumentDescriptor.getIsReturnedByProcedure will be set to false , regardless of the value of the
returnedByProcedure argument.
Parameters: fieldRefName - the name of the field reference that provides thevalue of this argument. Parameters: returnedByProcedure - indicates that the value of the argumentis returned by the procedure that is invoked. |
setValue | public void setValue(String constantValue)(Code) | | Sets up this object to represent an argument that will be set to a
constant value.
Parameters: constantValue - the constant value. |
toString | public String toString()(Code) | | Provide a string representation of this object
a string representation of this object |
Fields inherited from org.apache.ojb.broker.metadata.DescriptorBase | final static long serialVersionUID(Code)(Java Doc)
|
|
|