1 26 27 package org.objectweb.openccm.ast.lib; 28 29 40 41 abstract public class ForwardScopePsdlImpl 42 extends ForwardScopeImpl 43 { 44 50 51 protected boolean isCreated_; 52 53 59 65 protected 66 ForwardScopePsdlImpl(Repository rep, 67 ScopeImpl parent) 68 { 69 super(rep, parent); 71 72 isCreated_ = false; 74 content_loaded_ = true; 75 } 76 77 83 89 94 protected org.omg.CORBA.Contained 95 getContained() 96 { 97 return null; 99 } 100 101 106 public org.objectweb.openccm.ast.api.DeclarationCategory 107 getCategory() 108 { 109 return org.objectweb.openccm.ast.api.DeclarationCategory.dc_psdl; 110 } 111 112 118 123 public boolean 124 isForwardCreated() 125 { 126 return isCreated_; 127 } 128 129 132 public void 133 createForward() 134 { 135 isCreated_ = true; 136 } 137 138 141 public void 142 completeForward() 143 { 144 } 145 146 152 158 164 } 170 | Popular Tags |