Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.75 KB | None | 0 0
  1.  
  2. import display.*;
  3.  
  4.  
  5. import javax.swing.*;
  6. import java.awt.*;
  7. import java.awt.event.*;
  8. import java.io.IOException;
  9. import java.lang.IllegalArgumentException;
  10. import java.util.ArrayList;
  11. import java.awt.image.BufferedImage;
  12. import javax.imageio.ImageIO;
  13. import java.io.File;
  14.  
  15. public class tst
  16. {
  17.  
  18.     //@param args
  19.  
  20.     public static void main(String[] args)
  21.     {
  22.         Color fond = new Color (0.0f, 0.0f, 0.0f);
  23.         GUIEpidemie a = new GUIEpidemie ("teste", 640, 480, fond);;
  24.     }
  25. }
  26.  
  27. class MyAffichable implements Affichable
  28. {
  29.     public java.awt.Shape getShape(){
  30.         return null;
  31.     }
  32.     public java.awt.Color getColor(){
  33.         return null;
  34.     }
  35.     public String getString(){
  36.         return null;
  37.     }
  38.     public java.awt.Point getStringPosition(){
  39.         return null;
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement