1 26 27 package org.objectweb.ccm.IDL3; 28 29 37 38 public class TypeDeclImpl 39 extends DeclarationImpl 40 implements TypeRef 41 { 42 48 51 private org.omg.CORBA.IDLType type_; 52 53 56 private int kind_; 57 58 64 70 protected 71 TypeDeclImpl(Repository rep, 72 ScopeImpl parent, 73 org.omg.CORBA.IDLType type, 74 int kind) 75 { 76 super(rep, parent); 78 79 type_ = type; 81 kind_ = kind; 82 } 83 84 90 93 public void 94 create() 95 { 96 } 97 98 104 109 public org.omg.CORBA.IDLType 110 getIDLType() 111 { 112 return type_; 113 } 114 115 118 public int 119 getTypeKind() 120 { 121 return kind_; 122 } 123 124 130 135 protected org.omg.CORBA.Contained 136 getContained() 137 { 138 return null; 139 } 140 } 141 | Popular Tags |