Package lejos.remote.ev3
Interface RMITextLCD
-
- All Superinterfaces:
java.rmi.Remote
- All Known Implementing Classes:
RMIRemoteTextLCD
public interface RMITextLCD extends java.rmi.Remote
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbitBlt(byte[] src, int sw, int sh, int sx, int sy, byte[] dst, int dw, int dh, int dx, int dy, int w, int h, int rop)voidbitBlt(byte[] src, int sw, int sh, int sx, int sy, int dx, int dy, int w, int h, int rop)voidclear()voidclear(int y)voidclear(int x, int y, int n)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)byte[]getDisplay()FontgetFont()intgetHeight()byte[]getHWDisplay()intgetTextHeight()intgetTextWidth()intgetWidth()voidrefresh()voidscroll()voidsetAutoRefresh(boolean on)intsetAutoRefreshPeriod(int period)voidsetContrast(int contrast)
-
-
-
Method Detail
-
refresh
void refresh() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
clear
void clear() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
getWidth
int getWidth() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
getHeight
int getHeight() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
getDisplay
byte[] getDisplay() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
getHWDisplay
byte[] getHWDisplay() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
setContrast
void setContrast(int contrast) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
bitBlt
void bitBlt(byte[] src, int sw, int sh, int sx, int sy, int dx, int dy, int w, int h, int rop) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
bitBlt
void bitBlt(byte[] src, int sw, int sh, int sx, int sy, byte[] dst, int dw, int dh, int dx, int dy, int w, int h, int rop) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
setAutoRefresh
void setAutoRefresh(boolean on) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
setAutoRefreshPeriod
int setAutoRefreshPeriod(int period) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
drawChar
void drawChar(char c, int x, int y) 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
-
clear
void clear(int x, int y, int n) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
clear
void clear(int y) throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
scroll
void scroll() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
getFont
Font getFont() throws java.rmi.RemoteException
- Throws:
java.rmi.RemoteException
-
getTextWidth
int getTextWidth() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
getTextHeight
int getTextHeight() throws java.rmi.RemoteException- Throws:
java.rmi.RemoteException
-
-