1 26 package org.objectweb.util.explorer.core.panel.api; 27 28 import org.objectweb.util.explorer.core.code.api.CodeDescription; 29 import org.objectweb.util.explorer.core.common.api.Description; 30 31 39 public interface PanelDescription 40 extends Description 41 { 42 43 44 public static final String PANEL = "panel"; 45 public static final String TABLE = "table"; 46 public static final String COMPOSITE_PANEL = "composite"; 47 48 52 public String getPanelType(); 53 54 58 public CodeDescription getCodeDescription(); 59 60 64 public void setCodeDescription(CodeDescription codeDesc); 65 66 71 public void setInheritTypePanel(boolean inheritTypePanel); 72 73 77 public boolean inheritTypePanel(); 78 79 } 80 | Popular Tags |