1 18 package org.apache.beehive.netui.compiler.grammar; 19 20 import org.apache.beehive.netui.compiler.AnnotationGrammar; 21 import org.apache.beehive.netui.compiler.Diagnostics; 22 import org.apache.beehive.netui.compiler.RuntimeVersionChecker; 23 import org.apache.beehive.netui.compiler.FlowControllerInfo; 24 import org.apache.beehive.netui.compiler.typesystem.env.AnnotationProcessorEnvironment; 25 26 public class BaseFlowControllerGrammar 27 extends AnnotationGrammar 28 { 29 private FlowControllerInfo _flowControllerInfo; 30 31 public BaseFlowControllerGrammar( AnnotationProcessorEnvironment env, Diagnostics diags, 32 String requiredRuntimeVersion, RuntimeVersionChecker runtimeVersionChecker, 33 FlowControllerInfo flowControllerInfo ) 34 { 35 super( env, diags, requiredRuntimeVersion, runtimeVersionChecker ); 36 _flowControllerInfo = flowControllerInfo; 37 } 38 39 FlowControllerInfo getFlowControllerInfo() 40 { 41 return _flowControllerInfo; 42 } 43 } 44 | Popular Tags |