1 26 27 package org.objectweb.util.browser.core.naming; 28 29 import org.objectweb.util.browser.core.api.InitialContext; 30 import org.objectweb.util.browser.core.common.DynamicTree; 31 32 40 public class InitialContextContainer 41 extends DefaultContextContainer 42 implements InitialContext 43 { 44 45 51 52 protected DynamicTree tree_; 53 54 60 66 72 76 public void setDynamicTree(DynamicTree tree) { 77 tree_ = tree; 78 } 79 80 86 90 public void removeEntry(String id) { 91 super.removeEntry(id); 92 if(tree_!=null) 93 tree_.removeEntry(id); 94 } 95 96 } | Popular Tags |