1 26 27 package org.objectweb.openccm.ast.lib; 28 29 39 40 abstract public class CidlScopeImpl 41 extends ScopeImpl 42 implements org.objectweb.openccm.ast.api.CidlScope 43 { 44 50 56 62 protected 63 CidlScopeImpl(Repository rep, 64 ScopeImpl parent) 65 { 66 super(rep, parent); 68 69 content_loaded_ = true; 71 } 72 73 79 80 86 92 95 public void 96 create() 97 { 98 if (the_parent_!=null) 99 the_parent_.addDecl(this); 100 } 101 102 107 public org.objectweb.openccm.ast.api.DeclarationCategory 108 getCategory() 109 { 110 return org.objectweb.openccm.ast.api.DeclarationCategory.dc_cidl; 111 } 112 113 119 } 120 | Popular Tags |