1 26 27 package org.objectweb.util.browser.core.api; 28 29 35 36 public interface PanelFactory 37 extends ViewFactory { 38 39 43 static final String PANEL_FACTORY = PanelFactory.class.getName(); 44 45 50 public void setClassName(Class theClass); 51 52 56 public void setInheritTypePanel(boolean inheritTypePanel); 57 58 61 public boolean inheritTypePanel(); 62 63 67 public void addInheritPanelFactory(PanelFactory panelFactory); 68 69 } 70 | Popular Tags |