Operationpublic class Operation extends Object An Operation contains a description of a Java method.
Operation objects were used in JDK1.1 version stubs and
skeletons. The Operation class is not needed for 1.2 style
stubs (stubs generated with rmic -v1.2 ); hence, this class
is deprecated. |
Fields Summary |
---|
private String | operation |
Constructors Summary |
---|
public Operation(String op)Creates a new Operation object.
operation = op;
|
Methods Summary |
---|
public java.lang.String | getOperation()Returns the name of the method.
return operation;
| public java.lang.String | toString()Returns the string representation of the operation.
return operation;
|
|