1 26 27 package org.objectweb.util.explorer.api; 28 29 import java.io.Serializable ; 30 31 43 public interface Entry 44 extends Serializable  45 { 46 47 55 public void 56 setName(Object value); 57 58 66 public Object 67 getName(); 68 69 76 public void 77 setValue(Object value); 78 79 86 public Object 87 getValue(); 88 89 96 public void 97 setWrapper(Context value); 98 99 106 public Context 107 getWrapper(); 108 109 110 } | Popular Tags |