Inheritance diagram for VoidChoice::
Public Methods | |
VoidChoice (TypeCode tc) | |
String | name () |
Name of the type. More... | |
JComponent | inputRes () |
Dialog component where the user specifies the parameter. More... | |
JComponent | inputArg () |
Dialog component where the user specifies the result. More... | |
String | getResult (Any resAny) |
Request management: extract result from Any (and convert it to String). More... | |
void | setArgument (Any argsAny) throws InvalidChoiceException |
Request management: add argument to Any. More... | |
String | toString (java.lang.Object obj) |
Converts that object to string. More... | |
java.lang.Object | asObject (String inText) throws InvalidChoiceException |
Returns the object introduced as that text. More... |
|
00022 { 00023 super(tc); 00024 } |
|
Name of the type.
Reimplemented from CorbaObjectChoice.
00027 { 00028 return "void"; 00029 } |
|
Dialog component where the user specifies the parameter.
Reimplemented from CorbaObjectChoice.
00032 { 00033 return null; 00034 } |
|
Dialog component where the user specifies the result.
Reimplemented from CorbaObjectChoice.
00037 { 00038 return null; 00039 } |
|
Request management: extract result from Any (and convert it to String).
Reimplemented from CorbaObjectChoice.
00042 { 00043 return ""; 00044 } |
|
Request management: add argument to Any.
Reimplemented from CorbaObjectChoice.
00047 { 00048 } |
|
Converts that object to string. Useful method to implement getResult. Reimplemented from CorbaObjectChoice.
00051 { 00052 return ""; 00053 } |
|
Returns the object introduced as that text. Useful method to implement setArgument. Reimplemented from CorbaObjectChoice.
00056 { 00057 return null; 00058 } |