1 7 package org.ejtools.adwt.service; 8 9 import java.awt.event.WindowListener ; 10 import java.beans.beancontext.BeanContextContainerProxy ; 11 12 19 public interface FrameService extends BeanContextContainerProxy , MenuBarService.Listener 20 { 21 22 public final static int MDI = 0; 23 24 public final static int SDI = 1; 25 26 27 32 public void setTitle(String title); 33 34 35 40 public void addWindowListener(WindowListener l); 41 42 43 48 public void removeWindowListener(WindowListener l); 49 } 50 51 | Popular Tags |