Ejemplo n.º 1
0
 @Override
 public 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 RemoteException {
   g.bitBlt(src, sw, sh, sx, sy, dst, dw, dh, dx, dy, w, h, rop);
 }
Ejemplo n.º 2
0
 @Override
 public Font getFont() throws RemoteException {
   return g.getFont();
 }
Ejemplo n.º 3
0
 @Override
 public void drawLine(int x0, int y0, int x1, int y1) throws RemoteException {
   g.drawLine(x0, y0, x1, y1);
 }
Ejemplo n.º 4
0
 @Override
 public void drawRegion(
     Image src, int sx, int sy, int w, int h, int transform, int x, int y, int anchor)
     throws RemoteException {
   g.drawRegion(src, sx, sy, w, h, transform, x, y, anchor);
 }
Ejemplo n.º 5
0
 @Override
 public void setStrokeStyle(int style) throws RemoteException {
   g.setStrokeStyle(style);
 }
Ejemplo n.º 6
0
 @Override
 public void drawChars(char[] data, int offset, int length, int x, int y, int anchor)
     throws RemoteException {
   g.drawChars(data, offset, length, x, y, anchor);
 }
Ejemplo n.º 7
0
 @Override
 public void drawSubstring(String str, int offset, int len, int x, int y, int anchor)
     throws RemoteException {
   g.drawSubstring(str, offset, len, x, y, anchor);
 }
Ejemplo n.º 8
0
 @Override
 public void drawString(String str, int x, int y, int anchor, boolean inverted)
     throws RemoteException {
   g.drawString(str, x, y, anchor, inverted);
 }
Ejemplo n.º 9
0
 @Override
 public void clear() throws RemoteException {
   g.clear();
 }
Ejemplo n.º 10
0
 @Override
 public void refresh() throws RemoteException {
   g.refresh();
 }
Ejemplo n.º 11
0
 @Override
 public void setColor(int red, int green, int blue) throws RemoteException {
   g.setColor(red, green, blue);
 }
Ejemplo n.º 12
0
 @Override
 public void setColor(int rgb) throws RemoteException {
   g.setColor(rgb);
 }
Ejemplo n.º 13
0
 @Override
 public int getTranslateY() throws RemoteException {
   return g.getTranslateY();
 }
Ejemplo n.º 14
0
 @Override
 public void translate(int x, int y) throws RemoteException {
   g.translate(x, y);
 }
Ejemplo n.º 15
0
 @Override
 public void setFont(Font f) throws RemoteException {
   g.setFont(f);
 }
Ejemplo n.º 16
0
 @Override
 public int setAutoRefreshPeriod(int period) throws RemoteException {
   return g.setAutoRefreshPeriod(period);
 }
Ejemplo n.º 17
0
 @Override
 public int getPixel(int x, int y) throws RemoteException {
   return g.getPixel(x, y);
 }
Ejemplo n.º 18
0
 @Override
 public int getWidth() throws RemoteException {
   return g.getWidth();
 }
Ejemplo n.º 19
0
 @Override
 public void drawString(String str, int x, int y, int anchor) throws RemoteException {
   g.drawString(str, x, y, anchor);
 }
Ejemplo n.º 20
0
 @Override
 public int getHeight() throws RemoteException {
   return g.getHeight();
 }
Ejemplo n.º 21
0
 @Override
 public void drawChar(char character, int x, int y, int anchor) throws RemoteException {
   g.drawChar(character, x, y, anchor);
 }
Ejemplo n.º 22
0
 @Override
 public void setPixel(int x, int y, int color) throws RemoteException {
   g.setPixel(x, y, color);
 }
Ejemplo n.º 23
0
 @Override
 public int getStrokeStyle() throws RemoteException {
   return g.getStrokeStyle();
 }
Ejemplo n.º 24
0
 @Override
 public byte[] getHWDisplay() throws RemoteException {
   return g.getHWDisplay();
 }
Ejemplo n.º 25
0
 @Override
 public void drawRegionRop(
     Image src, int sx, int sy, int w, int h, int x, int y, int anchor, int rop)
     throws RemoteException {
   g.drawRegionRop(src, sx, sy, w, h, x, y, anchor, rop);
 }
Ejemplo n.º 26
0
 @Override
 public void setContrast(int contrast) throws RemoteException {
   g.setContrast(contrast);
 }
Ejemplo n.º 27
0
 @Override
 public void drawImage(Image src, int x, int y, int anchor) throws RemoteException {
   g.drawImage(src, x, y, anchor);
 }
Ejemplo n.º 28
0
 @Override
 public void setAutoRefresh(boolean on) throws RemoteException {
   g.setAutoRefresh(on);
 }
Ejemplo n.º 29
0
 @Override
 public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
     throws RemoteException {
   g.drawArc(x, y, width, height, startAngle, arcAngle);
 }
Ejemplo n.º 30
0
 @Override
 public void copyArea(int sx, int sy, int w, int h, int x, int y, int anchor)
     throws RemoteException {
   g.copyArea(sx, sy, w, h, x, y, anchor);
 }