1 26 27 package org.objectweb.openccm.ir3; 28 29 37 38 public class IRObject_ref 39 extends org.objectweb.util.ref.lib.ReferenceBase 40 { 41 47 53 56 public 57 IRObject_ref(IRObject_impl owner) 58 { 59 super(owner); 61 } 62 63 66 public 67 IRObject_ref(IRObject_impl owner, 68 IRObject_impl target) 69 { 70 super(owner, target); 72 } 73 74 80 83 public IRObject_impl 84 getBaseImpl() 85 { 86 return (IRObject_impl)getTarget(); 88 } 89 90 93 public void 94 setDependency(IRObject_impl object) 95 { 96 setTarget(object); 97 } 98 99 102 public void 103 cutDependency() 104 { 105 cutIt(); 106 } 107 } 108 | Popular Tags |