Oracle Warehouse Builder Java API Reference
10g Release 1 (10.1)

B12155-01

oracle.owb.transformation
Interface Parameter

All Superinterfaces:
Attribute, Datatyped, Extensible, OWBNamedObject, PropertyOwner
All Known Subinterfaces:
ProcessActivityParameter

public interface Parameter
extends Attribute, Extensible

Parameter interface represents a parameter of a function or procedure. [More functionality description here!]


Method Summary
 java.lang.String getDefaultValue()
          Gets the default value of the parameter.
 Function getFunction()
          Gets the function this parameter belongs to.
 int getPosition()
          Gets the Position of this parameter.
 boolean isInput()
          Checks if the parameter is input.
 boolean isOutput()
          Checks if the parameter is output.
 void setDefaultValue(java.lang.String value)
          Set the default value for the parameter.
 void setInput(boolean flag)
          Set parameter to be input parameter.
 void setOutput(boolean flag)
          Set parameter to be output parameter.

 

Methods inherited from interface oracle.owb.foundation.OWBNamedObject
delete, getBusinessName, getClassDefinition, getComponent, getDescription, getName, getUOID, isDeletable, isEditable, isRenamable, setBusinessName, setDescription, setName

 

Methods inherited from interface oracle.owb.foundation.type.Datatyped
getDatatype, getLength, getPrecision, getScale, isPrecisionOmitted, setDatatype, setLength, setPrecision, setPrecisionOmitted, setScale

 

Methods inherited from interface oracle.owb.foundation.property.PropertyOwner
getDefaultPropertyValue, getLogicalPropertyKeys, getPhysicalPropertyKeys, getPropertyDomain, getPropertyKeys, getPropertyValue, getPropertyValueString, isLogicalProperty, isPhysicalProperty, isReadOnlyProperty, setPropertyValue, setPropertyValueByString

 

Method Detail

setInput

public void setInput(boolean flag)
Set parameter to be input parameter.
Parameters:
flag - a Boolean value of true or false.

isInput

public boolean isInput()
Checks if the parameter is input.
Returns:
Boolean value of true or false.

setOutput

public void setOutput(boolean flag)
Set parameter to be output parameter.
Parameters:
flag - a boolean value of true or false.

isOutput

public boolean isOutput()
Checks if the parameter is output.
Returns:
Boolean value of true or false.

setDefaultValue

public void setDefaultValue(java.lang.String value)
Set the default value for the parameter.
Parameters:
value - a String of Default Value of Parameter.

getDefaultValue

public java.lang.String getDefaultValue()
Gets the default value of the parameter.
Returns:
the default value of the parameter

getFunction

public Function getFunction()
Gets the function this parameter belongs to.
Returns:
Function object which this parameter belongs to.

getPosition

public int getPosition()
Gets the Position of this parameter.
Returns:
int value of the parameter position.

Oracle Warehouse Builder Java API Reference
10g Release 1 (10.1)

B12155-01

Copyright © 2003, Oracle. All Rights Reserved.