Package weka.core
Interface PyroProxyObject
-
- All Superinterfaces:
weka.core.OptionHandler
- All Known Implementing Classes:
PyroProxy
public interface PyroProxyObject extends weka.core.OptionHandler
Interface for classes that make use of Pyro4.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
communicationTipText()
Returns the tip text for this property.AbstractCommunicationProcessor
getCommunication()
Returns the handler for the communication.adams.core.base.BaseHostname
getNameServer()
Returns the address of the Pyro nameserver.String
getRemoteObjectName()
Returns the name of the remote object to use.String
nameServerTipText()
Returns the tip text for this property.String
remoteObjectNameTipText()
Returns the tip text for this property.void
setCommunication(AbstractCommunicationProcessor value)
Sets the handler for the communication.void
setNameServer(adams.core.base.BaseHostname value)
Sets the address of the Pyro nameserver.void
setRemoteObjectName(String value)
Sets the name of the remote object to use.
-
-
-
Method Detail
-
setNameServer
void setNameServer(adams.core.base.BaseHostname value)
Sets the address of the Pyro nameserver.- Parameters:
value
- the address
-
getNameServer
adams.core.base.BaseHostname getNameServer()
Returns the address of the Pyro nameserver.- Returns:
- the address
-
nameServerTipText
String nameServerTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setRemoteObjectName
void setRemoteObjectName(String value)
Sets the name of the remote object to use.- Parameters:
value
- the name
-
getRemoteObjectName
String getRemoteObjectName()
Returns the name of the remote object to use.- Returns:
- the name
-
remoteObjectNameTipText
String remoteObjectNameTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setCommunication
void setCommunication(AbstractCommunicationProcessor value)
Sets the handler for the communication.- Parameters:
value
- the handler
-
getCommunication
AbstractCommunicationProcessor getCommunication()
Returns the handler for the communication.- Returns:
- the handler
-
communicationTipText
String communicationTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-