1 26 package org.objectweb.util.explorer.core.common.api; 27 28 import org.objectweb.util.explorer.api.Context; 29 import org.objectweb.util.explorer.api.Entry; 30 31 39 public interface ContextContainer 40 extends Context 41 { 42 43 48 50 55 public Entry getEntry(Object name); 56 57 69 public void addEntry(Object name, Object value); 70 71 83 public void addEntry(Entry entry); 84 85 90 public void removeEntry(Object name); 91 92 95 public void clear(); 96 97 101 public int getSize(); 102 103 } | Popular Tags |