1 26 27 package org.objectweb.util.browser.core.api; 28 29 import org.objectweb.util.browser.api.Context; 30 import org.objectweb.util.browser.core.common.AdminCustomization; 31 32 38 public interface TreeConfiguration { 39 40 46 public void setNewBrowserProperty(String [] files); 47 48 52 public void setNewBrowserProperty(BrowserProperty properties); 53 54 60 public void addBrowserProperty(String [] file); 61 62 66 public BrowserProperty getBrowserProperty(); 67 68 74 public void setNewContextProperty(String file); 75 76 80 public void setNewContextProperty(ContextProperty properties); 81 82 86 public ContextProperty getContextProperty(); 87 88 92 public Context getInitialContext(); 93 94 99 public boolean containsEntry(String id); 100 101 105 public void setTargetPanel(ViewPanel targetPanel); 106 107 111 public void setStatusBar(StatusBar statusBar); 112 113 117 public void setPopupEnabled(boolean popupEnabled); 118 119 123 public boolean isPopupEnabled(); 124 125 129 public void setDragAndDropEnabled(boolean dndEnabled); 130 131 135 public boolean isDragAndDropEnabled(); 136 137 141 public void setMultipleRolesEnabled(boolean multipleRolesEnabled); 142 143 147 public boolean isMultipleRolesEnabled(); 148 149 153 public AdminCustomization getAdminCustomization(); 154 155 159 public void setJMenuBar(javax.swing.JMenuBar jMenuBar); 160 161 165 public void setJToolBar(javax.swing.JToolBar jToolBar); 166 167 } 168 | Popular Tags |