Package lejos.remote.ev3
Interface RMILCD
-
- All Superinterfaces:
java.rmi.Remote
- All Known Implementing Classes:
RMIRemoteLCD
public interface RMILCD extends java.rmi.Remote
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclearDisplay()voiddrawChar(char c, int x, int y)voiddrawInt(int i, int x, int y)voiddrawInt(int i, int places, int x, int y)voiddrawString(java.lang.String str, int x, int y)voiddrawString(java.lang.String str, int x, int y, boolean inverted)
-
-
-
Method Detail
-
drawChar
void drawChar(char c, int x, int y) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
clearDisplay
void clearDisplay() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
drawString
void drawString(java.lang.String str, int x, int y, boolean inverted) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
drawString
void drawString(java.lang.String str, int x, int y) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
drawInt
void drawInt(int i, int x, int y) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
drawInt
void drawInt(int i, int places, int x, int y) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
-