1 26 27 package org.objectweb.openccm.ast.lib; 28 29 30 import org.objectweb.openccm.ast.api.DeclarationKind; 31 32 33 import org.omg.CORBA.ExtInitializer; 34 35 47 48 public class InitializerImpl 49 extends OperationBaseImpl 50 implements org.objectweb.openccm.ast.api.Initializer 51 { 52 58 64 67 protected 68 InitializerImpl() 69 { 70 super(null, null); 72 73 } 75 76 82 88 93 protected org.omg.CORBA.Contained 94 getContained() 95 { 96 return null; 97 } 98 99 105 110 public ExtInitializer 111 getExtInitializer() 112 { 113 return new ExtInitializer(parameters_.getStructMemberSeq(), 114 exceptions_.getExceptionDefSeq(), 115 exceptions_.getExceptionDescriptionSeq(), 116 getName()); 117 } 118 119 125 131 136 public long 137 getDeclKind() 138 { 139 return DeclarationKind.dk_null; 140 } 141 142 148 } 154 | Popular Tags |