| java.lang.Object org.netbeans.lib.ddl.impl.ProcedureArgument
ProcedureArgument | public class ProcedureArgument implements Argument(Code) | | Argument of procedure. Encapsulates name, type (in/out) and datatype.
|
getArgumentTypeName | public static String getArgumentTypeName(int type)(Code) | | |
getColumnProperties | public Map getColumnProperties(AbstractCommand cmd) throws DDLException(Code) | | Returns properties and it's values supported by this object.
argument.name Name of argument
argument.type Type of argument
argument.datatype Datatype of argument
Throws DDLException if object name is not specified.
|
getDataType | public int getDataType()(Code) | | Returns datatype of argument
|
getFormat | public String getFormat()(Code) | | Returns name of column
|
getType | public int getType()(Code) | | Describes type of argument: in, out, in/out or return value
of procedure. Particular values you can find in DatabaseMetadata;
|
getTypeName | public String getTypeName()(Code) | | Translates numeric representation of type into IN/OUT/INOUT strings.
|
setDataType | public void setDataType(int atype)(Code) | | Sets datatype of argument
|
setFormat | public void setFormat(String fmt)(Code) | | Sets name of column
|
setType | public void setType(int atype)(Code) | | Sets type of argument
|
|
|