|
Oracle© Data Integrator Open Tools Java API Reference 11g Release 1 (11.1.1.3.0) E17061-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
public interface IOpenToolParameter
This interface must be implemented in order for an object to be used as a parameter to an IOpenTool. It specifies methods for setting and retrieving the name, code, current value and help text for a parameter, as well as whether it is mandatory or not.
| Method Summary | |
|---|---|
java.lang.String |
getCode()
Returns the code (the actual word used on a command line) that represents the parameter. |
java.lang.String |
getHelp()
Returns a string describing what the parameter does. |
java.lang.String |
getName()
Returns the user-friendly name of the parameter. |
java.lang.Object |
getValue()
Returns the value of this parameter previously set by setValue(). |
boolean |
isMandatory()
Returns a boolean that defines whether this parameter must be present for a command that calls the Open Tool to be valid. |
void |
setCode(java.lang.String pCode)
Sets the parameter code. |
void |
setHelp(java.lang.String pHelp)
Sets the help text which describes what the parameter does. |
void |
setMandatory(boolean pMandatory)
Sets the flag that specifies whether this parameter is mandatory or not. |
void |
setName(java.lang.String pName)
Sets the user-friendly name of the parameter. |
void |
setValue(java.lang.Object pValue)
Sets the current value of this parameter. |
| Method Detail |
|---|
java.lang.String getCode()
setCode(String)java.lang.String getHelp()
setHelp(String)java.lang.String getName()
setName(String)java.lang.Object getValue()
setValue(Object)boolean isMandatory()
setMandatory(boolean)void setCode(java.lang.String pCode)
pCode - - The new code for this parameter.getCode()void setHelp(java.lang.String pHelp)
pHelp - - A string containing the new help textgetHelp()void setMandatory(boolean pMandatory)
pMandatory - - The new value of the flag.isMandatory()void setName(java.lang.String pName)
pName - - A string containing the new user-friendly name.getName()void setValue(java.lang.Object pValue)
pValue - - The new current value of the parameter.getValue()
|
Oracle© Data Integrator Open Tools Java API Reference 11g Release 1 (11.1.1.3.0) E17061-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||