1 26 27 package org.objectweb.openccm.ast.lib; 28 29 30 import org.objectweb.openccm.ast.api.PsdlTypeRef; 31 32 48 49 abstract public 50 class DeclarationWithPsdlTypeRefImpl 51 extends DeclarationImpl 52 implements org.objectweb.openccm.ast.api.DeclarationWithPsdlTypeRef 53 { 54 60 61 protected PsdlTypeRef type_; 62 63 69 75 protected 76 DeclarationWithPsdlTypeRefImpl(Repository rep, 77 ScopeImpl parent) 78 { 79 super(rep, parent); 81 82 type_ = null; 84 } 85 86 92 98 104 110 116 121 public void 122 setType(PsdlTypeRef type) 123 { 124 type_ = type; 125 } 126 127 132 public PsdlTypeRef 133 getType() 134 { 135 return type_; 136 } 137 } 138 | Popular Tags |