void Graphics.clipRect(Graphics screen, int x1, int y1, int x2, int y2);
       screen: , ,   ..


void Graphics.drawImage(Graphics screen, Image image, int x, int y, int size);
   screen  imge        . size -  ,  100,     .


void Graphics.drawLine(Graphics screen, int x1, int y1, int x2, int y2);
   screen .   - 1, 1,  - 2, 2.


void Graphics.drawRect(Graphics screen, int x1, int y1, int x2, int y2);
   screen    .      1, 1, 2, 2   .


void Graphics.drawString(Graphics screen, String text, int x, int y, int size);
  text   screen      ,     ,    ,     . Size -  .


void Graphics.fillRect(Graphics screen, int x1, int y1, int x2, int y2);
   screen  . 1, 1 -    , 2, 2 -   .


Graphics screen Graphics.fromObject(Object obj);
  obj   screen.


int comp Graphics.getBlueComponent(Graphics screen);
       screen.   -   0  255.


int height Graphics.getClipHeight(Graphics screen);
      screen.


int width Graphics.getClipWidth(Graphics screen);
      screen.


int x Graphics.getClipX(Graphics screen);
          screen.


int y Graphics.getClipY(Graphics screen);
 y         screen.


int color_id Graphics.getColor(Graphics screen);
      screen.


Font font Graphics.getFont(Graphics screen);
    screen.


Int power Graphics.getGrayScale(Graphics screen);
     screen. - - .


int comp Graphics.getGreenComponent(Graphics screen);
       screen.   -   0  255.


int comp Graphics.getRedComponent(Graphics screen);
       screen.   -   0  255.


int style Graphics.getStrokeStyle(Graphics screen);
      screen.


int x Graphics.getTranslateX(Graphics screen);
       screen.


int y Graphics.getTranslateY(Graphics screen);
  y     screen.


void Graphics.setClip(Graphics screen, int x1, int y1, int x2, int y2);
    screen     : , ,   ..


void Graphics.setColor0(Graphics screen, int color_id);
      sreen     color_id.      colorsel,     setColor1.


void Graphics.setColor1(Graphics screen, int red, int green, int blue);
      screen  .   -       0  255.


void Graphics.setFont(Graphics screen, Font font);
     sreen   fnt.


void Graphics.setGrayScale(Graphics screen, int power);
     screen  power. - -  ,     .


void Graphics.setStrokeStyle(Graphics screen, int style);
     screen    (, ,   )     style.


Object obj Graphics.toObject(Graphics screen);
  screen   obj.


void Graphics.translate(Graphics screen, int x, int y);
    ,       screen.       ,     0,0.