1 26 27 package org.objectweb.util.browser.core.api; 28 29 30 import org.objectweb.util.browser.api.Context; 31 32 38 public interface MenuFactoryConfiguration { 39 40 44 static final String MENU_FACTORY_CONFIGURATION = 45 MenuFactoryConfiguration.class.getName(); 46 47 51 public void setInheritTreeMenu(boolean inheritTreeMenu); 52 53 57 public void setInheritTypeMenu(boolean inheritTypeMenu); 58 59 64 public void setItems(Context items); 65 66 70 public void setChildItems(Context childItems); 71 72 76 public Context getItems(); 77 78 82 public Context getChildItems(); 83 84 88 public void setInheritTypeMenu(Context[] inheritMenu); 89 90 94 public void setInheritTreeMenu(Context[] inheritMenu); 95 96 100 public void setClassName(String className); 101 102 } 103 | Popular Tags |