1 17 18 package org.objectweb.jac.aspects.gui; 19 20 import java.util.Collection ; 21 22 25 26 public interface CompositeView extends View { 27 34 void addView(View component, Object extraInfos); 35 36 41 void addView(View component); 42 43 47 void addHorizontalStrut(int width); 48 49 53 void addVerticalStrut(int height); 54 55 58 View getView(Object id); 59 60 63 Collection getViews(); 64 65 74 boolean containsView(String viewType, Object [] parameters); 75 76 82 void removeView(View component, boolean validate); 83 84 89 void removeAllViews(boolean validate); 90 } 91 | Popular Tags |