1 17 18 package org.objectweb.jac.aspects.gui; 19 20 public interface CustomizedView extends CompositeView { 21 26 CustomizedGUI getCustomizedGUI(); 27 28 34 void setMenuBar(MenuView menuBar,String position); 35 36 41 void setToolBar(MenuView toolBar); 42 43 49 void setStatusBar(StatusView view,String position); 50 51 56 void showStatus(String message); 57 58 64 PanelView getPanelView(); 65 66 void requestFocus(); 67 } 68 | Popular Tags |