org.eclipse.ecf.remoteservice.client
Class RemoteCallParameter
java.lang.Object
org.eclipse.ecf.remoteservice.client.RemoteCallParameter
- All Implemented Interfaces:
- IRemoteCallParameter
public class RemoteCallParameter
- extends java.lang.Object
- implements IRemoteCallParameter
Implementation of IRemoteCallParameter
.
- Since:
- 4.0
Method Summary |
java.lang.String |
getName()
Get the name of the remote call parameter. |
java.lang.Object |
getValue()
Get the value associated with this remote call parameter. |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
RemoteCallParameter
public RemoteCallParameter(java.lang.String name,
java.lang.Object value)
RemoteCallParameter
public RemoteCallParameter(java.lang.String name)
getName
public java.lang.String getName()
- Description copied from interface:
IRemoteCallParameter
- Get the name of the remote call parameter. Should not be
null
.
- Specified by:
getName
in interface IRemoteCallParameter
- Returns:
- String name for the parameter. Should not be
null
.
getValue
public java.lang.Object getValue()
- Description copied from interface:
IRemoteCallParameter
- Get the value associated with this remote call parameter. May be
null
.
- Specified by:
getValue
in interface IRemoteCallParameter
- Returns:
- Object value associated with the name given above.
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object