1 20 21 22 27 28 package org.jdesktop.jdic.tray.internal; 29 30 31 import java.awt.Component ; 32 import java.awt.peer.ComponentPeer; 33 import java.awt.Graphics ; 34 35 36 public interface TrayAppletService { 37 public void add(Component a); 38 Graphics getGraphics(); 39 void setVisible(boolean b); 40 void reshape(int x, int y, int width, int height); 41 ComponentPeer getPeer(); 42 } 43 | Popular Tags |