1 26 27 package org.objectweb.openccm.ir3; 28 29 import org.omg.CORBA.TypeCode ; 31 import org.omg.CORBA.IDLType ; 32 33 41 42 public class IDLType_ref 43 extends IRObject_ref 44 { 45 51 57 60 public 61 IDLType_ref(IRObject_impl owner) 62 { 63 super(owner); 65 } 66 67 70 public 71 IDLType_ref(IRObject_impl owner, 72 IRObject_impl object) 73 { 74 super(owner, object); 76 } 77 78 84 88 96 97 100 public TypeCode 101 recursiveType(java.util.List idSeq) 102 { 103 if (getTarget() == null) return null; 104 return getBaseImpl().recursiveType(idSeq); 105 } 106 107 110 public TypeCode 111 recursiveType() 112 { 113 if (getTarget() == null) return null; 114 return getBaseImpl().type(); 115 } 116 117 120 public IDLType 121 asIDLType() 122 { 123 if (getTarget() == null) return null; 124 return getBaseImpl().asIDLType(); 125 } 126 } 127 | Popular Tags |