1 26 27 package org.objectweb.openccm.ir3; 28 29 37 38 public class HomeDef_ref 39 extends IRObject_ref 40 { 41 47 53 56 public 57 HomeDef_ref(IRObject_impl owner) 58 { 59 super(owner); 61 } 62 63 66 public 67 HomeDef_ref(IRObject_impl owner, 68 HomeDef_impl object) 69 { 70 super(owner, object); 72 } 73 74 80 83 public HomeDef_impl 84 getImpl() 85 { 86 return (HomeDef_impl)(super.getBaseImpl()); 87 } 88 89 92 public org.omg.CORBA.ComponentIR.HomeDef 93 asHomeDef() 94 { 95 if (getTarget() == null) return null; 96 return getImpl().asHomeDef(); 97 } 98 99 102 public String 103 getId() 104 { 105 if (getTarget() == null) return ""; 106 return getImpl().id(); 107 } 108 } 109 | Popular Tags |