1 28 29 package org.objectweb.util.ref.api; 30 31 import org.objectweb.util.misc.api.Identifiable; 32 33 34 41 public interface Referencable 42 extends Identifiable 43 { 44 50 public int 51 getReferencedByCounter(); 52 53 58 public Referencable[] 59 getReferencedBy(); 60 61 68 public void 69 addReferencedBy(Referencable ref); 70 71 79 public void 80 removeReferencedBy(Referencable ref); 81 } 82 | Popular Tags |