Advertisement
Guest User

Untitled

a guest
Aug 30th, 2014
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. //In super class
  2. protected Image image;
  3.  
  4. public BinaryGate(String imgUrl){
  5.     java.net.URL url = getClass().getResource(imgUrl);
  6.     image = new ImageIcon(url).getImage();
  7.     this.setSize(image.getWidth(null), image.getHeight(null));
  8. }
  9.  
  10. ///....in sub class...
  11. public ANDGate(){
  12.     super("images/AND.gif");
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement