catch up with branch development

Signed-off-by: Ralf Mollik <ramollik@compex-commerce.com>
diff --git a/org.eclipse.osbp.xtext.blip.tests/org.eclipse.osbp.xtext.blip.tests.launch b/org.eclipse.osbp.xtext.blip.tests/org.eclipse.osbp.xtext.blip.tests.launch
deleted file mode 100644
index 9ec6e27..0000000
--- a/org.eclipse.osbp.xtext.blip.tests/org.eclipse.osbp.xtext.blip.tests.launch
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<launchConfiguration type="org.eclipse.jdt.junit.launchconfig">
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry value="/org.eclipse.osbp.xtext.blip.tests"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="4"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.junit.CONTAINER" value="=org.eclipse.osbp.xtext.blip.tests"/>
-<booleanAttribute key="org.eclipse.jdt.junit.KEEPRUNNING_ATTR" value="false"/>
-<stringAttribute key="org.eclipse.jdt.junit.TEST_KIND" value="org.eclipse.jdt.junit.loader.junit4"/>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.m2e.launchconfig.classpathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="org.eclipse.osbp.xtext.blip.tests"/>
-<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
-</launchConfiguration>
diff --git a/org.eclipse.osbp.xtext.blip.tests/src-gen/org/eclipse/osbp/xtext/blip/BlipDSLInjectorProvider.java b/org.eclipse.osbp.xtext.blip.tests/src-gen/org/eclipse/osbp/xtext/blip/BlipDSLInjectorProvider.java
deleted file mode 100644
index cbfdb22..0000000
--- a/org.eclipse.osbp.xtext.blip.tests/src-gen/org/eclipse/osbp/xtext/blip/BlipDSLInjectorProvider.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/**
- *                                                                            
- *  Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany) 
- *                                                                            
- *  All rights reserved. This program and the accompanying materials           
- *  are made available under the terms of the Eclipse Public License v1.0       
- *  which accompanies this distribution, and is available at                  
- *  http://www.eclipse.org/legal/epl-v10.html                                 
- *                                                                            
- *  Contributors:                                                      
- * 	   Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
- * 
- */
- 
-package org.eclipse.osbp.xtext.blip;
-
-import org.eclipse.xtext.junit4.GlobalRegistries;
-import org.eclipse.xtext.junit4.GlobalRegistries.GlobalStateMemento;
-import org.eclipse.xtext.junit4.IInjectorProvider;
-import org.eclipse.xtext.junit4.IRegistryConfigurator;
-
-import com.google.inject.Injector;
-
-public class BlipDSLInjectorProvider implements IInjectorProvider, IRegistryConfigurator {
-	
-    protected GlobalStateMemento stateBeforeInjectorCreation;
-	protected GlobalStateMemento stateAfterInjectorCreation;
-	protected Injector injector;
-
-	static {
-		GlobalRegistries.initializeDefaults();
-	}
-
-	public Injector getInjector()
-	{
-		if (injector == null) {
-			stateBeforeInjectorCreation = GlobalRegistries.makeCopyOfGlobalState();
-			this.injector = internalCreateInjector();
-			stateAfterInjectorCreation = GlobalRegistries.makeCopyOfGlobalState();
-		}
-		return injector;
-	}
-	
-	protected Injector internalCreateInjector() {
-	    return new BlipDSLStandaloneSetup().createInjectorAndDoEMFRegistration();
-	}
-
-	public void restoreRegistry() {
-		stateBeforeInjectorCreation.restoreGlobalState();
-	}
-
-	public void setupRegistry() {
-		getInjector();
-		stateAfterInjectorCreation.restoreGlobalState();
-	}
-}
diff --git a/org.eclipse.osbp.xtext.blip.tests/src-gen/org/eclipse/osbp/xtext/blip/BlipDSLUiInjectorProvider.java b/org.eclipse.osbp.xtext.blip.tests/src-gen/org/eclipse/osbp/xtext/blip/BlipDSLUiInjectorProvider.java
deleted file mode 100644
index f810e14..0000000
--- a/org.eclipse.osbp.xtext.blip.tests/src-gen/org/eclipse/osbp/xtext/blip/BlipDSLUiInjectorProvider.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/**
- *                                                                            
- *  Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany) 
- *                                                                            
- *  All rights reserved. This program and the accompanying materials           
- *  are made available under the terms of the Eclipse Public License v1.0       
- *  which accompanies this distribution, and is available at                  
- *  http://www.eclipse.org/legal/epl-v10.html                                 
- *                                                                            
- *  Contributors:                                                      
- * 	   Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
- * 
- */
- 
-package org.eclipse.osbp.xtext.blip;
-
-import org.eclipse.xtext.junit4.IInjectorProvider;
-
-import com.google.inject.Injector;
-
-public class BlipDSLUiInjectorProvider implements IInjectorProvider {
-	
-	public Injector getInjector() {
-		return org.eclipse.osbp.xtext.blip.ui.internal.BlipDSLActivator.getInstance().getInjector("org.eclipse.osbp.xtext.blip.BlipDSL");
-	}
-	
-}
diff --git a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/BlipDSLParser.java b/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/BlipDSLParser.java
deleted file mode 100644
index 63256c8..0000000
--- a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/BlipDSLParser.java
+++ /dev/null
@@ -1,576 +0,0 @@
-/**
- *                                                                            
- *  Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany) 
- *                                                                            
- *  All rights reserved. This program and the accompanying materials           
- *  are made available under the terms of the Eclipse Public License v1.0       
- *  which accompanies this distribution, and is available at                  
- *  http://www.eclipse.org/legal/epl-v10.html                                 
- *                                                                            
- *  Contributors:                                                      
- * 	   Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
- * 
- */
- 
-package org.eclipse.osbp.xtext.blip.ui.contentassist.antlr;
-
-import java.util.Collection;
-import java.util.Map;
-import java.util.HashMap;
-
-import org.antlr.runtime.RecognitionException;
-import org.eclipse.xtext.AbstractElement;
-import org.eclipse.xtext.ui.editor.contentassist.antlr.AbstractContentAssistParser;
-import org.eclipse.xtext.ui.editor.contentassist.antlr.FollowElement;
-import org.eclipse.xtext.ui.editor.contentassist.antlr.internal.AbstractInternalContentAssistParser;
-
-import com.google.inject.Inject;
-
-import org.eclipse.osbp.xtext.blip.services.BlipDSLGrammarAccess;
-
-public class BlipDSLParser extends AbstractContentAssistParser {
-	
-	@Inject
-	private BlipDSLGrammarAccess grammarAccess;
-	
-	private Map<AbstractElement, String> nameMappings;
-	
-	@Override
-	protected org.eclipse.osbp.xtext.blip.ui.contentassist.antlr.internal.InternalBlipDSLParser createParser() {
-		org.eclipse.osbp.xtext.blip.ui.contentassist.antlr.internal.InternalBlipDSLParser result = new org.eclipse.osbp.xtext.blip.ui.contentassist.antlr.internal.InternalBlipDSLParser(null);
-		result.setGrammarAccess(grammarAccess);
-		return result;
-	}
-	
-	@Override
-	protected String getRuleName(AbstractElement element) {
-		if (nameMappings == null) {
-			nameMappings = new HashMap<AbstractElement, String>() {
-				private static final long serialVersionUID = 1L;
-				{
-					put(grammarAccess.getBlipItemAccess().getAlternatives(), "rule__BlipItem__Alternatives");
-					put(grammarAccess.getBlipServiceTaskAccess().getAlternatives_7(), "rule__BlipServiceTask__Alternatives_7");
-					put(grammarAccess.getBlipServiceTaskAccess().getAlternatives_9(), "rule__BlipServiceTask__Alternatives_9");
-					put(grammarAccess.getXAnnotationAccess().getAlternatives_3_1(), "rule__XAnnotation__Alternatives_3_1");
-					put(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getAlternatives(), "rule__XAnnotationElementValueOrCommaList__Alternatives");
-					put(grammarAccess.getXAnnotationElementValueAccess().getAlternatives(), "rule__XAnnotationElementValue__Alternatives");
-					put(grammarAccess.getXAnnotationOrExpressionAccess().getAlternatives(), "rule__XAnnotationOrExpression__Alternatives");
-					put(grammarAccess.getXAssignmentAccess().getAlternatives(), "rule__XAssignment__Alternatives");
-					put(grammarAccess.getOpMultiAssignAccess().getAlternatives(), "rule__OpMultiAssign__Alternatives");
-					put(grammarAccess.getOpEqualityAccess().getAlternatives(), "rule__OpEquality__Alternatives");
-					put(grammarAccess.getXRelationalExpressionAccess().getAlternatives_1(), "rule__XRelationalExpression__Alternatives_1");
-					put(grammarAccess.getOpCompareAccess().getAlternatives(), "rule__OpCompare__Alternatives");
-					put(grammarAccess.getOpOtherAccess().getAlternatives(), "rule__OpOther__Alternatives");
-					put(grammarAccess.getOpOtherAccess().getAlternatives_5_1(), "rule__OpOther__Alternatives_5_1");
-					put(grammarAccess.getOpOtherAccess().getAlternatives_6_1(), "rule__OpOther__Alternatives_6_1");
-					put(grammarAccess.getOpAddAccess().getAlternatives(), "rule__OpAdd__Alternatives");
-					put(grammarAccess.getOpMultiAccess().getAlternatives(), "rule__OpMulti__Alternatives");
-					put(grammarAccess.getXUnaryOperationAccess().getAlternatives(), "rule__XUnaryOperation__Alternatives");
-					put(grammarAccess.getOpUnaryAccess().getAlternatives(), "rule__OpUnary__Alternatives");
-					put(grammarAccess.getOpPostfixAccess().getAlternatives(), "rule__OpPostfix__Alternatives");
-					put(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1(), "rule__XMemberFeatureCall__Alternatives_1");
-					put(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_0_0_0_1(), "rule__XMemberFeatureCall__Alternatives_1_0_0_0_1");
-					put(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_0_0_1(), "rule__XMemberFeatureCall__Alternatives_1_1_0_0_1");
-					put(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_3_1(), "rule__XMemberFeatureCall__Alternatives_1_1_3_1");
-					put(grammarAccess.getXPrimaryExpressionAccess().getAlternatives(), "rule__XPrimaryExpression__Alternatives");
-					put(grammarAccess.getXLiteralAccess().getAlternatives(), "rule__XLiteral__Alternatives");
-					put(grammarAccess.getXCollectionLiteralAccess().getAlternatives(), "rule__XCollectionLiteral__Alternatives");
-					put(grammarAccess.getXSwitchExpressionAccess().getAlternatives_2(), "rule__XSwitchExpression__Alternatives_2");
-					put(grammarAccess.getXCasePartAccess().getAlternatives_3(), "rule__XCasePart__Alternatives_3");
-					put(grammarAccess.getXExpressionOrVarDeclarationAccess().getAlternatives(), "rule__XExpressionOrVarDeclaration__Alternatives");
-					put(grammarAccess.getXVariableDeclarationAccess().getAlternatives_1(), "rule__XVariableDeclaration__Alternatives_1");
-					put(grammarAccess.getXVariableDeclarationAccess().getAlternatives_2(), "rule__XVariableDeclaration__Alternatives_2");
-					put(grammarAccess.getXFeatureCallAccess().getAlternatives_3_1(), "rule__XFeatureCall__Alternatives_3_1");
-					put(grammarAccess.getFeatureCallIDAccess().getAlternatives(), "rule__FeatureCallID__Alternatives");
-					put(grammarAccess.getIdOrSuperAccess().getAlternatives(), "rule__IdOrSuper__Alternatives");
-					put(grammarAccess.getXConstructorCallAccess().getAlternatives_4_1(), "rule__XConstructorCall__Alternatives_4_1");
-					put(grammarAccess.getXBooleanLiteralAccess().getAlternatives_1(), "rule__XBooleanLiteral__Alternatives_1");
-					put(grammarAccess.getXTryCatchFinallyExpressionAccess().getAlternatives_3(), "rule__XTryCatchFinallyExpression__Alternatives_3");
-					put(grammarAccess.getNumberAccess().getAlternatives(), "rule__Number__Alternatives");
-					put(grammarAccess.getNumberAccess().getAlternatives_1_0(), "rule__Number__Alternatives_1_0");
-					put(grammarAccess.getNumberAccess().getAlternatives_1_1_1(), "rule__Number__Alternatives_1_1_1");
-					put(grammarAccess.getJvmTypeReferenceAccess().getAlternatives(), "rule__JvmTypeReference__Alternatives");
-					put(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives(), "rule__JvmArgumentTypeReference__Alternatives");
-					put(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2(), "rule__JvmWildcardTypeReference__Alternatives_2");
-					put(grammarAccess.getServiceExecutionModeEnumAccess().getAlternatives(), "rule__ServiceExecutionModeEnum__Alternatives");
-					put(grammarAccess.getEndEventHandlingEnumAccess().getAlternatives(), "rule__EndEventHandlingEnum__Alternatives");
-					put(grammarAccess.getIconsEnumAccess().getAlternatives(), "rule__IconsEnum__Alternatives");
-					put(grammarAccess.getBlipPackageAccess().getGroup(), "rule__BlipPackage__Group__0");
-					put(grammarAccess.getBlipPackageAccess().getGroup_3(), "rule__BlipPackage__Group_3__0");
-					put(grammarAccess.getBlipAccess().getGroup(), "rule__Blip__Group__0");
-					put(grammarAccess.getBlipAccess().getGroup_3_0(), "rule__Blip__Group_3_0__0");
-					put(grammarAccess.getBlipAccess().getGroup_3_1(), "rule__Blip__Group_3_1__0");
-					put(grammarAccess.getBlipAccess().getGroup_3_3(), "rule__Blip__Group_3_3__0");
-					put(grammarAccess.getBlipAccess().getGroup_4(), "rule__Blip__Group_4__0");
-					put(grammarAccess.getBlipAccess().getGroup_5(), "rule__Blip__Group_5__0");
-					put(grammarAccess.getBlipAccess().getGroup_8(), "rule__Blip__Group_8__0");
-					put(grammarAccess.getBlipWorkloadAccess().getGroup(), "rule__BlipWorkload__Group__0");
-					put(grammarAccess.getBlipWorkloadAccess().getGroup_3(), "rule__BlipWorkload__Group_3__0");
-					put(grammarAccess.getBlipFilterAccess().getGroup(), "rule__BlipFilter__Group__0");
-					put(grammarAccess.getBlipDtoAccess().getGroup(), "rule__BlipDto__Group__0");
-					put(grammarAccess.getBlipStartEventAccess().getGroup(), "rule__BlipStartEvent__Group__0");
-					put(grammarAccess.getBlipEndEventAccess().getGroup(), "rule__BlipEndEvent__Group__0");
-					put(grammarAccess.getBlipUserTaskAccess().getGroup(), "rule__BlipUserTask__Group__0");
-					put(grammarAccess.getBlipUserTaskAccess().getGroup_5(), "rule__BlipUserTask__Group_5__0");
-					put(grammarAccess.getBlipUserTaskAccess().getGroup_6(), "rule__BlipUserTask__Group_6__0");
-					put(grammarAccess.getBlipUserTaskAccess().getGroup_7(), "rule__BlipUserTask__Group_7__0");
-					put(grammarAccess.getBlipCallActivityAccess().getGroup(), "rule__BlipCallActivity__Group__0");
-					put(grammarAccess.getBlipCallActivityAccess().getGroup_5(), "rule__BlipCallActivity__Group_5__0");
-					put(grammarAccess.getBlipCallActivityAccess().getGroup_6(), "rule__BlipCallActivity__Group_6__0");
-					put(grammarAccess.getBlipScriptTaskAccess().getGroup(), "rule__BlipScriptTask__Group__0");
-					put(grammarAccess.getBlipPersistTaskAccess().getGroup(), "rule__BlipPersistTask__Group__0");
-					put(grammarAccess.getBlipServiceTaskAccess().getGroup(), "rule__BlipServiceTask__Group__0");
-					put(grammarAccess.getBlipServiceTaskAccess().getGroup_5(), "rule__BlipServiceTask__Group_5__0");
-					put(grammarAccess.getBlipServiceTaskAccess().getGroup_7_0(), "rule__BlipServiceTask__Group_7_0__0");
-					put(grammarAccess.getBlipServiceTaskAccess().getGroup_9_0(), "rule__BlipServiceTask__Group_9_0__0");
-					put(grammarAccess.getBlipServiceTaskAccess().getGroup_9_1(), "rule__BlipServiceTask__Group_9_1__0");
-					put(grammarAccess.getBlipServiceTaskAccess().getGroup_10(), "rule__BlipServiceTask__Group_10__0");
-					put(grammarAccess.getBlipOutGoingAccess().getGroup(), "rule__BlipOutGoing__Group__0");
-					put(grammarAccess.getBlipOutGoingDefaultAccess().getGroup(), "rule__BlipOutGoingDefault__Group__0");
-					put(grammarAccess.getBlipExclusiveSplitGatewayAccess().getGroup(), "rule__BlipExclusiveSplitGateway__Group__0");
-					put(grammarAccess.getBlipInclusiveSplitGatewayAccess().getGroup(), "rule__BlipInclusiveSplitGateway__Group__0");
-					put(grammarAccess.getBlipDtoPathAccess().getGroup(), "rule__BlipDtoPath__Group__0");
-					put(grammarAccess.getQualifiedDtoPathAccess().getGroup(), "rule__QualifiedDtoPath__Group__0");
-					put(grammarAccess.getQualifiedDtoPathAccess().getGroup_1(), "rule__QualifiedDtoPath__Group_1__0");
-					put(grammarAccess.getQualifiedNameAccess().getGroup(), "rule__QualifiedName__Group__0");
-					put(grammarAccess.getQualifiedNameAccess().getGroup_1(), "rule__QualifiedName__Group_1__0");
-					put(grammarAccess.getXImportDeclarationAccess().getGroup(), "rule__XImportDeclaration__Group__0");
-					put(grammarAccess.getXAnnotationAccess().getGroup(), "rule__XAnnotation__Group__0");
-					put(grammarAccess.getXAnnotationAccess().getGroup_3(), "rule__XAnnotation__Group_3__0");
-					put(grammarAccess.getXAnnotationAccess().getGroup_3_1_0(), "rule__XAnnotation__Group_3_1_0__0");
-					put(grammarAccess.getXAnnotationAccess().getGroup_3_1_0_1(), "rule__XAnnotation__Group_3_1_0_1__0");
-					put(grammarAccess.getXAnnotationElementValuePairAccess().getGroup(), "rule__XAnnotationElementValuePair__Group__0");
-					put(grammarAccess.getXAnnotationElementValuePairAccess().getGroup_0(), "rule__XAnnotationElementValuePair__Group_0__0");
-					put(grammarAccess.getXAnnotationElementValuePairAccess().getGroup_0_0(), "rule__XAnnotationElementValuePair__Group_0_0__0");
-					put(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_0(), "rule__XAnnotationElementValueOrCommaList__Group_0__0");
-					put(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_0_0(), "rule__XAnnotationElementValueOrCommaList__Group_0_0__0");
-					put(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_0_0_0(), "rule__XAnnotationElementValueOrCommaList__Group_0_0_0__0");
-					put(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_0_1(), "rule__XAnnotationElementValueOrCommaList__Group_0_1__0");
-					put(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_0_1_1(), "rule__XAnnotationElementValueOrCommaList__Group_0_1_1__0");
-					put(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_1(), "rule__XAnnotationElementValueOrCommaList__Group_1__0");
-					put(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_1_1(), "rule__XAnnotationElementValueOrCommaList__Group_1_1__0");
-					put(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_1_1_1(), "rule__XAnnotationElementValueOrCommaList__Group_1_1_1__0");
-					put(grammarAccess.getXAnnotationElementValueAccess().getGroup_0(), "rule__XAnnotationElementValue__Group_0__0");
-					put(grammarAccess.getXAnnotationElementValueAccess().getGroup_0_0(), "rule__XAnnotationElementValue__Group_0_0__0");
-					put(grammarAccess.getXAnnotationElementValueAccess().getGroup_0_0_0(), "rule__XAnnotationElementValue__Group_0_0_0__0");
-					put(grammarAccess.getXAnnotationElementValueAccess().getGroup_0_1(), "rule__XAnnotationElementValue__Group_0_1__0");
-					put(grammarAccess.getXAnnotationElementValueAccess().getGroup_0_1_1(), "rule__XAnnotationElementValue__Group_0_1_1__0");
-					put(grammarAccess.getXAssignmentAccess().getGroup_0(), "rule__XAssignment__Group_0__0");
-					put(grammarAccess.getXAssignmentAccess().getGroup_1(), "rule__XAssignment__Group_1__0");
-					put(grammarAccess.getXAssignmentAccess().getGroup_1_1(), "rule__XAssignment__Group_1_1__0");
-					put(grammarAccess.getXAssignmentAccess().getGroup_1_1_0(), "rule__XAssignment__Group_1_1_0__0");
-					put(grammarAccess.getXAssignmentAccess().getGroup_1_1_0_0(), "rule__XAssignment__Group_1_1_0_0__0");
-					put(grammarAccess.getOpMultiAssignAccess().getGroup_5(), "rule__OpMultiAssign__Group_5__0");
-					put(grammarAccess.getOpMultiAssignAccess().getGroup_6(), "rule__OpMultiAssign__Group_6__0");
-					put(grammarAccess.getXOrExpressionAccess().getGroup(), "rule__XOrExpression__Group__0");
-					put(grammarAccess.getXOrExpressionAccess().getGroup_1(), "rule__XOrExpression__Group_1__0");
-					put(grammarAccess.getXOrExpressionAccess().getGroup_1_0(), "rule__XOrExpression__Group_1_0__0");
-					put(grammarAccess.getXOrExpressionAccess().getGroup_1_0_0(), "rule__XOrExpression__Group_1_0_0__0");
-					put(grammarAccess.getXAndExpressionAccess().getGroup(), "rule__XAndExpression__Group__0");
-					put(grammarAccess.getXAndExpressionAccess().getGroup_1(), "rule__XAndExpression__Group_1__0");
-					put(grammarAccess.getXAndExpressionAccess().getGroup_1_0(), "rule__XAndExpression__Group_1_0__0");
-					put(grammarAccess.getXAndExpressionAccess().getGroup_1_0_0(), "rule__XAndExpression__Group_1_0_0__0");
-					put(grammarAccess.getXEqualityExpressionAccess().getGroup(), "rule__XEqualityExpression__Group__0");
-					put(grammarAccess.getXEqualityExpressionAccess().getGroup_1(), "rule__XEqualityExpression__Group_1__0");
-					put(grammarAccess.getXEqualityExpressionAccess().getGroup_1_0(), "rule__XEqualityExpression__Group_1_0__0");
-					put(grammarAccess.getXEqualityExpressionAccess().getGroup_1_0_0(), "rule__XEqualityExpression__Group_1_0_0__0");
-					put(grammarAccess.getXRelationalExpressionAccess().getGroup(), "rule__XRelationalExpression__Group__0");
-					put(grammarAccess.getXRelationalExpressionAccess().getGroup_1_0(), "rule__XRelationalExpression__Group_1_0__0");
-					put(grammarAccess.getXRelationalExpressionAccess().getGroup_1_0_0(), "rule__XRelationalExpression__Group_1_0_0__0");
-					put(grammarAccess.getXRelationalExpressionAccess().getGroup_1_0_0_0(), "rule__XRelationalExpression__Group_1_0_0_0__0");
-					put(grammarAccess.getXRelationalExpressionAccess().getGroup_1_1(), "rule__XRelationalExpression__Group_1_1__0");
-					put(grammarAccess.getXRelationalExpressionAccess().getGroup_1_1_0(), "rule__XRelationalExpression__Group_1_1_0__0");
-					put(grammarAccess.getXRelationalExpressionAccess().getGroup_1_1_0_0(), "rule__XRelationalExpression__Group_1_1_0_0__0");
-					put(grammarAccess.getOpCompareAccess().getGroup_1(), "rule__OpCompare__Group_1__0");
-					put(grammarAccess.getXOtherOperatorExpressionAccess().getGroup(), "rule__XOtherOperatorExpression__Group__0");
-					put(grammarAccess.getXOtherOperatorExpressionAccess().getGroup_1(), "rule__XOtherOperatorExpression__Group_1__0");
-					put(grammarAccess.getXOtherOperatorExpressionAccess().getGroup_1_0(), "rule__XOtherOperatorExpression__Group_1_0__0");
-					put(grammarAccess.getXOtherOperatorExpressionAccess().getGroup_1_0_0(), "rule__XOtherOperatorExpression__Group_1_0_0__0");
-					put(grammarAccess.getOpOtherAccess().getGroup_2(), "rule__OpOther__Group_2__0");
-					put(grammarAccess.getOpOtherAccess().getGroup_5(), "rule__OpOther__Group_5__0");
-					put(grammarAccess.getOpOtherAccess().getGroup_5_1_0(), "rule__OpOther__Group_5_1_0__0");
-					put(grammarAccess.getOpOtherAccess().getGroup_5_1_0_0(), "rule__OpOther__Group_5_1_0_0__0");
-					put(grammarAccess.getOpOtherAccess().getGroup_6(), "rule__OpOther__Group_6__0");
-					put(grammarAccess.getOpOtherAccess().getGroup_6_1_0(), "rule__OpOther__Group_6_1_0__0");
-					put(grammarAccess.getOpOtherAccess().getGroup_6_1_0_0(), "rule__OpOther__Group_6_1_0_0__0");
-					put(grammarAccess.getXAdditiveExpressionAccess().getGroup(), "rule__XAdditiveExpression__Group__0");
-					put(grammarAccess.getXAdditiveExpressionAccess().getGroup_1(), "rule__XAdditiveExpression__Group_1__0");
-					put(grammarAccess.getXAdditiveExpressionAccess().getGroup_1_0(), "rule__XAdditiveExpression__Group_1_0__0");
-					put(grammarAccess.getXAdditiveExpressionAccess().getGroup_1_0_0(), "rule__XAdditiveExpression__Group_1_0_0__0");
-					put(grammarAccess.getXMultiplicativeExpressionAccess().getGroup(), "rule__XMultiplicativeExpression__Group__0");
-					put(grammarAccess.getXMultiplicativeExpressionAccess().getGroup_1(), "rule__XMultiplicativeExpression__Group_1__0");
-					put(grammarAccess.getXMultiplicativeExpressionAccess().getGroup_1_0(), "rule__XMultiplicativeExpression__Group_1_0__0");
-					put(grammarAccess.getXMultiplicativeExpressionAccess().getGroup_1_0_0(), "rule__XMultiplicativeExpression__Group_1_0_0__0");
-					put(grammarAccess.getXUnaryOperationAccess().getGroup_0(), "rule__XUnaryOperation__Group_0__0");
-					put(grammarAccess.getXCastedExpressionAccess().getGroup(), "rule__XCastedExpression__Group__0");
-					put(grammarAccess.getXCastedExpressionAccess().getGroup_1(), "rule__XCastedExpression__Group_1__0");
-					put(grammarAccess.getXCastedExpressionAccess().getGroup_1_0(), "rule__XCastedExpression__Group_1_0__0");
-					put(grammarAccess.getXCastedExpressionAccess().getGroup_1_0_0(), "rule__XCastedExpression__Group_1_0_0__0");
-					put(grammarAccess.getXPostfixOperationAccess().getGroup(), "rule__XPostfixOperation__Group__0");
-					put(grammarAccess.getXPostfixOperationAccess().getGroup_1(), "rule__XPostfixOperation__Group_1__0");
-					put(grammarAccess.getXPostfixOperationAccess().getGroup_1_0(), "rule__XPostfixOperation__Group_1_0__0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getGroup(), "rule__XMemberFeatureCall__Group__0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_0(), "rule__XMemberFeatureCall__Group_1_0__0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_0_0(), "rule__XMemberFeatureCall__Group_1_0_0__0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_0_0_0(), "rule__XMemberFeatureCall__Group_1_0_0_0__0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1(), "rule__XMemberFeatureCall__Group_1_1__0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1_0(), "rule__XMemberFeatureCall__Group_1_1_0__0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1_0_0(), "rule__XMemberFeatureCall__Group_1_1_0_0__0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1_1(), "rule__XMemberFeatureCall__Group_1_1_1__0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1_1_2(), "rule__XMemberFeatureCall__Group_1_1_1_2__0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1_3(), "rule__XMemberFeatureCall__Group_1_1_3__0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1_3_1_1(), "rule__XMemberFeatureCall__Group_1_1_3_1_1__0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1_3_1_1_1(), "rule__XMemberFeatureCall__Group_1_1_3_1_1_1__0");
-					put(grammarAccess.getXSetLiteralAccess().getGroup(), "rule__XSetLiteral__Group__0");
-					put(grammarAccess.getXSetLiteralAccess().getGroup_3(), "rule__XSetLiteral__Group_3__0");
-					put(grammarAccess.getXSetLiteralAccess().getGroup_3_1(), "rule__XSetLiteral__Group_3_1__0");
-					put(grammarAccess.getXListLiteralAccess().getGroup(), "rule__XListLiteral__Group__0");
-					put(grammarAccess.getXListLiteralAccess().getGroup_3(), "rule__XListLiteral__Group_3__0");
-					put(grammarAccess.getXListLiteralAccess().getGroup_3_1(), "rule__XListLiteral__Group_3_1__0");
-					put(grammarAccess.getXClosureAccess().getGroup(), "rule__XClosure__Group__0");
-					put(grammarAccess.getXClosureAccess().getGroup_0(), "rule__XClosure__Group_0__0");
-					put(grammarAccess.getXClosureAccess().getGroup_0_0(), "rule__XClosure__Group_0_0__0");
-					put(grammarAccess.getXClosureAccess().getGroup_1(), "rule__XClosure__Group_1__0");
-					put(grammarAccess.getXClosureAccess().getGroup_1_0(), "rule__XClosure__Group_1_0__0");
-					put(grammarAccess.getXClosureAccess().getGroup_1_0_0(), "rule__XClosure__Group_1_0_0__0");
-					put(grammarAccess.getXClosureAccess().getGroup_1_0_0_1(), "rule__XClosure__Group_1_0_0_1__0");
-					put(grammarAccess.getXExpressionInClosureAccess().getGroup(), "rule__XExpressionInClosure__Group__0");
-					put(grammarAccess.getXExpressionInClosureAccess().getGroup_1(), "rule__XExpressionInClosure__Group_1__0");
-					put(grammarAccess.getXShortClosureAccess().getGroup(), "rule__XShortClosure__Group__0");
-					put(grammarAccess.getXShortClosureAccess().getGroup_0(), "rule__XShortClosure__Group_0__0");
-					put(grammarAccess.getXShortClosureAccess().getGroup_0_0(), "rule__XShortClosure__Group_0_0__0");
-					put(grammarAccess.getXShortClosureAccess().getGroup_0_0_1(), "rule__XShortClosure__Group_0_0_1__0");
-					put(grammarAccess.getXShortClosureAccess().getGroup_0_0_1_1(), "rule__XShortClosure__Group_0_0_1_1__0");
-					put(grammarAccess.getXParenthesizedExpressionAccess().getGroup(), "rule__XParenthesizedExpression__Group__0");
-					put(grammarAccess.getXIfExpressionAccess().getGroup(), "rule__XIfExpression__Group__0");
-					put(grammarAccess.getXIfExpressionAccess().getGroup_6(), "rule__XIfExpression__Group_6__0");
-					put(grammarAccess.getXSwitchExpressionAccess().getGroup(), "rule__XSwitchExpression__Group__0");
-					put(grammarAccess.getXSwitchExpressionAccess().getGroup_2_0(), "rule__XSwitchExpression__Group_2_0__0");
-					put(grammarAccess.getXSwitchExpressionAccess().getGroup_2_0_0(), "rule__XSwitchExpression__Group_2_0_0__0");
-					put(grammarAccess.getXSwitchExpressionAccess().getGroup_2_0_0_0(), "rule__XSwitchExpression__Group_2_0_0_0__0");
-					put(grammarAccess.getXSwitchExpressionAccess().getGroup_2_1(), "rule__XSwitchExpression__Group_2_1__0");
-					put(grammarAccess.getXSwitchExpressionAccess().getGroup_2_1_0(), "rule__XSwitchExpression__Group_2_1_0__0");
-					put(grammarAccess.getXSwitchExpressionAccess().getGroup_2_1_0_0(), "rule__XSwitchExpression__Group_2_1_0_0__0");
-					put(grammarAccess.getXSwitchExpressionAccess().getGroup_5(), "rule__XSwitchExpression__Group_5__0");
-					put(grammarAccess.getXCasePartAccess().getGroup(), "rule__XCasePart__Group__0");
-					put(grammarAccess.getXCasePartAccess().getGroup_2(), "rule__XCasePart__Group_2__0");
-					put(grammarAccess.getXCasePartAccess().getGroup_3_0(), "rule__XCasePart__Group_3_0__0");
-					put(grammarAccess.getXForLoopExpressionAccess().getGroup(), "rule__XForLoopExpression__Group__0");
-					put(grammarAccess.getXForLoopExpressionAccess().getGroup_0(), "rule__XForLoopExpression__Group_0__0");
-					put(grammarAccess.getXForLoopExpressionAccess().getGroup_0_0(), "rule__XForLoopExpression__Group_0_0__0");
-					put(grammarAccess.getXBasicForLoopExpressionAccess().getGroup(), "rule__XBasicForLoopExpression__Group__0");
-					put(grammarAccess.getXBasicForLoopExpressionAccess().getGroup_3(), "rule__XBasicForLoopExpression__Group_3__0");
-					put(grammarAccess.getXBasicForLoopExpressionAccess().getGroup_3_1(), "rule__XBasicForLoopExpression__Group_3_1__0");
-					put(grammarAccess.getXBasicForLoopExpressionAccess().getGroup_7(), "rule__XBasicForLoopExpression__Group_7__0");
-					put(grammarAccess.getXBasicForLoopExpressionAccess().getGroup_7_1(), "rule__XBasicForLoopExpression__Group_7_1__0");
-					put(grammarAccess.getXWhileExpressionAccess().getGroup(), "rule__XWhileExpression__Group__0");
-					put(grammarAccess.getXDoWhileExpressionAccess().getGroup(), "rule__XDoWhileExpression__Group__0");
-					put(grammarAccess.getXBlockExpressionAccess().getGroup(), "rule__XBlockExpression__Group__0");
-					put(grammarAccess.getXBlockExpressionAccess().getGroup_2(), "rule__XBlockExpression__Group_2__0");
-					put(grammarAccess.getXVariableDeclarationAccess().getGroup(), "rule__XVariableDeclaration__Group__0");
-					put(grammarAccess.getXVariableDeclarationAccess().getGroup_2_0(), "rule__XVariableDeclaration__Group_2_0__0");
-					put(grammarAccess.getXVariableDeclarationAccess().getGroup_2_0_0(), "rule__XVariableDeclaration__Group_2_0_0__0");
-					put(grammarAccess.getXVariableDeclarationAccess().getGroup_3(), "rule__XVariableDeclaration__Group_3__0");
-					put(grammarAccess.getJvmFormalParameterAccess().getGroup(), "rule__JvmFormalParameter__Group__0");
-					put(grammarAccess.getFullJvmFormalParameterAccess().getGroup(), "rule__FullJvmFormalParameter__Group__0");
-					put(grammarAccess.getXFeatureCallAccess().getGroup(), "rule__XFeatureCall__Group__0");
-					put(grammarAccess.getXFeatureCallAccess().getGroup_1(), "rule__XFeatureCall__Group_1__0");
-					put(grammarAccess.getXFeatureCallAccess().getGroup_1_2(), "rule__XFeatureCall__Group_1_2__0");
-					put(grammarAccess.getXFeatureCallAccess().getGroup_3(), "rule__XFeatureCall__Group_3__0");
-					put(grammarAccess.getXFeatureCallAccess().getGroup_3_1_1(), "rule__XFeatureCall__Group_3_1_1__0");
-					put(grammarAccess.getXFeatureCallAccess().getGroup_3_1_1_1(), "rule__XFeatureCall__Group_3_1_1_1__0");
-					put(grammarAccess.getXConstructorCallAccess().getGroup(), "rule__XConstructorCall__Group__0");
-					put(grammarAccess.getXConstructorCallAccess().getGroup_3(), "rule__XConstructorCall__Group_3__0");
-					put(grammarAccess.getXConstructorCallAccess().getGroup_3_2(), "rule__XConstructorCall__Group_3_2__0");
-					put(grammarAccess.getXConstructorCallAccess().getGroup_4(), "rule__XConstructorCall__Group_4__0");
-					put(grammarAccess.getXConstructorCallAccess().getGroup_4_1_1(), "rule__XConstructorCall__Group_4_1_1__0");
-					put(grammarAccess.getXConstructorCallAccess().getGroup_4_1_1_1(), "rule__XConstructorCall__Group_4_1_1_1__0");
-					put(grammarAccess.getXBooleanLiteralAccess().getGroup(), "rule__XBooleanLiteral__Group__0");
-					put(grammarAccess.getXNullLiteralAccess().getGroup(), "rule__XNullLiteral__Group__0");
-					put(grammarAccess.getXNumberLiteralAccess().getGroup(), "rule__XNumberLiteral__Group__0");
-					put(grammarAccess.getXStringLiteralAccess().getGroup(), "rule__XStringLiteral__Group__0");
-					put(grammarAccess.getXTypeLiteralAccess().getGroup(), "rule__XTypeLiteral__Group__0");
-					put(grammarAccess.getXThrowExpressionAccess().getGroup(), "rule__XThrowExpression__Group__0");
-					put(grammarAccess.getXReturnExpressionAccess().getGroup(), "rule__XReturnExpression__Group__0");
-					put(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup(), "rule__XTryCatchFinallyExpression__Group__0");
-					put(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup_3_0(), "rule__XTryCatchFinallyExpression__Group_3_0__0");
-					put(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup_3_0_1(), "rule__XTryCatchFinallyExpression__Group_3_0_1__0");
-					put(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup_3_1(), "rule__XTryCatchFinallyExpression__Group_3_1__0");
-					put(grammarAccess.getXSynchronizedExpressionAccess().getGroup(), "rule__XSynchronizedExpression__Group__0");
-					put(grammarAccess.getXSynchronizedExpressionAccess().getGroup_0(), "rule__XSynchronizedExpression__Group_0__0");
-					put(grammarAccess.getXSynchronizedExpressionAccess().getGroup_0_0(), "rule__XSynchronizedExpression__Group_0_0__0");
-					put(grammarAccess.getXCatchClauseAccess().getGroup(), "rule__XCatchClause__Group__0");
-					put(grammarAccess.getNumberAccess().getGroup_1(), "rule__Number__Group_1__0");
-					put(grammarAccess.getNumberAccess().getGroup_1_1(), "rule__Number__Group_1_1__0");
-					put(grammarAccess.getStaticQualifierAccess().getGroup(), "rule__StaticQualifier__Group__0");
-					put(grammarAccess.getJvmTypeReferenceAccess().getGroup_0(), "rule__JvmTypeReference__Group_0__0");
-					put(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1(), "rule__JvmTypeReference__Group_0_1__0");
-					put(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0(), "rule__JvmTypeReference__Group_0_1_0__0");
-					put(grammarAccess.getArrayBracketsAccess().getGroup(), "rule__ArrayBrackets__Group__0");
-					put(grammarAccess.getXFunctionTypeRefAccess().getGroup(), "rule__XFunctionTypeRef__Group__0");
-					put(grammarAccess.getXFunctionTypeRefAccess().getGroup_0(), "rule__XFunctionTypeRef__Group_0__0");
-					put(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1(), "rule__XFunctionTypeRef__Group_0_1__0");
-					put(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1(), "rule__XFunctionTypeRef__Group_0_1_1__0");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup(), "rule__JvmParameterizedTypeReference__Group__0");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1(), "rule__JvmParameterizedTypeReference__Group_1__0");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2(), "rule__JvmParameterizedTypeReference__Group_1_2__0");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4(), "rule__JvmParameterizedTypeReference__Group_1_4__0");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0(), "rule__JvmParameterizedTypeReference__Group_1_4_0__0");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0_0(), "rule__JvmParameterizedTypeReference__Group_1_4_0_0__0");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2(), "rule__JvmParameterizedTypeReference__Group_1_4_2__0");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2_2(), "rule__JvmParameterizedTypeReference__Group_1_4_2_2__0");
-					put(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup(), "rule__JvmWildcardTypeReference__Group__0");
-					put(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0(), "rule__JvmWildcardTypeReference__Group_2_0__0");
-					put(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1(), "rule__JvmWildcardTypeReference__Group_2_1__0");
-					put(grammarAccess.getJvmUpperBoundAccess().getGroup(), "rule__JvmUpperBound__Group__0");
-					put(grammarAccess.getJvmUpperBoundAndedAccess().getGroup(), "rule__JvmUpperBoundAnded__Group__0");
-					put(grammarAccess.getJvmLowerBoundAccess().getGroup(), "rule__JvmLowerBound__Group__0");
-					put(grammarAccess.getJvmLowerBoundAndedAccess().getGroup(), "rule__JvmLowerBoundAnded__Group__0");
-					put(grammarAccess.getJvmTypeParameterAccess().getGroup(), "rule__JvmTypeParameter__Group__0");
-					put(grammarAccess.getJvmTypeParameterAccess().getGroup_1(), "rule__JvmTypeParameter__Group_1__0");
-					put(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup(), "rule__QualifiedNameWithWildcard__Group__0");
-					put(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup(), "rule__QualifiedNameInStaticImport__Group__0");
-					put(grammarAccess.getBlipModelAccess().getPackagesAssignment(), "rule__BlipModel__PackagesAssignment");
-					put(grammarAccess.getBlipPackageAccess().getNameAssignment_2(), "rule__BlipPackage__NameAssignment_2");
-					put(grammarAccess.getBlipPackageAccess().getImportSectionAssignment_3_1(), "rule__BlipPackage__ImportSectionAssignment_3_1");
-					put(grammarAccess.getBlipPackageAccess().getBlipsAssignment_3_2(), "rule__BlipPackage__BlipsAssignment_3_2");
-					put(grammarAccess.getBlipAccess().getNameAssignment_2(), "rule__Blip__NameAssignment_2");
-					put(grammarAccess.getBlipAccess().getHasImageAssignment_3_0_0(), "rule__Blip__HasImageAssignment_3_0_0");
-					put(grammarAccess.getBlipAccess().getImageAssignment_3_0_1(), "rule__Blip__ImageAssignment_3_0_1");
-					put(grammarAccess.getBlipAccess().getHasIconAssignment_3_1_0(), "rule__Blip__HasIconAssignment_3_1_0");
-					put(grammarAccess.getBlipAccess().getIconAssignment_3_1_1(), "rule__Blip__IconAssignment_3_1_1");
-					put(grammarAccess.getBlipAccess().getHasLoggingAssignment_3_2(), "rule__Blip__HasLoggingAssignment_3_2");
-					put(grammarAccess.getBlipAccess().getDescriptionAssignment_3_3_0(), "rule__Blip__DescriptionAssignment_3_3_0");
-					put(grammarAccess.getBlipAccess().getDescriptionValueAssignment_3_3_1(), "rule__Blip__DescriptionValueAssignment_3_3_1");
-					put(grammarAccess.getBlipAccess().getWorkloadAssignment_4_1(), "rule__Blip__WorkloadAssignment_4_1");
-					put(grammarAccess.getBlipAccess().getFunctionGroupAssignment_5_1(), "rule__Blip__FunctionGroupAssignment_5_1");
-					put(grammarAccess.getBlipAccess().getProcessAssignment_7(), "rule__Blip__ProcessAssignment_7");
-					put(grammarAccess.getBlipAccess().getItemsAssignment_8_1(), "rule__Blip__ItemsAssignment_8_1");
-					put(grammarAccess.getBlipWorkloadAccess().getSourceAssignment_2(), "rule__BlipWorkload__SourceAssignment_2");
-					put(grammarAccess.getBlipWorkloadAccess().getFiltersAssignment_3_2(), "rule__BlipWorkload__FiltersAssignment_3_2");
-					put(grammarAccess.getBlipFilterAccess().getFilterNameAssignment_2(), "rule__BlipFilter__FilterNameAssignment_2");
-					put(grammarAccess.getBlipFilterAccess().getFilterValueAssignment_4(), "rule__BlipFilter__FilterValueAssignment_4");
-					put(grammarAccess.getBlipDtoAccess().getDtoRefAssignment_2(), "rule__BlipDto__DtoRefAssignment_2");
-					put(grammarAccess.getBlipStartEventAccess().getNameAssignment_2(), "rule__BlipStartEvent__NameAssignment_2");
-					put(grammarAccess.getBlipStartEventAccess().getEventAssignment_4(), "rule__BlipStartEvent__EventAssignment_4");
-					put(grammarAccess.getBlipEndEventAccess().getNameAssignment_2(), "rule__BlipEndEvent__NameAssignment_2");
-					put(grammarAccess.getBlipEndEventAccess().getEventAssignment_4(), "rule__BlipEndEvent__EventAssignment_4");
-					put(grammarAccess.getBlipEndEventAccess().getEndHandlingAssignment_5(), "rule__BlipEndEvent__EndHandlingAssignment_5");
-					put(grammarAccess.getBlipUserTaskAccess().getNameAssignment_2(), "rule__BlipUserTask__NameAssignment_2");
-					put(grammarAccess.getBlipUserTaskAccess().getTaskAssignment_4(), "rule__BlipUserTask__TaskAssignment_4");
-					put(grammarAccess.getBlipUserTaskAccess().getDtoPathAssignment_5_1(), "rule__BlipUserTask__DtoPathAssignment_5_1");
-					put(grammarAccess.getBlipUserTaskAccess().getOnEntryAssignment_6_1(), "rule__BlipUserTask__OnEntryAssignment_6_1");
-					put(grammarAccess.getBlipUserTaskAccess().getOnExitAssignment_7_1(), "rule__BlipUserTask__OnExitAssignment_7_1");
-					put(grammarAccess.getBlipCallActivityAccess().getNameAssignment_2(), "rule__BlipCallActivity__NameAssignment_2");
-					put(grammarAccess.getBlipCallActivityAccess().getCallActivityAssignment_4(), "rule__BlipCallActivity__CallActivityAssignment_4");
-					put(grammarAccess.getBlipCallActivityAccess().getOnEntryAssignment_5_1(), "rule__BlipCallActivity__OnEntryAssignment_5_1");
-					put(grammarAccess.getBlipCallActivityAccess().getOnExitAssignment_6_1(), "rule__BlipCallActivity__OnExitAssignment_6_1");
-					put(grammarAccess.getBlipScriptTaskAccess().getNameAssignment_2(), "rule__BlipScriptTask__NameAssignment_2");
-					put(grammarAccess.getBlipScriptTaskAccess().getTaskAssignment_4(), "rule__BlipScriptTask__TaskAssignment_4");
-					put(grammarAccess.getBlipScriptTaskAccess().getFunctionAssignment_6(), "rule__BlipScriptTask__FunctionAssignment_6");
-					put(grammarAccess.getBlipPersistTaskAccess().getNameAssignment_2(), "rule__BlipPersistTask__NameAssignment_2");
-					put(grammarAccess.getBlipPersistTaskAccess().getTaskAssignment_4(), "rule__BlipPersistTask__TaskAssignment_4");
-					put(grammarAccess.getBlipPersistTaskAccess().getFunctionAssignment_6(), "rule__BlipPersistTask__FunctionAssignment_6");
-					put(grammarAccess.getBlipServiceTaskAccess().getNameAssignment_2(), "rule__BlipServiceTask__NameAssignment_2");
-					put(grammarAccess.getBlipServiceTaskAccess().getTaskAssignment_4(), "rule__BlipServiceTask__TaskAssignment_4");
-					put(grammarAccess.getBlipServiceTaskAccess().getOnEntryAssignment_5_1(), "rule__BlipServiceTask__OnEntryAssignment_5_1");
-					put(grammarAccess.getBlipServiceTaskAccess().getTimeoutInSecsAssignment_7_0_1(), "rule__BlipServiceTask__TimeoutInSecsAssignment_7_0_1");
-					put(grammarAccess.getBlipServiceTaskAccess().getExecutionModeAssignment_7_1(), "rule__BlipServiceTask__ExecutionModeAssignment_7_1");
-					put(grammarAccess.getBlipServiceTaskAccess().getFunctionAssignment_9_0_1(), "rule__BlipServiceTask__FunctionAssignment_9_0_1");
-					put(grammarAccess.getBlipServiceTaskAccess().getWebServiceInterfaceAssignment_9_1_1(), "rule__BlipServiceTask__WebServiceInterfaceAssignment_9_1_1");
-					put(grammarAccess.getBlipServiceTaskAccess().getWebServiceOperationAssignment_9_1_2(), "rule__BlipServiceTask__WebServiceOperationAssignment_9_1_2");
-					put(grammarAccess.getBlipServiceTaskAccess().getOnExitAssignment_10_1(), "rule__BlipServiceTask__OnExitAssignment_10_1");
-					put(grammarAccess.getBlipOutGoingAccess().getNameAssignment_2(), "rule__BlipOutGoing__NameAssignment_2");
-					put(grammarAccess.getBlipOutGoingAccess().getSequenceFlowAssignment_4(), "rule__BlipOutGoing__SequenceFlowAssignment_4");
-					put(grammarAccess.getBlipOutGoingAccess().getConstraintAssignment_6(), "rule__BlipOutGoing__ConstraintAssignment_6");
-					put(grammarAccess.getBlipOutGoingDefaultAccess().getIsDefaultAssignment_1(), "rule__BlipOutGoingDefault__IsDefaultAssignment_1");
-					put(grammarAccess.getBlipOutGoingDefaultAccess().getNameAssignment_2(), "rule__BlipOutGoingDefault__NameAssignment_2");
-					put(grammarAccess.getBlipOutGoingDefaultAccess().getSequenceFlowAssignment_4(), "rule__BlipOutGoingDefault__SequenceFlowAssignment_4");
-					put(grammarAccess.getBlipExclusiveSplitGatewayAccess().getNameAssignment_2(), "rule__BlipExclusiveSplitGateway__NameAssignment_2");
-					put(grammarAccess.getBlipExclusiveSplitGatewayAccess().getGatewayAssignment_4(), "rule__BlipExclusiveSplitGateway__GatewayAssignment_4");
-					put(grammarAccess.getBlipExclusiveSplitGatewayAccess().getOutgoingsAssignment_6(), "rule__BlipExclusiveSplitGateway__OutgoingsAssignment_6");
-					put(grammarAccess.getBlipExclusiveSplitGatewayAccess().getOutgoingsAssignment_7(), "rule__BlipExclusiveSplitGateway__OutgoingsAssignment_7");
-					put(grammarAccess.getBlipInclusiveSplitGatewayAccess().getNameAssignment_2(), "rule__BlipInclusiveSplitGateway__NameAssignment_2");
-					put(grammarAccess.getBlipInclusiveSplitGatewayAccess().getGatewayAssignment_4(), "rule__BlipInclusiveSplitGateway__GatewayAssignment_4");
-					put(grammarAccess.getBlipInclusiveSplitGatewayAccess().getOutgoingsAssignment_6(), "rule__BlipInclusiveSplitGateway__OutgoingsAssignment_6");
-					put(grammarAccess.getBlipDtoPathAccess().getDtoPathAssignment_1(), "rule__BlipDtoPath__DtoPathAssignment_1");
-					put(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1(), "rule__XImportDeclaration__ImportedNamespaceAssignment_1");
-					put(grammarAccess.getXAnnotationAccess().getAnnotationTypeAssignment_2(), "rule__XAnnotation__AnnotationTypeAssignment_2");
-					put(grammarAccess.getXAnnotationAccess().getElementValuePairsAssignment_3_1_0_0(), "rule__XAnnotation__ElementValuePairsAssignment_3_1_0_0");
-					put(grammarAccess.getXAnnotationAccess().getElementValuePairsAssignment_3_1_0_1_1(), "rule__XAnnotation__ElementValuePairsAssignment_3_1_0_1_1");
-					put(grammarAccess.getXAnnotationAccess().getValueAssignment_3_1_1(), "rule__XAnnotation__ValueAssignment_3_1_1");
-					put(grammarAccess.getXAnnotationElementValuePairAccess().getElementAssignment_0_0_0(), "rule__XAnnotationElementValuePair__ElementAssignment_0_0_0");
-					put(grammarAccess.getXAnnotationElementValuePairAccess().getValueAssignment_1(), "rule__XAnnotationElementValuePair__ValueAssignment_1");
-					put(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getElementsAssignment_0_1_0(), "rule__XAnnotationElementValueOrCommaList__ElementsAssignment_0_1_0");
-					put(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getElementsAssignment_0_1_1_1(), "rule__XAnnotationElementValueOrCommaList__ElementsAssignment_0_1_1_1");
-					put(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getElementsAssignment_1_1_1_1(), "rule__XAnnotationElementValueOrCommaList__ElementsAssignment_1_1_1_1");
-					put(grammarAccess.getXAnnotationElementValueAccess().getElementsAssignment_0_1_0(), "rule__XAnnotationElementValue__ElementsAssignment_0_1_0");
-					put(grammarAccess.getXAnnotationElementValueAccess().getElementsAssignment_0_1_1_1(), "rule__XAnnotationElementValue__ElementsAssignment_0_1_1_1");
-					put(grammarAccess.getXAssignmentAccess().getFeatureAssignment_0_1(), "rule__XAssignment__FeatureAssignment_0_1");
-					put(grammarAccess.getXAssignmentAccess().getValueAssignment_0_3(), "rule__XAssignment__ValueAssignment_0_3");
-					put(grammarAccess.getXAssignmentAccess().getFeatureAssignment_1_1_0_0_1(), "rule__XAssignment__FeatureAssignment_1_1_0_0_1");
-					put(grammarAccess.getXAssignmentAccess().getRightOperandAssignment_1_1_1(), "rule__XAssignment__RightOperandAssignment_1_1_1");
-					put(grammarAccess.getXOrExpressionAccess().getFeatureAssignment_1_0_0_1(), "rule__XOrExpression__FeatureAssignment_1_0_0_1");
-					put(grammarAccess.getXOrExpressionAccess().getRightOperandAssignment_1_1(), "rule__XOrExpression__RightOperandAssignment_1_1");
-					put(grammarAccess.getXAndExpressionAccess().getFeatureAssignment_1_0_0_1(), "rule__XAndExpression__FeatureAssignment_1_0_0_1");
-					put(grammarAccess.getXAndExpressionAccess().getRightOperandAssignment_1_1(), "rule__XAndExpression__RightOperandAssignment_1_1");
-					put(grammarAccess.getXEqualityExpressionAccess().getFeatureAssignment_1_0_0_1(), "rule__XEqualityExpression__FeatureAssignment_1_0_0_1");
-					put(grammarAccess.getXEqualityExpressionAccess().getRightOperandAssignment_1_1(), "rule__XEqualityExpression__RightOperandAssignment_1_1");
-					put(grammarAccess.getXRelationalExpressionAccess().getTypeAssignment_1_0_1(), "rule__XRelationalExpression__TypeAssignment_1_0_1");
-					put(grammarAccess.getXRelationalExpressionAccess().getFeatureAssignment_1_1_0_0_1(), "rule__XRelationalExpression__FeatureAssignment_1_1_0_0_1");
-					put(grammarAccess.getXRelationalExpressionAccess().getRightOperandAssignment_1_1_1(), "rule__XRelationalExpression__RightOperandAssignment_1_1_1");
-					put(grammarAccess.getXOtherOperatorExpressionAccess().getFeatureAssignment_1_0_0_1(), "rule__XOtherOperatorExpression__FeatureAssignment_1_0_0_1");
-					put(grammarAccess.getXOtherOperatorExpressionAccess().getRightOperandAssignment_1_1(), "rule__XOtherOperatorExpression__RightOperandAssignment_1_1");
-					put(grammarAccess.getXAdditiveExpressionAccess().getFeatureAssignment_1_0_0_1(), "rule__XAdditiveExpression__FeatureAssignment_1_0_0_1");
-					put(grammarAccess.getXAdditiveExpressionAccess().getRightOperandAssignment_1_1(), "rule__XAdditiveExpression__RightOperandAssignment_1_1");
-					put(grammarAccess.getXMultiplicativeExpressionAccess().getFeatureAssignment_1_0_0_1(), "rule__XMultiplicativeExpression__FeatureAssignment_1_0_0_1");
-					put(grammarAccess.getXMultiplicativeExpressionAccess().getRightOperandAssignment_1_1(), "rule__XMultiplicativeExpression__RightOperandAssignment_1_1");
-					put(grammarAccess.getXUnaryOperationAccess().getFeatureAssignment_0_1(), "rule__XUnaryOperation__FeatureAssignment_0_1");
-					put(grammarAccess.getXUnaryOperationAccess().getOperandAssignment_0_2(), "rule__XUnaryOperation__OperandAssignment_0_2");
-					put(grammarAccess.getXCastedExpressionAccess().getTypeAssignment_1_1(), "rule__XCastedExpression__TypeAssignment_1_1");
-					put(grammarAccess.getXPostfixOperationAccess().getFeatureAssignment_1_0_1(), "rule__XPostfixOperation__FeatureAssignment_1_0_1");
-					put(grammarAccess.getXMemberFeatureCallAccess().getExplicitStaticAssignment_1_0_0_0_1_1(), "rule__XMemberFeatureCall__ExplicitStaticAssignment_1_0_0_0_1_1");
-					put(grammarAccess.getXMemberFeatureCallAccess().getFeatureAssignment_1_0_0_0_2(), "rule__XMemberFeatureCall__FeatureAssignment_1_0_0_0_2");
-					put(grammarAccess.getXMemberFeatureCallAccess().getValueAssignment_1_0_1(), "rule__XMemberFeatureCall__ValueAssignment_1_0_1");
-					put(grammarAccess.getXMemberFeatureCallAccess().getNullSafeAssignment_1_1_0_0_1_1(), "rule__XMemberFeatureCall__NullSafeAssignment_1_1_0_0_1_1");
-					put(grammarAccess.getXMemberFeatureCallAccess().getExplicitStaticAssignment_1_1_0_0_1_2(), "rule__XMemberFeatureCall__ExplicitStaticAssignment_1_1_0_0_1_2");
-					put(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsAssignment_1_1_1_1(), "rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1");
-					put(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsAssignment_1_1_1_2_1(), "rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1");
-					put(grammarAccess.getXMemberFeatureCallAccess().getFeatureAssignment_1_1_2(), "rule__XMemberFeatureCall__FeatureAssignment_1_1_2");
-					put(grammarAccess.getXMemberFeatureCallAccess().getExplicitOperationCallAssignment_1_1_3_0(), "rule__XMemberFeatureCall__ExplicitOperationCallAssignment_1_1_3_0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getMemberCallArgumentsAssignment_1_1_3_1_0(), "rule__XMemberFeatureCall__MemberCallArgumentsAssignment_1_1_3_1_0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getMemberCallArgumentsAssignment_1_1_3_1_1_0(), "rule__XMemberFeatureCall__MemberCallArgumentsAssignment_1_1_3_1_1_0");
-					put(grammarAccess.getXMemberFeatureCallAccess().getMemberCallArgumentsAssignment_1_1_3_1_1_1_1(), "rule__XMemberFeatureCall__MemberCallArgumentsAssignment_1_1_3_1_1_1_1");
-					put(grammarAccess.getXMemberFeatureCallAccess().getMemberCallArgumentsAssignment_1_1_4(), "rule__XMemberFeatureCall__MemberCallArgumentsAssignment_1_1_4");
-					put(grammarAccess.getXSetLiteralAccess().getElementsAssignment_3_0(), "rule__XSetLiteral__ElementsAssignment_3_0");
-					put(grammarAccess.getXSetLiteralAccess().getElementsAssignment_3_1_1(), "rule__XSetLiteral__ElementsAssignment_3_1_1");
-					put(grammarAccess.getXListLiteralAccess().getElementsAssignment_3_0(), "rule__XListLiteral__ElementsAssignment_3_0");
-					put(grammarAccess.getXListLiteralAccess().getElementsAssignment_3_1_1(), "rule__XListLiteral__ElementsAssignment_3_1_1");
-					put(grammarAccess.getXClosureAccess().getDeclaredFormalParametersAssignment_1_0_0_0(), "rule__XClosure__DeclaredFormalParametersAssignment_1_0_0_0");
-					put(grammarAccess.getXClosureAccess().getDeclaredFormalParametersAssignment_1_0_0_1_1(), "rule__XClosure__DeclaredFormalParametersAssignment_1_0_0_1_1");
-					put(grammarAccess.getXClosureAccess().getExplicitSyntaxAssignment_1_0_1(), "rule__XClosure__ExplicitSyntaxAssignment_1_0_1");
-					put(grammarAccess.getXClosureAccess().getExpressionAssignment_2(), "rule__XClosure__ExpressionAssignment_2");
-					put(grammarAccess.getXExpressionInClosureAccess().getExpressionsAssignment_1_0(), "rule__XExpressionInClosure__ExpressionsAssignment_1_0");
-					put(grammarAccess.getXShortClosureAccess().getDeclaredFormalParametersAssignment_0_0_1_0(), "rule__XShortClosure__DeclaredFormalParametersAssignment_0_0_1_0");
-					put(grammarAccess.getXShortClosureAccess().getDeclaredFormalParametersAssignment_0_0_1_1_1(), "rule__XShortClosure__DeclaredFormalParametersAssignment_0_0_1_1_1");
-					put(grammarAccess.getXShortClosureAccess().getExplicitSyntaxAssignment_0_0_2(), "rule__XShortClosure__ExplicitSyntaxAssignment_0_0_2");
-					put(grammarAccess.getXShortClosureAccess().getExpressionAssignment_1(), "rule__XShortClosure__ExpressionAssignment_1");
-					put(grammarAccess.getXIfExpressionAccess().getIfAssignment_3(), "rule__XIfExpression__IfAssignment_3");
-					put(grammarAccess.getXIfExpressionAccess().getThenAssignment_5(), "rule__XIfExpression__ThenAssignment_5");
-					put(grammarAccess.getXIfExpressionAccess().getElseAssignment_6_1(), "rule__XIfExpression__ElseAssignment_6_1");
-					put(grammarAccess.getXSwitchExpressionAccess().getDeclaredParamAssignment_2_0_0_0_1(), "rule__XSwitchExpression__DeclaredParamAssignment_2_0_0_0_1");
-					put(grammarAccess.getXSwitchExpressionAccess().getSwitchAssignment_2_0_1(), "rule__XSwitchExpression__SwitchAssignment_2_0_1");
-					put(grammarAccess.getXSwitchExpressionAccess().getDeclaredParamAssignment_2_1_0_0_0(), "rule__XSwitchExpression__DeclaredParamAssignment_2_1_0_0_0");
-					put(grammarAccess.getXSwitchExpressionAccess().getSwitchAssignment_2_1_1(), "rule__XSwitchExpression__SwitchAssignment_2_1_1");
-					put(grammarAccess.getXSwitchExpressionAccess().getCasesAssignment_4(), "rule__XSwitchExpression__CasesAssignment_4");
-					put(grammarAccess.getXSwitchExpressionAccess().getDefaultAssignment_5_2(), "rule__XSwitchExpression__DefaultAssignment_5_2");
-					put(grammarAccess.getXCasePartAccess().getTypeGuardAssignment_1(), "rule__XCasePart__TypeGuardAssignment_1");
-					put(grammarAccess.getXCasePartAccess().getCaseAssignment_2_1(), "rule__XCasePart__CaseAssignment_2_1");
-					put(grammarAccess.getXCasePartAccess().getThenAssignment_3_0_1(), "rule__XCasePart__ThenAssignment_3_0_1");
-					put(grammarAccess.getXCasePartAccess().getFallThroughAssignment_3_1(), "rule__XCasePart__FallThroughAssignment_3_1");
-					put(grammarAccess.getXForLoopExpressionAccess().getDeclaredParamAssignment_0_0_3(), "rule__XForLoopExpression__DeclaredParamAssignment_0_0_3");
-					put(grammarAccess.getXForLoopExpressionAccess().getForExpressionAssignment_1(), "rule__XForLoopExpression__ForExpressionAssignment_1");
-					put(grammarAccess.getXForLoopExpressionAccess().getEachExpressionAssignment_3(), "rule__XForLoopExpression__EachExpressionAssignment_3");
-					put(grammarAccess.getXBasicForLoopExpressionAccess().getInitExpressionsAssignment_3_0(), "rule__XBasicForLoopExpression__InitExpressionsAssignment_3_0");
-					put(grammarAccess.getXBasicForLoopExpressionAccess().getInitExpressionsAssignment_3_1_1(), "rule__XBasicForLoopExpression__InitExpressionsAssignment_3_1_1");
-					put(grammarAccess.getXBasicForLoopExpressionAccess().getExpressionAssignment_5(), "rule__XBasicForLoopExpression__ExpressionAssignment_5");
-					put(grammarAccess.getXBasicForLoopExpressionAccess().getUpdateExpressionsAssignment_7_0(), "rule__XBasicForLoopExpression__UpdateExpressionsAssignment_7_0");
-					put(grammarAccess.getXBasicForLoopExpressionAccess().getUpdateExpressionsAssignment_7_1_1(), "rule__XBasicForLoopExpression__UpdateExpressionsAssignment_7_1_1");
-					put(grammarAccess.getXBasicForLoopExpressionAccess().getEachExpressionAssignment_9(), "rule__XBasicForLoopExpression__EachExpressionAssignment_9");
-					put(grammarAccess.getXWhileExpressionAccess().getPredicateAssignment_3(), "rule__XWhileExpression__PredicateAssignment_3");
-					put(grammarAccess.getXWhileExpressionAccess().getBodyAssignment_5(), "rule__XWhileExpression__BodyAssignment_5");
-					put(grammarAccess.getXDoWhileExpressionAccess().getBodyAssignment_2(), "rule__XDoWhileExpression__BodyAssignment_2");
-					put(grammarAccess.getXDoWhileExpressionAccess().getPredicateAssignment_5(), "rule__XDoWhileExpression__PredicateAssignment_5");
-					put(grammarAccess.getXBlockExpressionAccess().getExpressionsAssignment_2_0(), "rule__XBlockExpression__ExpressionsAssignment_2_0");
-					put(grammarAccess.getXVariableDeclarationAccess().getWriteableAssignment_1_0(), "rule__XVariableDeclaration__WriteableAssignment_1_0");
-					put(grammarAccess.getXVariableDeclarationAccess().getTypeAssignment_2_0_0_0(), "rule__XVariableDeclaration__TypeAssignment_2_0_0_0");
-					put(grammarAccess.getXVariableDeclarationAccess().getNameAssignment_2_0_0_1(), "rule__XVariableDeclaration__NameAssignment_2_0_0_1");
-					put(grammarAccess.getXVariableDeclarationAccess().getNameAssignment_2_1(), "rule__XVariableDeclaration__NameAssignment_2_1");
-					put(grammarAccess.getXVariableDeclarationAccess().getRightAssignment_3_1(), "rule__XVariableDeclaration__RightAssignment_3_1");
-					put(grammarAccess.getJvmFormalParameterAccess().getParameterTypeAssignment_0(), "rule__JvmFormalParameter__ParameterTypeAssignment_0");
-					put(grammarAccess.getJvmFormalParameterAccess().getNameAssignment_1(), "rule__JvmFormalParameter__NameAssignment_1");
-					put(grammarAccess.getFullJvmFormalParameterAccess().getParameterTypeAssignment_0(), "rule__FullJvmFormalParameter__ParameterTypeAssignment_0");
-					put(grammarAccess.getFullJvmFormalParameterAccess().getNameAssignment_1(), "rule__FullJvmFormalParameter__NameAssignment_1");
-					put(grammarAccess.getXFeatureCallAccess().getTypeArgumentsAssignment_1_1(), "rule__XFeatureCall__TypeArgumentsAssignment_1_1");
-					put(grammarAccess.getXFeatureCallAccess().getTypeArgumentsAssignment_1_2_1(), "rule__XFeatureCall__TypeArgumentsAssignment_1_2_1");
-					put(grammarAccess.getXFeatureCallAccess().getFeatureAssignment_2(), "rule__XFeatureCall__FeatureAssignment_2");
-					put(grammarAccess.getXFeatureCallAccess().getExplicitOperationCallAssignment_3_0(), "rule__XFeatureCall__ExplicitOperationCallAssignment_3_0");
-					put(grammarAccess.getXFeatureCallAccess().getFeatureCallArgumentsAssignment_3_1_0(), "rule__XFeatureCall__FeatureCallArgumentsAssignment_3_1_0");
-					put(grammarAccess.getXFeatureCallAccess().getFeatureCallArgumentsAssignment_3_1_1_0(), "rule__XFeatureCall__FeatureCallArgumentsAssignment_3_1_1_0");
-					put(grammarAccess.getXFeatureCallAccess().getFeatureCallArgumentsAssignment_3_1_1_1_1(), "rule__XFeatureCall__FeatureCallArgumentsAssignment_3_1_1_1_1");
-					put(grammarAccess.getXFeatureCallAccess().getFeatureCallArgumentsAssignment_4(), "rule__XFeatureCall__FeatureCallArgumentsAssignment_4");
-					put(grammarAccess.getXConstructorCallAccess().getConstructorAssignment_2(), "rule__XConstructorCall__ConstructorAssignment_2");
-					put(grammarAccess.getXConstructorCallAccess().getTypeArgumentsAssignment_3_1(), "rule__XConstructorCall__TypeArgumentsAssignment_3_1");
-					put(grammarAccess.getXConstructorCallAccess().getTypeArgumentsAssignment_3_2_1(), "rule__XConstructorCall__TypeArgumentsAssignment_3_2_1");
-					put(grammarAccess.getXConstructorCallAccess().getExplicitConstructorCallAssignment_4_0(), "rule__XConstructorCall__ExplicitConstructorCallAssignment_4_0");
-					put(grammarAccess.getXConstructorCallAccess().getArgumentsAssignment_4_1_0(), "rule__XConstructorCall__ArgumentsAssignment_4_1_0");
-					put(grammarAccess.getXConstructorCallAccess().getArgumentsAssignment_4_1_1_0(), "rule__XConstructorCall__ArgumentsAssignment_4_1_1_0");
-					put(grammarAccess.getXConstructorCallAccess().getArgumentsAssignment_4_1_1_1_1(), "rule__XConstructorCall__ArgumentsAssignment_4_1_1_1_1");
-					put(grammarAccess.getXConstructorCallAccess().getArgumentsAssignment_5(), "rule__XConstructorCall__ArgumentsAssignment_5");
-					put(grammarAccess.getXBooleanLiteralAccess().getIsTrueAssignment_1_1(), "rule__XBooleanLiteral__IsTrueAssignment_1_1");
-					put(grammarAccess.getXNumberLiteralAccess().getValueAssignment_1(), "rule__XNumberLiteral__ValueAssignment_1");
-					put(grammarAccess.getXStringLiteralAccess().getValueAssignment_1(), "rule__XStringLiteral__ValueAssignment_1");
-					put(grammarAccess.getXTypeLiteralAccess().getTypeAssignment_3(), "rule__XTypeLiteral__TypeAssignment_3");
-					put(grammarAccess.getXTypeLiteralAccess().getArrayDimensionsAssignment_4(), "rule__XTypeLiteral__ArrayDimensionsAssignment_4");
-					put(grammarAccess.getXThrowExpressionAccess().getExpressionAssignment_2(), "rule__XThrowExpression__ExpressionAssignment_2");
-					put(grammarAccess.getXReturnExpressionAccess().getExpressionAssignment_2(), "rule__XReturnExpression__ExpressionAssignment_2");
-					put(grammarAccess.getXTryCatchFinallyExpressionAccess().getExpressionAssignment_2(), "rule__XTryCatchFinallyExpression__ExpressionAssignment_2");
-					put(grammarAccess.getXTryCatchFinallyExpressionAccess().getCatchClausesAssignment_3_0_0(), "rule__XTryCatchFinallyExpression__CatchClausesAssignment_3_0_0");
-					put(grammarAccess.getXTryCatchFinallyExpressionAccess().getFinallyExpressionAssignment_3_0_1_1(), "rule__XTryCatchFinallyExpression__FinallyExpressionAssignment_3_0_1_1");
-					put(grammarAccess.getXTryCatchFinallyExpressionAccess().getFinallyExpressionAssignment_3_1_1(), "rule__XTryCatchFinallyExpression__FinallyExpressionAssignment_3_1_1");
-					put(grammarAccess.getXSynchronizedExpressionAccess().getParamAssignment_1(), "rule__XSynchronizedExpression__ParamAssignment_1");
-					put(grammarAccess.getXSynchronizedExpressionAccess().getExpressionAssignment_3(), "rule__XSynchronizedExpression__ExpressionAssignment_3");
-					put(grammarAccess.getXCatchClauseAccess().getDeclaredParamAssignment_2(), "rule__XCatchClause__DeclaredParamAssignment_2");
-					put(grammarAccess.getXCatchClauseAccess().getExpressionAssignment_4(), "rule__XCatchClause__ExpressionAssignment_4");
-					put(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1_0(), "rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0");
-					put(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1_1_1(), "rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1");
-					put(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeAssignment_2(), "rule__XFunctionTypeRef__ReturnTypeAssignment_2");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeAssignment_0(), "rule__JvmParameterizedTypeReference__TypeAssignment_0");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1(), "rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_2_1(), "rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeAssignment_1_4_1(), "rule__JvmParameterizedTypeReference__TypeAssignment_1_4_1");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_4_2_1(), "rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1");
-					put(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_4_2_2_1(), "rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1");
-					put(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_0(), "rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0");
-					put(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1(), "rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1");
-					put(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0(), "rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0");
-					put(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1(), "rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1");
-					put(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1(), "rule__JvmUpperBound__TypeReferenceAssignment_1");
-					put(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1(), "rule__JvmUpperBoundAnded__TypeReferenceAssignment_1");
-					put(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1(), "rule__JvmLowerBound__TypeReferenceAssignment_1");
-					put(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1(), "rule__JvmLowerBoundAnded__TypeReferenceAssignment_1");
-					put(grammarAccess.getJvmTypeParameterAccess().getNameAssignment_0(), "rule__JvmTypeParameter__NameAssignment_0");
-					put(grammarAccess.getJvmTypeParameterAccess().getConstraintsAssignment_1_0(), "rule__JvmTypeParameter__ConstraintsAssignment_1_0");
-					put(grammarAccess.getJvmTypeParameterAccess().getConstraintsAssignment_1_1(), "rule__JvmTypeParameter__ConstraintsAssignment_1_1");
-					put(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment(), "rule__XImportSection__ImportDeclarationsAssignment");
-					put(grammarAccess.getBlipAccess().getUnorderedGroup_3(), "rule__Blip__UnorderedGroup_3");
-				}
-			};
-		}
-		return nameMappings.get(element);
-	}
-	
-	@Override
-	protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
-		try {
-			org.eclipse.osbp.xtext.blip.ui.contentassist.antlr.internal.InternalBlipDSLParser typedParser = (org.eclipse.osbp.xtext.blip.ui.contentassist.antlr.internal.InternalBlipDSLParser) parser;
-			typedParser.entryRuleBlipModel();
-			return typedParser.getFollowElements();
-		} catch(RecognitionException ex) {
-			throw new RuntimeException(ex);
-		}		
-	}
-	
-	@Override
-	protected String[] getInitialHiddenTokens() {
-		return new String[] { "RULE_WS", "RULE_ML_COMMENT", "RULE_SL_COMMENT" };
-	}
-	
-	public BlipDSLGrammarAccess getGrammarAccess() {
-		return this.grammarAccess;
-	}
-	
-	public void setGrammarAccess(BlipDSLGrammarAccess grammarAccess) {
-		this.grammarAccess = grammarAccess;
-	}
-}
diff --git a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/PartialBlipDSLContentAssistParser.java b/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/PartialBlipDSLContentAssistParser.java
deleted file mode 100644
index cb5ca22..0000000
--- a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/PartialBlipDSLContentAssistParser.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/**
- *                                                                            
- *  Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany) 
- *                                                                            
- *  All rights reserved. This program and the accompanying materials           
- *  are made available under the terms of the Eclipse Public License v1.0       
- *  which accompanies this distribution, and is available at                  
- *  http://www.eclipse.org/legal/epl-v10.html                                 
- *                                                                            
- *  Contributors:                                                      
- * 	   Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
- * 
- */
- 
-package org.eclipse.osbp.xtext.blip.ui.contentassist.antlr;
-
-import java.util.Collection;
-import java.util.Collections;
-
-import org.eclipse.xtext.AbstractRule;
-import org.eclipse.xtext.ui.codetemplates.ui.partialEditing.IPartialContentAssistParser;
-import org.eclipse.xtext.ui.editor.contentassist.antlr.FollowElement;
-import org.eclipse.xtext.ui.editor.contentassist.antlr.internal.AbstractInternalContentAssistParser;
-import org.eclipse.xtext.util.PolymorphicDispatcher;
-
-/**
- * @author Sebastian Zarnekow - Initial contribution and API
- */
-@SuppressWarnings("restriction")
-public class PartialBlipDSLContentAssistParser extends BlipDSLParser implements IPartialContentAssistParser {
-
-	private AbstractRule rule;
-
-	public void initializeFor(AbstractRule rule) {
-		this.rule = rule;
-	}
-	
-	@Override
-	protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
-		if (rule == null || rule.eIsProxy())
-			return Collections.emptyList();
-		String methodName = "entryRule" + rule.getName();
-		PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
-			new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
-		dispatcher.invoke();
-		return parser.getFollowElements();
-	}
-
-}
diff --git a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g b/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g
deleted file mode 100644
index 3d668f8..0000000
--- a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g
+++ /dev/null
@@ -1,10015 +0,0 @@
-/**
- *                                                                            
- *  Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany) 
- *                                                                            
- *  All rights reserved. This program and the accompanying materials           
- *  are made available under the terms of the Eclipse Public License v1.0       
- *  which accompanies this distribution, and is available at                  
- *  http://www.eclipse.org/legal/epl-v10.html                                 
- *                                                                            
- *  Contributors:                                                      
- * 	   Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
- * 
- */
- 
-grammar InternalBlipDSL;
-
-options {
-	superClass=AbstractInternalContentAssistParser;
-	backtrack=true;
-	
-}
-
-@lexer::header {
-package org.eclipse.osbp.xtext.blip.ui.contentassist.antlr.internal;
-
-// Hack: Use our own Lexer superclass by means of import. 
-// Currently there is no other way to specify the superclass for the lexer.
-import org.eclipse.xtext.ui.editor.contentassist.antlr.internal.Lexer;
-}
-
-@parser::header {
-package org.eclipse.osbp.xtext.blip.ui.contentassist.antlr.internal; 
-
-import java.io.InputStream;
-import org.eclipse.xtext.*;
-import org.eclipse.xtext.parser.*;
-import org.eclipse.xtext.parser.impl.*;
-import org.eclipse.emf.ecore.util.EcoreUtil;
-import org.eclipse.emf.ecore.EObject;
-import org.eclipse.xtext.parser.antlr.XtextTokenStream;
-import org.eclipse.xtext.parser.antlr.XtextTokenStream.HiddenTokens;
-import org.eclipse.xtext.ui.editor.contentassist.antlr.internal.AbstractInternalContentAssistParser;
-import org.eclipse.xtext.ui.editor.contentassist.antlr.internal.DFA;
-import org.eclipse.osbp.xtext.blip.services.BlipDSLGrammarAccess;
-
-}
-
-@parser::members {
- 
- 	private BlipDSLGrammarAccess grammarAccess;
- 	
-    public void setGrammarAccess(BlipDSLGrammarAccess grammarAccess) {
-    	this.grammarAccess = grammarAccess;
-    }
-    
-    @Override
-    protected Grammar getGrammar() {
-    	return grammarAccess.getGrammar();
-    }
-    
-    @Override
-    protected String getValueForTokenName(String tokenName) {
-    	return tokenName;
-    }
-
-}
-
-
-
-
-// Entry rule entryRuleBlipModel
-entryRuleBlipModel 
-:
-{ before(grammarAccess.getBlipModelRule()); }
-	 ruleBlipModel
-{ after(grammarAccess.getBlipModelRule()); } 
-	 EOF 
-;
-
-// Rule BlipModel
-ruleBlipModel
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipModelAccess().getPackagesAssignment()); }
-(rule__BlipModel__PackagesAssignment)*
-{ after(grammarAccess.getBlipModelAccess().getPackagesAssignment()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipPackage
-entryRuleBlipPackage 
-:
-{ before(grammarAccess.getBlipPackageRule()); }
-	 ruleBlipPackage
-{ after(grammarAccess.getBlipPackageRule()); } 
-	 EOF 
-;
-
-// Rule BlipPackage
-ruleBlipPackage
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipPackageAccess().getGroup()); }
-(rule__BlipPackage__Group__0)
-{ after(grammarAccess.getBlipPackageAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlip
-entryRuleBlip 
-:
-{ before(grammarAccess.getBlipRule()); }
-	 ruleBlip
-{ after(grammarAccess.getBlipRule()); } 
-	 EOF 
-;
-
-// Rule Blip
-ruleBlip
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipAccess().getGroup()); }
-(rule__Blip__Group__0)
-{ after(grammarAccess.getBlipAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipWorkload
-entryRuleBlipWorkload 
-:
-{ before(grammarAccess.getBlipWorkloadRule()); }
-	 ruleBlipWorkload
-{ after(grammarAccess.getBlipWorkloadRule()); } 
-	 EOF 
-;
-
-// Rule BlipWorkload
-ruleBlipWorkload
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipWorkloadAccess().getGroup()); }
-(rule__BlipWorkload__Group__0)
-{ after(grammarAccess.getBlipWorkloadAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipFilter
-entryRuleBlipFilter 
-:
-{ before(grammarAccess.getBlipFilterRule()); }
-	 ruleBlipFilter
-{ after(grammarAccess.getBlipFilterRule()); } 
-	 EOF 
-;
-
-// Rule BlipFilter
-ruleBlipFilter
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipFilterAccess().getGroup()); }
-(rule__BlipFilter__Group__0)
-{ after(grammarAccess.getBlipFilterAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipDto
-entryRuleBlipDto 
-:
-{ before(grammarAccess.getBlipDtoRule()); }
-	 ruleBlipDto
-{ after(grammarAccess.getBlipDtoRule()); } 
-	 EOF 
-;
-
-// Rule BlipDto
-ruleBlipDto
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipDtoAccess().getGroup()); }
-(rule__BlipDto__Group__0)
-{ after(grammarAccess.getBlipDtoAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipItem
-entryRuleBlipItem 
-:
-{ before(grammarAccess.getBlipItemRule()); }
-	 ruleBlipItem
-{ after(grammarAccess.getBlipItemRule()); } 
-	 EOF 
-;
-
-// Rule BlipItem
-ruleBlipItem
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipItemAccess().getAlternatives()); }
-(rule__BlipItem__Alternatives)
-{ after(grammarAccess.getBlipItemAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipStartEvent
-entryRuleBlipStartEvent 
-:
-{ before(grammarAccess.getBlipStartEventRule()); }
-	 ruleBlipStartEvent
-{ after(grammarAccess.getBlipStartEventRule()); } 
-	 EOF 
-;
-
-// Rule BlipStartEvent
-ruleBlipStartEvent
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipStartEventAccess().getGroup()); }
-(rule__BlipStartEvent__Group__0)
-{ after(grammarAccess.getBlipStartEventAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipEndEvent
-entryRuleBlipEndEvent 
-:
-{ before(grammarAccess.getBlipEndEventRule()); }
-	 ruleBlipEndEvent
-{ after(grammarAccess.getBlipEndEventRule()); } 
-	 EOF 
-;
-
-// Rule BlipEndEvent
-ruleBlipEndEvent
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipEndEventAccess().getGroup()); }
-(rule__BlipEndEvent__Group__0)
-{ after(grammarAccess.getBlipEndEventAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipUserTask
-entryRuleBlipUserTask 
-:
-{ before(grammarAccess.getBlipUserTaskRule()); }
-	 ruleBlipUserTask
-{ after(grammarAccess.getBlipUserTaskRule()); } 
-	 EOF 
-;
-
-// Rule BlipUserTask
-ruleBlipUserTask
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getGroup()); }
-(rule__BlipUserTask__Group__0)
-{ after(grammarAccess.getBlipUserTaskAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipCallActivity
-entryRuleBlipCallActivity 
-:
-{ before(grammarAccess.getBlipCallActivityRule()); }
-	 ruleBlipCallActivity
-{ after(grammarAccess.getBlipCallActivityRule()); } 
-	 EOF 
-;
-
-// Rule BlipCallActivity
-ruleBlipCallActivity
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipCallActivityAccess().getGroup()); }
-(rule__BlipCallActivity__Group__0)
-{ after(grammarAccess.getBlipCallActivityAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipScriptTask
-entryRuleBlipScriptTask 
-:
-{ before(grammarAccess.getBlipScriptTaskRule()); }
-	 ruleBlipScriptTask
-{ after(grammarAccess.getBlipScriptTaskRule()); } 
-	 EOF 
-;
-
-// Rule BlipScriptTask
-ruleBlipScriptTask
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipScriptTaskAccess().getGroup()); }
-(rule__BlipScriptTask__Group__0)
-{ after(grammarAccess.getBlipScriptTaskAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipPersistTask
-entryRuleBlipPersistTask 
-:
-{ before(grammarAccess.getBlipPersistTaskRule()); }
-	 ruleBlipPersistTask
-{ after(grammarAccess.getBlipPersistTaskRule()); } 
-	 EOF 
-;
-
-// Rule BlipPersistTask
-ruleBlipPersistTask
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipPersistTaskAccess().getGroup()); }
-(rule__BlipPersistTask__Group__0)
-{ after(grammarAccess.getBlipPersistTaskAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipServiceTask
-entryRuleBlipServiceTask 
-:
-{ before(grammarAccess.getBlipServiceTaskRule()); }
-	 ruleBlipServiceTask
-{ after(grammarAccess.getBlipServiceTaskRule()); } 
-	 EOF 
-;
-
-// Rule BlipServiceTask
-ruleBlipServiceTask
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getGroup()); }
-(rule__BlipServiceTask__Group__0)
-{ after(grammarAccess.getBlipServiceTaskAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipOutGoing
-entryRuleBlipOutGoing 
-:
-{ before(grammarAccess.getBlipOutGoingRule()); }
-	 ruleBlipOutGoing
-{ after(grammarAccess.getBlipOutGoingRule()); } 
-	 EOF 
-;
-
-// Rule BlipOutGoing
-ruleBlipOutGoing
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipOutGoingAccess().getGroup()); }
-(rule__BlipOutGoing__Group__0)
-{ after(grammarAccess.getBlipOutGoingAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipOutGoingDefault
-entryRuleBlipOutGoingDefault 
-:
-{ before(grammarAccess.getBlipOutGoingDefaultRule()); }
-	 ruleBlipOutGoingDefault
-{ after(grammarAccess.getBlipOutGoingDefaultRule()); } 
-	 EOF 
-;
-
-// Rule BlipOutGoingDefault
-ruleBlipOutGoingDefault
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipOutGoingDefaultAccess().getGroup()); }
-(rule__BlipOutGoingDefault__Group__0)
-{ after(grammarAccess.getBlipOutGoingDefaultAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipExclusiveSplitGateway
-entryRuleBlipExclusiveSplitGateway 
-:
-{ before(grammarAccess.getBlipExclusiveSplitGatewayRule()); }
-	 ruleBlipExclusiveSplitGateway
-{ after(grammarAccess.getBlipExclusiveSplitGatewayRule()); } 
-	 EOF 
-;
-
-// Rule BlipExclusiveSplitGateway
-ruleBlipExclusiveSplitGateway
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getGroup()); }
-(rule__BlipExclusiveSplitGateway__Group__0)
-{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipInclusiveSplitGateway
-entryRuleBlipInclusiveSplitGateway 
-:
-{ before(grammarAccess.getBlipInclusiveSplitGatewayRule()); }
-	 ruleBlipInclusiveSplitGateway
-{ after(grammarAccess.getBlipInclusiveSplitGatewayRule()); } 
-	 EOF 
-;
-
-// Rule BlipInclusiveSplitGateway
-ruleBlipInclusiveSplitGateway
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getGroup()); }
-(rule__BlipInclusiveSplitGateway__Group__0)
-{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleBlipDtoPath
-entryRuleBlipDtoPath 
-:
-{ before(grammarAccess.getBlipDtoPathRule()); }
-	 ruleBlipDtoPath
-{ after(grammarAccess.getBlipDtoPathRule()); } 
-	 EOF 
-;
-
-// Rule BlipDtoPath
-ruleBlipDtoPath
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getBlipDtoPathAccess().getGroup()); }
-(rule__BlipDtoPath__Group__0)
-{ after(grammarAccess.getBlipDtoPathAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleQualifiedDtoPath
-entryRuleQualifiedDtoPath 
-:
-{ before(grammarAccess.getQualifiedDtoPathRule()); }
-	 ruleQualifiedDtoPath
-{ after(grammarAccess.getQualifiedDtoPathRule()); } 
-	 EOF 
-;
-
-// Rule QualifiedDtoPath
-ruleQualifiedDtoPath
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getQualifiedDtoPathAccess().getGroup()); }
-(rule__QualifiedDtoPath__Group__0)
-{ after(grammarAccess.getQualifiedDtoPathAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleQualifiedName
-entryRuleQualifiedName 
-:
-{ before(grammarAccess.getQualifiedNameRule()); }
-	 ruleQualifiedName
-{ after(grammarAccess.getQualifiedNameRule()); } 
-	 EOF 
-;
-
-// Rule QualifiedName
-ruleQualifiedName
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getQualifiedNameAccess().getGroup()); }
-(rule__QualifiedName__Group__0)
-{ after(grammarAccess.getQualifiedNameAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleValidID
-entryRuleValidID 
-:
-{ before(grammarAccess.getValidIDRule()); }
-	 ruleValidID
-{ after(grammarAccess.getValidIDRule()); } 
-	 EOF 
-;
-
-// Rule ValidID
-ruleValidID
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); }
-	RULE_ID
-{ after(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleTRANSLATABLEID
-entryRuleTRANSLATABLEID 
-:
-{ before(grammarAccess.getTRANSLATABLEIDRule()); }
-	 ruleTRANSLATABLEID
-{ after(grammarAccess.getTRANSLATABLEIDRule()); } 
-	 EOF 
-;
-
-// Rule TRANSLATABLEID
-ruleTRANSLATABLEID
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getTRANSLATABLEIDAccess().getIDTerminalRuleCall()); }
-	RULE_ID
-{ after(grammarAccess.getTRANSLATABLEIDAccess().getIDTerminalRuleCall()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleTRANSLATABLESTRING
-entryRuleTRANSLATABLESTRING 
-:
-{ before(grammarAccess.getTRANSLATABLESTRINGRule()); }
-	 ruleTRANSLATABLESTRING
-{ after(grammarAccess.getTRANSLATABLESTRINGRule()); } 
-	 EOF 
-;
-
-// Rule TRANSLATABLESTRING
-ruleTRANSLATABLESTRING
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getTRANSLATABLESTRINGAccess().getSTRINGTerminalRuleCall()); }
-	RULE_STRING
-{ after(grammarAccess.getTRANSLATABLESTRINGAccess().getSTRINGTerminalRuleCall()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXImportDeclaration
-entryRuleXImportDeclaration 
-:
-{ before(grammarAccess.getXImportDeclarationRule()); }
-	 ruleXImportDeclaration
-{ after(grammarAccess.getXImportDeclarationRule()); } 
-	 EOF 
-;
-
-// Rule XImportDeclaration
-ruleXImportDeclaration
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXImportDeclarationAccess().getGroup()); }
-(rule__XImportDeclaration__Group__0)
-{ after(grammarAccess.getXImportDeclarationAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXAnnotation
-entryRuleXAnnotation 
-:
-{ before(grammarAccess.getXAnnotationRule()); }
-	 ruleXAnnotation
-{ after(grammarAccess.getXAnnotationRule()); } 
-	 EOF 
-;
-
-// Rule XAnnotation
-ruleXAnnotation
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXAnnotationAccess().getGroup()); }
-(rule__XAnnotation__Group__0)
-{ after(grammarAccess.getXAnnotationAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXAnnotationElementValuePair
-entryRuleXAnnotationElementValuePair 
-:
-{ before(grammarAccess.getXAnnotationElementValuePairRule()); }
-	 ruleXAnnotationElementValuePair
-{ after(grammarAccess.getXAnnotationElementValuePairRule()); } 
-	 EOF 
-;
-
-// Rule XAnnotationElementValuePair
-ruleXAnnotationElementValuePair
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXAnnotationElementValuePairAccess().getGroup()); }
-(rule__XAnnotationElementValuePair__Group__0)
-{ after(grammarAccess.getXAnnotationElementValuePairAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXAnnotationElementValueOrCommaList
-entryRuleXAnnotationElementValueOrCommaList 
-:
-{ before(grammarAccess.getXAnnotationElementValueOrCommaListRule()); }
-	 ruleXAnnotationElementValueOrCommaList
-{ after(grammarAccess.getXAnnotationElementValueOrCommaListRule()); } 
-	 EOF 
-;
-
-// Rule XAnnotationElementValueOrCommaList
-ruleXAnnotationElementValueOrCommaList
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getAlternatives()); }
-(rule__XAnnotationElementValueOrCommaList__Alternatives)
-{ after(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXAnnotationElementValue
-entryRuleXAnnotationElementValue 
-:
-{ before(grammarAccess.getXAnnotationElementValueRule()); }
-	 ruleXAnnotationElementValue
-{ after(grammarAccess.getXAnnotationElementValueRule()); } 
-	 EOF 
-;
-
-// Rule XAnnotationElementValue
-ruleXAnnotationElementValue
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXAnnotationElementValueAccess().getAlternatives()); }
-(rule__XAnnotationElementValue__Alternatives)
-{ after(grammarAccess.getXAnnotationElementValueAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXAnnotationOrExpression
-entryRuleXAnnotationOrExpression 
-:
-{ before(grammarAccess.getXAnnotationOrExpressionRule()); }
-	 ruleXAnnotationOrExpression
-{ after(grammarAccess.getXAnnotationOrExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XAnnotationOrExpression
-ruleXAnnotationOrExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXAnnotationOrExpressionAccess().getAlternatives()); }
-(rule__XAnnotationOrExpression__Alternatives)
-{ after(grammarAccess.getXAnnotationOrExpressionAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXExpression
-entryRuleXExpression 
-:
-{ before(grammarAccess.getXExpressionRule()); }
-	 ruleXExpression
-{ after(grammarAccess.getXExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XExpression
-ruleXExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXExpressionAccess().getXAssignmentParserRuleCall()); }
-	ruleXAssignment
-{ after(grammarAccess.getXExpressionAccess().getXAssignmentParserRuleCall()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXAssignment
-entryRuleXAssignment 
-:
-{ before(grammarAccess.getXAssignmentRule()); }
-	 ruleXAssignment
-{ after(grammarAccess.getXAssignmentRule()); } 
-	 EOF 
-;
-
-// Rule XAssignment
-ruleXAssignment
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXAssignmentAccess().getAlternatives()); }
-(rule__XAssignment__Alternatives)
-{ after(grammarAccess.getXAssignmentAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleOpSingleAssign
-entryRuleOpSingleAssign 
-:
-{ before(grammarAccess.getOpSingleAssignRule()); }
-	 ruleOpSingleAssign
-{ after(grammarAccess.getOpSingleAssignRule()); } 
-	 EOF 
-;
-
-// Rule OpSingleAssign
-ruleOpSingleAssign
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getOpSingleAssignAccess().getEqualsSignKeyword()); }
-
-	'=' 
-
-{ after(grammarAccess.getOpSingleAssignAccess().getEqualsSignKeyword()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleOpMultiAssign
-entryRuleOpMultiAssign 
-:
-{ before(grammarAccess.getOpMultiAssignRule()); }
-	 ruleOpMultiAssign
-{ after(grammarAccess.getOpMultiAssignRule()); } 
-	 EOF 
-;
-
-// Rule OpMultiAssign
-ruleOpMultiAssign
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getOpMultiAssignAccess().getAlternatives()); }
-(rule__OpMultiAssign__Alternatives)
-{ after(grammarAccess.getOpMultiAssignAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXOrExpression
-entryRuleXOrExpression 
-:
-{ before(grammarAccess.getXOrExpressionRule()); }
-	 ruleXOrExpression
-{ after(grammarAccess.getXOrExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XOrExpression
-ruleXOrExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXOrExpressionAccess().getGroup()); }
-(rule__XOrExpression__Group__0)
-{ after(grammarAccess.getXOrExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleOpOr
-entryRuleOpOr 
-:
-{ before(grammarAccess.getOpOrRule()); }
-	 ruleOpOr
-{ after(grammarAccess.getOpOrRule()); } 
-	 EOF 
-;
-
-// Rule OpOr
-ruleOpOr
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getOpOrAccess().getVerticalLineVerticalLineKeyword()); }
-
-	'||' 
-
-{ after(grammarAccess.getOpOrAccess().getVerticalLineVerticalLineKeyword()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXAndExpression
-entryRuleXAndExpression 
-:
-{ before(grammarAccess.getXAndExpressionRule()); }
-	 ruleXAndExpression
-{ after(grammarAccess.getXAndExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XAndExpression
-ruleXAndExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXAndExpressionAccess().getGroup()); }
-(rule__XAndExpression__Group__0)
-{ after(grammarAccess.getXAndExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleOpAnd
-entryRuleOpAnd 
-:
-{ before(grammarAccess.getOpAndRule()); }
-	 ruleOpAnd
-{ after(grammarAccess.getOpAndRule()); } 
-	 EOF 
-;
-
-// Rule OpAnd
-ruleOpAnd
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getOpAndAccess().getAmpersandAmpersandKeyword()); }
-
-	'&&' 
-
-{ after(grammarAccess.getOpAndAccess().getAmpersandAmpersandKeyword()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXEqualityExpression
-entryRuleXEqualityExpression 
-:
-{ before(grammarAccess.getXEqualityExpressionRule()); }
-	 ruleXEqualityExpression
-{ after(grammarAccess.getXEqualityExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XEqualityExpression
-ruleXEqualityExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXEqualityExpressionAccess().getGroup()); }
-(rule__XEqualityExpression__Group__0)
-{ after(grammarAccess.getXEqualityExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleOpEquality
-entryRuleOpEquality 
-:
-{ before(grammarAccess.getOpEqualityRule()); }
-	 ruleOpEquality
-{ after(grammarAccess.getOpEqualityRule()); } 
-	 EOF 
-;
-
-// Rule OpEquality
-ruleOpEquality
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getOpEqualityAccess().getAlternatives()); }
-(rule__OpEquality__Alternatives)
-{ after(grammarAccess.getOpEqualityAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXRelationalExpression
-entryRuleXRelationalExpression 
-:
-{ before(grammarAccess.getXRelationalExpressionRule()); }
-	 ruleXRelationalExpression
-{ after(grammarAccess.getXRelationalExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XRelationalExpression
-ruleXRelationalExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXRelationalExpressionAccess().getGroup()); }
-(rule__XRelationalExpression__Group__0)
-{ after(grammarAccess.getXRelationalExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleOpCompare
-entryRuleOpCompare 
-:
-{ before(grammarAccess.getOpCompareRule()); }
-	 ruleOpCompare
-{ after(grammarAccess.getOpCompareRule()); } 
-	 EOF 
-;
-
-// Rule OpCompare
-ruleOpCompare
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getOpCompareAccess().getAlternatives()); }
-(rule__OpCompare__Alternatives)
-{ after(grammarAccess.getOpCompareAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXOtherOperatorExpression
-entryRuleXOtherOperatorExpression 
-:
-{ before(grammarAccess.getXOtherOperatorExpressionRule()); }
-	 ruleXOtherOperatorExpression
-{ after(grammarAccess.getXOtherOperatorExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XOtherOperatorExpression
-ruleXOtherOperatorExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXOtherOperatorExpressionAccess().getGroup()); }
-(rule__XOtherOperatorExpression__Group__0)
-{ after(grammarAccess.getXOtherOperatorExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleOpOther
-entryRuleOpOther 
-:
-{ before(grammarAccess.getOpOtherRule()); }
-	 ruleOpOther
-{ after(grammarAccess.getOpOtherRule()); } 
-	 EOF 
-;
-
-// Rule OpOther
-ruleOpOther
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getOpOtherAccess().getAlternatives()); }
-(rule__OpOther__Alternatives)
-{ after(grammarAccess.getOpOtherAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXAdditiveExpression
-entryRuleXAdditiveExpression 
-:
-{ before(grammarAccess.getXAdditiveExpressionRule()); }
-	 ruleXAdditiveExpression
-{ after(grammarAccess.getXAdditiveExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XAdditiveExpression
-ruleXAdditiveExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXAdditiveExpressionAccess().getGroup()); }
-(rule__XAdditiveExpression__Group__0)
-{ after(grammarAccess.getXAdditiveExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleOpAdd
-entryRuleOpAdd 
-:
-{ before(grammarAccess.getOpAddRule()); }
-	 ruleOpAdd
-{ after(grammarAccess.getOpAddRule()); } 
-	 EOF 
-;
-
-// Rule OpAdd
-ruleOpAdd
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getOpAddAccess().getAlternatives()); }
-(rule__OpAdd__Alternatives)
-{ after(grammarAccess.getOpAddAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXMultiplicativeExpression
-entryRuleXMultiplicativeExpression 
-:
-{ before(grammarAccess.getXMultiplicativeExpressionRule()); }
-	 ruleXMultiplicativeExpression
-{ after(grammarAccess.getXMultiplicativeExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XMultiplicativeExpression
-ruleXMultiplicativeExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXMultiplicativeExpressionAccess().getGroup()); }
-(rule__XMultiplicativeExpression__Group__0)
-{ after(grammarAccess.getXMultiplicativeExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleOpMulti
-entryRuleOpMulti 
-:
-{ before(grammarAccess.getOpMultiRule()); }
-	 ruleOpMulti
-{ after(grammarAccess.getOpMultiRule()); } 
-	 EOF 
-;
-
-// Rule OpMulti
-ruleOpMulti
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getOpMultiAccess().getAlternatives()); }
-(rule__OpMulti__Alternatives)
-{ after(grammarAccess.getOpMultiAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXUnaryOperation
-entryRuleXUnaryOperation 
-:
-{ before(grammarAccess.getXUnaryOperationRule()); }
-	 ruleXUnaryOperation
-{ after(grammarAccess.getXUnaryOperationRule()); } 
-	 EOF 
-;
-
-// Rule XUnaryOperation
-ruleXUnaryOperation
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXUnaryOperationAccess().getAlternatives()); }
-(rule__XUnaryOperation__Alternatives)
-{ after(grammarAccess.getXUnaryOperationAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleOpUnary
-entryRuleOpUnary 
-:
-{ before(grammarAccess.getOpUnaryRule()); }
-	 ruleOpUnary
-{ after(grammarAccess.getOpUnaryRule()); } 
-	 EOF 
-;
-
-// Rule OpUnary
-ruleOpUnary
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getOpUnaryAccess().getAlternatives()); }
-(rule__OpUnary__Alternatives)
-{ after(grammarAccess.getOpUnaryAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXCastedExpression
-entryRuleXCastedExpression 
-:
-{ before(grammarAccess.getXCastedExpressionRule()); }
-	 ruleXCastedExpression
-{ after(grammarAccess.getXCastedExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XCastedExpression
-ruleXCastedExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXCastedExpressionAccess().getGroup()); }
-(rule__XCastedExpression__Group__0)
-{ after(grammarAccess.getXCastedExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXPostfixOperation
-entryRuleXPostfixOperation 
-:
-{ before(grammarAccess.getXPostfixOperationRule()); }
-	 ruleXPostfixOperation
-{ after(grammarAccess.getXPostfixOperationRule()); } 
-	 EOF 
-;
-
-// Rule XPostfixOperation
-ruleXPostfixOperation
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXPostfixOperationAccess().getGroup()); }
-(rule__XPostfixOperation__Group__0)
-{ after(grammarAccess.getXPostfixOperationAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleOpPostfix
-entryRuleOpPostfix 
-:
-{ before(grammarAccess.getOpPostfixRule()); }
-	 ruleOpPostfix
-{ after(grammarAccess.getOpPostfixRule()); } 
-	 EOF 
-;
-
-// Rule OpPostfix
-ruleOpPostfix
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getOpPostfixAccess().getAlternatives()); }
-(rule__OpPostfix__Alternatives)
-{ after(grammarAccess.getOpPostfixAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXMemberFeatureCall
-entryRuleXMemberFeatureCall 
-:
-{ before(grammarAccess.getXMemberFeatureCallRule()); }
-	 ruleXMemberFeatureCall
-{ after(grammarAccess.getXMemberFeatureCallRule()); } 
-	 EOF 
-;
-
-// Rule XMemberFeatureCall
-ruleXMemberFeatureCall
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXMemberFeatureCallAccess().getGroup()); }
-(rule__XMemberFeatureCall__Group__0)
-{ after(grammarAccess.getXMemberFeatureCallAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXPrimaryExpression
-entryRuleXPrimaryExpression 
-:
-{ before(grammarAccess.getXPrimaryExpressionRule()); }
-	 ruleXPrimaryExpression
-{ after(grammarAccess.getXPrimaryExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XPrimaryExpression
-ruleXPrimaryExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getAlternatives()); }
-(rule__XPrimaryExpression__Alternatives)
-{ after(grammarAccess.getXPrimaryExpressionAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXLiteral
-entryRuleXLiteral 
-:
-{ before(grammarAccess.getXLiteralRule()); }
-	 ruleXLiteral
-{ after(grammarAccess.getXLiteralRule()); } 
-	 EOF 
-;
-
-// Rule XLiteral
-ruleXLiteral
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXLiteralAccess().getAlternatives()); }
-(rule__XLiteral__Alternatives)
-{ after(grammarAccess.getXLiteralAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXCollectionLiteral
-entryRuleXCollectionLiteral 
-:
-{ before(grammarAccess.getXCollectionLiteralRule()); }
-	 ruleXCollectionLiteral
-{ after(grammarAccess.getXCollectionLiteralRule()); } 
-	 EOF 
-;
-
-// Rule XCollectionLiteral
-ruleXCollectionLiteral
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXCollectionLiteralAccess().getAlternatives()); }
-(rule__XCollectionLiteral__Alternatives)
-{ after(grammarAccess.getXCollectionLiteralAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXSetLiteral
-entryRuleXSetLiteral 
-:
-{ before(grammarAccess.getXSetLiteralRule()); }
-	 ruleXSetLiteral
-{ after(grammarAccess.getXSetLiteralRule()); } 
-	 EOF 
-;
-
-// Rule XSetLiteral
-ruleXSetLiteral
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXSetLiteralAccess().getGroup()); }
-(rule__XSetLiteral__Group__0)
-{ after(grammarAccess.getXSetLiteralAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXListLiteral
-entryRuleXListLiteral 
-:
-{ before(grammarAccess.getXListLiteralRule()); }
-	 ruleXListLiteral
-{ after(grammarAccess.getXListLiteralRule()); } 
-	 EOF 
-;
-
-// Rule XListLiteral
-ruleXListLiteral
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXListLiteralAccess().getGroup()); }
-(rule__XListLiteral__Group__0)
-{ after(grammarAccess.getXListLiteralAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXClosure
-entryRuleXClosure 
-:
-{ before(grammarAccess.getXClosureRule()); }
-	 ruleXClosure
-{ after(grammarAccess.getXClosureRule()); } 
-	 EOF 
-;
-
-// Rule XClosure
-ruleXClosure
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXClosureAccess().getGroup()); }
-(rule__XClosure__Group__0)
-{ after(grammarAccess.getXClosureAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXExpressionInClosure
-entryRuleXExpressionInClosure 
-:
-{ before(grammarAccess.getXExpressionInClosureRule()); }
-	 ruleXExpressionInClosure
-{ after(grammarAccess.getXExpressionInClosureRule()); } 
-	 EOF 
-;
-
-// Rule XExpressionInClosure
-ruleXExpressionInClosure
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXExpressionInClosureAccess().getGroup()); }
-(rule__XExpressionInClosure__Group__0)
-{ after(grammarAccess.getXExpressionInClosureAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXShortClosure
-entryRuleXShortClosure 
-:
-{ before(grammarAccess.getXShortClosureRule()); }
-	 ruleXShortClosure
-{ after(grammarAccess.getXShortClosureRule()); } 
-	 EOF 
-;
-
-// Rule XShortClosure
-ruleXShortClosure
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXShortClosureAccess().getGroup()); }
-(rule__XShortClosure__Group__0)
-{ after(grammarAccess.getXShortClosureAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXParenthesizedExpression
-entryRuleXParenthesizedExpression 
-:
-{ before(grammarAccess.getXParenthesizedExpressionRule()); }
-	 ruleXParenthesizedExpression
-{ after(grammarAccess.getXParenthesizedExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XParenthesizedExpression
-ruleXParenthesizedExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXParenthesizedExpressionAccess().getGroup()); }
-(rule__XParenthesizedExpression__Group__0)
-{ after(grammarAccess.getXParenthesizedExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXIfExpression
-entryRuleXIfExpression 
-:
-{ before(grammarAccess.getXIfExpressionRule()); }
-	 ruleXIfExpression
-{ after(grammarAccess.getXIfExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XIfExpression
-ruleXIfExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXIfExpressionAccess().getGroup()); }
-(rule__XIfExpression__Group__0)
-{ after(grammarAccess.getXIfExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXSwitchExpression
-entryRuleXSwitchExpression 
-:
-{ before(grammarAccess.getXSwitchExpressionRule()); }
-	 ruleXSwitchExpression
-{ after(grammarAccess.getXSwitchExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XSwitchExpression
-ruleXSwitchExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXSwitchExpressionAccess().getGroup()); }
-(rule__XSwitchExpression__Group__0)
-{ after(grammarAccess.getXSwitchExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXCasePart
-entryRuleXCasePart 
-:
-{ before(grammarAccess.getXCasePartRule()); }
-	 ruleXCasePart
-{ after(grammarAccess.getXCasePartRule()); } 
-	 EOF 
-;
-
-// Rule XCasePart
-ruleXCasePart
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXCasePartAccess().getGroup()); }
-(rule__XCasePart__Group__0)
-{ after(grammarAccess.getXCasePartAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXForLoopExpression
-entryRuleXForLoopExpression 
-:
-{ before(grammarAccess.getXForLoopExpressionRule()); }
-	 ruleXForLoopExpression
-{ after(grammarAccess.getXForLoopExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XForLoopExpression
-ruleXForLoopExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXForLoopExpressionAccess().getGroup()); }
-(rule__XForLoopExpression__Group__0)
-{ after(grammarAccess.getXForLoopExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXBasicForLoopExpression
-entryRuleXBasicForLoopExpression 
-:
-{ before(grammarAccess.getXBasicForLoopExpressionRule()); }
-	 ruleXBasicForLoopExpression
-{ after(grammarAccess.getXBasicForLoopExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XBasicForLoopExpression
-ruleXBasicForLoopExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXBasicForLoopExpressionAccess().getGroup()); }
-(rule__XBasicForLoopExpression__Group__0)
-{ after(grammarAccess.getXBasicForLoopExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXWhileExpression
-entryRuleXWhileExpression 
-:
-{ before(grammarAccess.getXWhileExpressionRule()); }
-	 ruleXWhileExpression
-{ after(grammarAccess.getXWhileExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XWhileExpression
-ruleXWhileExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXWhileExpressionAccess().getGroup()); }
-(rule__XWhileExpression__Group__0)
-{ after(grammarAccess.getXWhileExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXDoWhileExpression
-entryRuleXDoWhileExpression 
-:
-{ before(grammarAccess.getXDoWhileExpressionRule()); }
-	 ruleXDoWhileExpression
-{ after(grammarAccess.getXDoWhileExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XDoWhileExpression
-ruleXDoWhileExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXDoWhileExpressionAccess().getGroup()); }
-(rule__XDoWhileExpression__Group__0)
-{ after(grammarAccess.getXDoWhileExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXBlockExpression
-entryRuleXBlockExpression 
-:
-{ before(grammarAccess.getXBlockExpressionRule()); }
-	 ruleXBlockExpression
-{ after(grammarAccess.getXBlockExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XBlockExpression
-ruleXBlockExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXBlockExpressionAccess().getGroup()); }
-(rule__XBlockExpression__Group__0)
-{ after(grammarAccess.getXBlockExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXExpressionOrVarDeclaration
-entryRuleXExpressionOrVarDeclaration 
-:
-{ before(grammarAccess.getXExpressionOrVarDeclarationRule()); }
-	 ruleXExpressionOrVarDeclaration
-{ after(grammarAccess.getXExpressionOrVarDeclarationRule()); } 
-	 EOF 
-;
-
-// Rule XExpressionOrVarDeclaration
-ruleXExpressionOrVarDeclaration
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXExpressionOrVarDeclarationAccess().getAlternatives()); }
-(rule__XExpressionOrVarDeclaration__Alternatives)
-{ after(grammarAccess.getXExpressionOrVarDeclarationAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXVariableDeclaration
-entryRuleXVariableDeclaration 
-:
-{ before(grammarAccess.getXVariableDeclarationRule()); }
-	 ruleXVariableDeclaration
-{ after(grammarAccess.getXVariableDeclarationRule()); } 
-	 EOF 
-;
-
-// Rule XVariableDeclaration
-ruleXVariableDeclaration
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXVariableDeclarationAccess().getGroup()); }
-(rule__XVariableDeclaration__Group__0)
-{ after(grammarAccess.getXVariableDeclarationAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleJvmFormalParameter
-entryRuleJvmFormalParameter 
-:
-{ before(grammarAccess.getJvmFormalParameterRule()); }
-	 ruleJvmFormalParameter
-{ after(grammarAccess.getJvmFormalParameterRule()); } 
-	 EOF 
-;
-
-// Rule JvmFormalParameter
-ruleJvmFormalParameter
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getJvmFormalParameterAccess().getGroup()); }
-(rule__JvmFormalParameter__Group__0)
-{ after(grammarAccess.getJvmFormalParameterAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleFullJvmFormalParameter
-entryRuleFullJvmFormalParameter 
-:
-{ before(grammarAccess.getFullJvmFormalParameterRule()); }
-	 ruleFullJvmFormalParameter
-{ after(grammarAccess.getFullJvmFormalParameterRule()); } 
-	 EOF 
-;
-
-// Rule FullJvmFormalParameter
-ruleFullJvmFormalParameter
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getFullJvmFormalParameterAccess().getGroup()); }
-(rule__FullJvmFormalParameter__Group__0)
-{ after(grammarAccess.getFullJvmFormalParameterAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXFeatureCall
-entryRuleXFeatureCall 
-:
-{ before(grammarAccess.getXFeatureCallRule()); }
-	 ruleXFeatureCall
-{ after(grammarAccess.getXFeatureCallRule()); } 
-	 EOF 
-;
-
-// Rule XFeatureCall
-ruleXFeatureCall
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXFeatureCallAccess().getGroup()); }
-(rule__XFeatureCall__Group__0)
-{ after(grammarAccess.getXFeatureCallAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleFeatureCallID
-entryRuleFeatureCallID 
-:
-{ before(grammarAccess.getFeatureCallIDRule()); }
-	 ruleFeatureCallID
-{ after(grammarAccess.getFeatureCallIDRule()); } 
-	 EOF 
-;
-
-// Rule FeatureCallID
-ruleFeatureCallID
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getFeatureCallIDAccess().getAlternatives()); }
-(rule__FeatureCallID__Alternatives)
-{ after(grammarAccess.getFeatureCallIDAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleIdOrSuper
-entryRuleIdOrSuper 
-:
-{ before(grammarAccess.getIdOrSuperRule()); }
-	 ruleIdOrSuper
-{ after(grammarAccess.getIdOrSuperRule()); } 
-	 EOF 
-;
-
-// Rule IdOrSuper
-ruleIdOrSuper
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getIdOrSuperAccess().getAlternatives()); }
-(rule__IdOrSuper__Alternatives)
-{ after(grammarAccess.getIdOrSuperAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXConstructorCall
-entryRuleXConstructorCall 
-:
-{ before(grammarAccess.getXConstructorCallRule()); }
-	 ruleXConstructorCall
-{ after(grammarAccess.getXConstructorCallRule()); } 
-	 EOF 
-;
-
-// Rule XConstructorCall
-ruleXConstructorCall
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXConstructorCallAccess().getGroup()); }
-(rule__XConstructorCall__Group__0)
-{ after(grammarAccess.getXConstructorCallAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXBooleanLiteral
-entryRuleXBooleanLiteral 
-:
-{ before(grammarAccess.getXBooleanLiteralRule()); }
-	 ruleXBooleanLiteral
-{ after(grammarAccess.getXBooleanLiteralRule()); } 
-	 EOF 
-;
-
-// Rule XBooleanLiteral
-ruleXBooleanLiteral
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXBooleanLiteralAccess().getGroup()); }
-(rule__XBooleanLiteral__Group__0)
-{ after(grammarAccess.getXBooleanLiteralAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXNullLiteral
-entryRuleXNullLiteral 
-:
-{ before(grammarAccess.getXNullLiteralRule()); }
-	 ruleXNullLiteral
-{ after(grammarAccess.getXNullLiteralRule()); } 
-	 EOF 
-;
-
-// Rule XNullLiteral
-ruleXNullLiteral
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXNullLiteralAccess().getGroup()); }
-(rule__XNullLiteral__Group__0)
-{ after(grammarAccess.getXNullLiteralAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXNumberLiteral
-entryRuleXNumberLiteral 
-:
-{ before(grammarAccess.getXNumberLiteralRule()); }
-	 ruleXNumberLiteral
-{ after(grammarAccess.getXNumberLiteralRule()); } 
-	 EOF 
-;
-
-// Rule XNumberLiteral
-ruleXNumberLiteral
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXNumberLiteralAccess().getGroup()); }
-(rule__XNumberLiteral__Group__0)
-{ after(grammarAccess.getXNumberLiteralAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXStringLiteral
-entryRuleXStringLiteral 
-:
-{ before(grammarAccess.getXStringLiteralRule()); }
-	 ruleXStringLiteral
-{ after(grammarAccess.getXStringLiteralRule()); } 
-	 EOF 
-;
-
-// Rule XStringLiteral
-ruleXStringLiteral
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXStringLiteralAccess().getGroup()); }
-(rule__XStringLiteral__Group__0)
-{ after(grammarAccess.getXStringLiteralAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXTypeLiteral
-entryRuleXTypeLiteral 
-:
-{ before(grammarAccess.getXTypeLiteralRule()); }
-	 ruleXTypeLiteral
-{ after(grammarAccess.getXTypeLiteralRule()); } 
-	 EOF 
-;
-
-// Rule XTypeLiteral
-ruleXTypeLiteral
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXTypeLiteralAccess().getGroup()); }
-(rule__XTypeLiteral__Group__0)
-{ after(grammarAccess.getXTypeLiteralAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXThrowExpression
-entryRuleXThrowExpression 
-:
-{ before(grammarAccess.getXThrowExpressionRule()); }
-	 ruleXThrowExpression
-{ after(grammarAccess.getXThrowExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XThrowExpression
-ruleXThrowExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXThrowExpressionAccess().getGroup()); }
-(rule__XThrowExpression__Group__0)
-{ after(grammarAccess.getXThrowExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXReturnExpression
-entryRuleXReturnExpression 
-:
-{ before(grammarAccess.getXReturnExpressionRule()); }
-	 ruleXReturnExpression
-{ after(grammarAccess.getXReturnExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XReturnExpression
-ruleXReturnExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXReturnExpressionAccess().getGroup()); }
-(rule__XReturnExpression__Group__0)
-{ after(grammarAccess.getXReturnExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXTryCatchFinallyExpression
-entryRuleXTryCatchFinallyExpression 
-:
-{ before(grammarAccess.getXTryCatchFinallyExpressionRule()); }
-	 ruleXTryCatchFinallyExpression
-{ after(grammarAccess.getXTryCatchFinallyExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XTryCatchFinallyExpression
-ruleXTryCatchFinallyExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup()); }
-(rule__XTryCatchFinallyExpression__Group__0)
-{ after(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXSynchronizedExpression
-entryRuleXSynchronizedExpression 
-:
-{ before(grammarAccess.getXSynchronizedExpressionRule()); }
-	 ruleXSynchronizedExpression
-{ after(grammarAccess.getXSynchronizedExpressionRule()); } 
-	 EOF 
-;
-
-// Rule XSynchronizedExpression
-ruleXSynchronizedExpression
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXSynchronizedExpressionAccess().getGroup()); }
-(rule__XSynchronizedExpression__Group__0)
-{ after(grammarAccess.getXSynchronizedExpressionAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXCatchClause
-entryRuleXCatchClause 
-:
-{ before(grammarAccess.getXCatchClauseRule()); }
-	 ruleXCatchClause
-{ after(grammarAccess.getXCatchClauseRule()); } 
-	 EOF 
-;
-
-// Rule XCatchClause
-ruleXCatchClause
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXCatchClauseAccess().getGroup()); }
-(rule__XCatchClause__Group__0)
-{ after(grammarAccess.getXCatchClauseAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleNumber
-entryRuleNumber 
-@init {
-	HiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();
-}
-:
-{ before(grammarAccess.getNumberRule()); }
-	 ruleNumber
-{ after(grammarAccess.getNumberRule()); } 
-	 EOF 
-;
-finally {
-	myHiddenTokenState.restore();
-}
-
-// Rule Number
-ruleNumber
-    @init {
-		HiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getNumberAccess().getAlternatives()); }
-(rule__Number__Alternatives)
-{ after(grammarAccess.getNumberAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-	myHiddenTokenState.restore();
-}
-
-
-
-
-
-// Entry rule entryRuleJvmTypeReference
-entryRuleJvmTypeReference 
-:
-{ before(grammarAccess.getJvmTypeReferenceRule()); }
-	 ruleJvmTypeReference
-{ after(grammarAccess.getJvmTypeReferenceRule()); } 
-	 EOF 
-;
-
-// Rule JvmTypeReference
-ruleJvmTypeReference
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); }
-(rule__JvmTypeReference__Alternatives)
-{ after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleArrayBrackets
-entryRuleArrayBrackets 
-:
-{ before(grammarAccess.getArrayBracketsRule()); }
-	 ruleArrayBrackets
-{ after(grammarAccess.getArrayBracketsRule()); } 
-	 EOF 
-;
-
-// Rule ArrayBrackets
-ruleArrayBrackets
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getArrayBracketsAccess().getGroup()); }
-(rule__ArrayBrackets__Group__0)
-{ after(grammarAccess.getArrayBracketsAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXFunctionTypeRef
-entryRuleXFunctionTypeRef 
-:
-{ before(grammarAccess.getXFunctionTypeRefRule()); }
-	 ruleXFunctionTypeRef
-{ after(grammarAccess.getXFunctionTypeRefRule()); } 
-	 EOF 
-;
-
-// Rule XFunctionTypeRef
-ruleXFunctionTypeRef
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getXFunctionTypeRefAccess().getGroup()); }
-(rule__XFunctionTypeRef__Group__0)
-{ after(grammarAccess.getXFunctionTypeRefAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleJvmParameterizedTypeReference
-entryRuleJvmParameterizedTypeReference 
-:
-{ before(grammarAccess.getJvmParameterizedTypeReferenceRule()); }
-	 ruleJvmParameterizedTypeReference
-{ after(grammarAccess.getJvmParameterizedTypeReferenceRule()); } 
-	 EOF 
-;
-
-// Rule JvmParameterizedTypeReference
-ruleJvmParameterizedTypeReference
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); }
-(rule__JvmParameterizedTypeReference__Group__0)
-{ after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleJvmArgumentTypeReference
-entryRuleJvmArgumentTypeReference 
-:
-{ before(grammarAccess.getJvmArgumentTypeReferenceRule()); }
-	 ruleJvmArgumentTypeReference
-{ after(grammarAccess.getJvmArgumentTypeReferenceRule()); } 
-	 EOF 
-;
-
-// Rule JvmArgumentTypeReference
-ruleJvmArgumentTypeReference
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); }
-(rule__JvmArgumentTypeReference__Alternatives)
-{ after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleJvmWildcardTypeReference
-entryRuleJvmWildcardTypeReference 
-:
-{ before(grammarAccess.getJvmWildcardTypeReferenceRule()); }
-	 ruleJvmWildcardTypeReference
-{ after(grammarAccess.getJvmWildcardTypeReferenceRule()); } 
-	 EOF 
-;
-
-// Rule JvmWildcardTypeReference
-ruleJvmWildcardTypeReference
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); }
-(rule__JvmWildcardTypeReference__Group__0)
-{ after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleJvmUpperBound
-entryRuleJvmUpperBound 
-:
-{ before(grammarAccess.getJvmUpperBoundRule()); }
-	 ruleJvmUpperBound
-{ after(grammarAccess.getJvmUpperBoundRule()); } 
-	 EOF 
-;
-
-// Rule JvmUpperBound
-ruleJvmUpperBound
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getJvmUpperBoundAccess().getGroup()); }
-(rule__JvmUpperBound__Group__0)
-{ after(grammarAccess.getJvmUpperBoundAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleJvmUpperBoundAnded
-entryRuleJvmUpperBoundAnded 
-:
-{ before(grammarAccess.getJvmUpperBoundAndedRule()); }
-	 ruleJvmUpperBoundAnded
-{ after(grammarAccess.getJvmUpperBoundAndedRule()); } 
-	 EOF 
-;
-
-// Rule JvmUpperBoundAnded
-ruleJvmUpperBoundAnded
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); }
-(rule__JvmUpperBoundAnded__Group__0)
-{ after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleJvmLowerBound
-entryRuleJvmLowerBound 
-:
-{ before(grammarAccess.getJvmLowerBoundRule()); }
-	 ruleJvmLowerBound
-{ after(grammarAccess.getJvmLowerBoundRule()); } 
-	 EOF 
-;
-
-// Rule JvmLowerBound
-ruleJvmLowerBound
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getJvmLowerBoundAccess().getGroup()); }
-(rule__JvmLowerBound__Group__0)
-{ after(grammarAccess.getJvmLowerBoundAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleJvmLowerBoundAnded
-entryRuleJvmLowerBoundAnded 
-:
-{ before(grammarAccess.getJvmLowerBoundAndedRule()); }
-	 ruleJvmLowerBoundAnded
-{ after(grammarAccess.getJvmLowerBoundAndedRule()); } 
-	 EOF 
-;
-
-// Rule JvmLowerBoundAnded
-ruleJvmLowerBoundAnded
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); }
-(rule__JvmLowerBoundAnded__Group__0)
-{ after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-// Entry rule entryRuleQualifiedNameWithWildcard
-entryRuleQualifiedNameWithWildcard 
-:
-{ before(grammarAccess.getQualifiedNameWithWildcardRule()); }
-	 ruleQualifiedNameWithWildcard
-{ after(grammarAccess.getQualifiedNameWithWildcardRule()); } 
-	 EOF 
-;
-
-// Rule QualifiedNameWithWildcard
-ruleQualifiedNameWithWildcard
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-{ before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); }
-(rule__QualifiedNameWithWildcard__Group__0)
-{ after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Entry rule entryRuleXImportSection
-entryRuleXImportSection 
-:
-{ before(grammarAccess.getXImportSectionRule()); }
-	 ruleXImportSection
-{ after(grammarAccess.getXImportSectionRule()); } 
-	 EOF 
-;
-
-// Rule XImportSection
-ruleXImportSection
-    @init {
-		int stackSize = keepStackSize();
-    }
-	:
-(
-(
-{ before(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); }
-(rule__XImportSection__ImportDeclarationsAssignment)
-{ after(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); }
-)
-(
-{ before(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); }
-(rule__XImportSection__ImportDeclarationsAssignment)*
-{ after(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); }
-)
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-// Rule ServiceExecutionModeEnum
-ruleServiceExecutionModeEnum
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getServiceExecutionModeEnumAccess().getAlternatives()); }
-(rule__ServiceExecutionModeEnum__Alternatives)
-{ after(grammarAccess.getServiceExecutionModeEnumAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Rule EndEventHandlingEnum
-ruleEndEventHandlingEnum
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getEndEventHandlingEnumAccess().getAlternatives()); }
-(rule__EndEventHandlingEnum__Alternatives)
-{ after(grammarAccess.getEndEventHandlingEnumAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-// Rule IconsEnum
-ruleIconsEnum
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getIconsEnumAccess().getAlternatives()); }
-(rule__IconsEnum__Alternatives)
-{ after(grammarAccess.getIconsEnumAccess().getAlternatives()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-rule__BlipItem__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipItemAccess().getBlipStartEventParserRuleCall_0()); }
-	ruleBlipStartEvent
-{ after(grammarAccess.getBlipItemAccess().getBlipStartEventParserRuleCall_0()); }
-)
-
-    |(
-{ before(grammarAccess.getBlipItemAccess().getBlipEndEventParserRuleCall_1()); }
-	ruleBlipEndEvent
-{ after(grammarAccess.getBlipItemAccess().getBlipEndEventParserRuleCall_1()); }
-)
-
-    |(
-{ before(grammarAccess.getBlipItemAccess().getBlipUserTaskParserRuleCall_2()); }
-	ruleBlipUserTask
-{ after(grammarAccess.getBlipItemAccess().getBlipUserTaskParserRuleCall_2()); }
-)
-
-    |(
-{ before(grammarAccess.getBlipItemAccess().getBlipCallActivityParserRuleCall_3()); }
-	ruleBlipCallActivity
-{ after(grammarAccess.getBlipItemAccess().getBlipCallActivityParserRuleCall_3()); }
-)
-
-    |(
-{ before(grammarAccess.getBlipItemAccess().getBlipScriptTaskParserRuleCall_4()); }
-	ruleBlipScriptTask
-{ after(grammarAccess.getBlipItemAccess().getBlipScriptTaskParserRuleCall_4()); }
-)
-
-    |(
-{ before(grammarAccess.getBlipItemAccess().getBlipServiceTaskParserRuleCall_5()); }
-	ruleBlipServiceTask
-{ after(grammarAccess.getBlipItemAccess().getBlipServiceTaskParserRuleCall_5()); }
-)
-
-    |(
-{ before(grammarAccess.getBlipItemAccess().getBlipPersistTaskParserRuleCall_6()); }
-	ruleBlipPersistTask
-{ after(grammarAccess.getBlipItemAccess().getBlipPersistTaskParserRuleCall_6()); }
-)
-
-    |(
-{ before(grammarAccess.getBlipItemAccess().getBlipExclusiveSplitGatewayParserRuleCall_7()); }
-	ruleBlipExclusiveSplitGateway
-{ after(grammarAccess.getBlipItemAccess().getBlipExclusiveSplitGatewayParserRuleCall_7()); }
-)
-
-    |(
-{ before(grammarAccess.getBlipItemAccess().getBlipInclusiveSplitGatewayParserRuleCall_8()); }
-	ruleBlipInclusiveSplitGateway
-{ after(grammarAccess.getBlipItemAccess().getBlipInclusiveSplitGatewayParserRuleCall_8()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Alternatives_7
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getGroup_7_0()); }
-(rule__BlipServiceTask__Group_7_0__0)
-{ after(grammarAccess.getBlipServiceTaskAccess().getGroup_7_0()); }
-)
-
-    |(
-{ before(grammarAccess.getBlipServiceTaskAccess().getExecutionModeAssignment_7_1()); }
-(rule__BlipServiceTask__ExecutionModeAssignment_7_1)
-{ after(grammarAccess.getBlipServiceTaskAccess().getExecutionModeAssignment_7_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Alternatives_9
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getGroup_9_0()); }
-(rule__BlipServiceTask__Group_9_0__0)
-{ after(grammarAccess.getBlipServiceTaskAccess().getGroup_9_0()); }
-)
-
-    |(
-{ before(grammarAccess.getBlipServiceTaskAccess().getGroup_9_1()); }
-(rule__BlipServiceTask__Group_9_1__0)
-{ after(grammarAccess.getBlipServiceTaskAccess().getGroup_9_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XAnnotation__Alternatives_3_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXAnnotationAccess().getGroup_3_1_0()); }
-(rule__XAnnotation__Group_3_1_0__0)
-{ after(grammarAccess.getXAnnotationAccess().getGroup_3_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXAnnotationAccess().getValueAssignment_3_1_1()); }
-(rule__XAnnotation__ValueAssignment_3_1_1)
-{ after(grammarAccess.getXAnnotationAccess().getValueAssignment_3_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XAnnotationElementValueOrCommaList__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_0()); }
-(rule__XAnnotationElementValueOrCommaList__Group_0__0)
-{ after(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_1()); }
-(rule__XAnnotationElementValueOrCommaList__Group_1__0)
-{ after(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XAnnotationElementValue__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXAnnotationElementValueAccess().getGroup_0()); }
-(rule__XAnnotationElementValue__Group_0__0)
-{ after(grammarAccess.getXAnnotationElementValueAccess().getGroup_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXAnnotationElementValueAccess().getXAnnotationOrExpressionParserRuleCall_1()); }
-	ruleXAnnotationOrExpression
-{ after(grammarAccess.getXAnnotationElementValueAccess().getXAnnotationOrExpressionParserRuleCall_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XAnnotationOrExpression__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXAnnotationOrExpressionAccess().getXAnnotationParserRuleCall_0()); }
-	ruleXAnnotation
-{ after(grammarAccess.getXAnnotationOrExpressionAccess().getXAnnotationParserRuleCall_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXAnnotationOrExpressionAccess().getXExpressionParserRuleCall_1()); }
-	ruleXExpression
-{ after(grammarAccess.getXAnnotationOrExpressionAccess().getXExpressionParserRuleCall_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XAssignment__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXAssignmentAccess().getGroup_0()); }
-(rule__XAssignment__Group_0__0)
-{ after(grammarAccess.getXAssignmentAccess().getGroup_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXAssignmentAccess().getGroup_1()); }
-(rule__XAssignment__Group_1__0)
-{ after(grammarAccess.getXAssignmentAccess().getGroup_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__OpMultiAssign__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getOpMultiAssignAccess().getPlusSignEqualsSignKeyword_0()); }
-
-	'+=' 
-
-{ after(grammarAccess.getOpMultiAssignAccess().getPlusSignEqualsSignKeyword_0()); }
-)
-
-    |(
-{ before(grammarAccess.getOpMultiAssignAccess().getHyphenMinusEqualsSignKeyword_1()); }
-
-	'-=' 
-
-{ after(grammarAccess.getOpMultiAssignAccess().getHyphenMinusEqualsSignKeyword_1()); }
-)
-
-    |(
-{ before(grammarAccess.getOpMultiAssignAccess().getAsteriskEqualsSignKeyword_2()); }
-
-	'*=' 
-
-{ after(grammarAccess.getOpMultiAssignAccess().getAsteriskEqualsSignKeyword_2()); }
-)
-
-    |(
-{ before(grammarAccess.getOpMultiAssignAccess().getSolidusEqualsSignKeyword_3()); }
-
-	'/=' 
-
-{ after(grammarAccess.getOpMultiAssignAccess().getSolidusEqualsSignKeyword_3()); }
-)
-
-    |(
-{ before(grammarAccess.getOpMultiAssignAccess().getPercentSignEqualsSignKeyword_4()); }
-
-	'%=' 
-
-{ after(grammarAccess.getOpMultiAssignAccess().getPercentSignEqualsSignKeyword_4()); }
-)
-
-    |(
-{ before(grammarAccess.getOpMultiAssignAccess().getGroup_5()); }
-(rule__OpMultiAssign__Group_5__0)
-{ after(grammarAccess.getOpMultiAssignAccess().getGroup_5()); }
-)
-
-    |(
-{ before(grammarAccess.getOpMultiAssignAccess().getGroup_6()); }
-(rule__OpMultiAssign__Group_6__0)
-{ after(grammarAccess.getOpMultiAssignAccess().getGroup_6()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__OpEquality__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getOpEqualityAccess().getEqualsSignEqualsSignKeyword_0()); }
-
-	'==' 
-
-{ after(grammarAccess.getOpEqualityAccess().getEqualsSignEqualsSignKeyword_0()); }
-)
-
-    |(
-{ before(grammarAccess.getOpEqualityAccess().getExclamationMarkEqualsSignKeyword_1()); }
-
-	'!=' 
-
-{ after(grammarAccess.getOpEqualityAccess().getExclamationMarkEqualsSignKeyword_1()); }
-)
-
-    |(
-{ before(grammarAccess.getOpEqualityAccess().getEqualsSignEqualsSignEqualsSignKeyword_2()); }
-
-	'===' 
-
-{ after(grammarAccess.getOpEqualityAccess().getEqualsSignEqualsSignEqualsSignKeyword_2()); }
-)
-
-    |(
-{ before(grammarAccess.getOpEqualityAccess().getExclamationMarkEqualsSignEqualsSignKeyword_3()); }
-
-	'!==' 
-
-{ after(grammarAccess.getOpEqualityAccess().getExclamationMarkEqualsSignEqualsSignKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XRelationalExpression__Alternatives_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXRelationalExpressionAccess().getGroup_1_0()); }
-(rule__XRelationalExpression__Group_1_0__0)
-{ after(grammarAccess.getXRelationalExpressionAccess().getGroup_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXRelationalExpressionAccess().getGroup_1_1()); }
-(rule__XRelationalExpression__Group_1_1__0)
-{ after(grammarAccess.getXRelationalExpressionAccess().getGroup_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__OpCompare__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getOpCompareAccess().getGreaterThanSignEqualsSignKeyword_0()); }
-
-	'>=' 
-
-{ after(grammarAccess.getOpCompareAccess().getGreaterThanSignEqualsSignKeyword_0()); }
-)
-
-    |(
-{ before(grammarAccess.getOpCompareAccess().getGroup_1()); }
-(rule__OpCompare__Group_1__0)
-{ after(grammarAccess.getOpCompareAccess().getGroup_1()); }
-)
-
-    |(
-{ before(grammarAccess.getOpCompareAccess().getGreaterThanSignKeyword_2()); }
-
-	'>' 
-
-{ after(grammarAccess.getOpCompareAccess().getGreaterThanSignKeyword_2()); }
-)
-
-    |(
-{ before(grammarAccess.getOpCompareAccess().getLessThanSignKeyword_3()); }
-
-	'<' 
-
-{ after(grammarAccess.getOpCompareAccess().getLessThanSignKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__OpOther__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); }
-
-	'->' 
-
-{ after(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); }
-)
-
-    |(
-{ before(grammarAccess.getOpOtherAccess().getFullStopFullStopLessThanSignKeyword_1()); }
-
-	'..<' 
-
-{ after(grammarAccess.getOpOtherAccess().getFullStopFullStopLessThanSignKeyword_1()); }
-)
-
-    |(
-{ before(grammarAccess.getOpOtherAccess().getGroup_2()); }
-(rule__OpOther__Group_2__0)
-{ after(grammarAccess.getOpOtherAccess().getGroup_2()); }
-)
-
-    |(
-{ before(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_3()); }
-
-	'..' 
-
-{ after(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_3()); }
-)
-
-    |(
-{ before(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_4()); }
-
-	'=>' 
-
-{ after(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_4()); }
-)
-
-    |(
-{ before(grammarAccess.getOpOtherAccess().getGroup_5()); }
-(rule__OpOther__Group_5__0)
-{ after(grammarAccess.getOpOtherAccess().getGroup_5()); }
-)
-
-    |(
-{ before(grammarAccess.getOpOtherAccess().getGroup_6()); }
-(rule__OpOther__Group_6__0)
-{ after(grammarAccess.getOpOtherAccess().getGroup_6()); }
-)
-
-    |(
-{ before(grammarAccess.getOpOtherAccess().getLessThanSignGreaterThanSignKeyword_7()); }
-
-	'<>' 
-
-{ after(grammarAccess.getOpOtherAccess().getLessThanSignGreaterThanSignKeyword_7()); }
-)
-
-    |(
-{ before(grammarAccess.getOpOtherAccess().getQuestionMarkColonKeyword_8()); }
-
-	'?:' 
-
-{ after(grammarAccess.getOpOtherAccess().getQuestionMarkColonKeyword_8()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__OpOther__Alternatives_5_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getOpOtherAccess().getGroup_5_1_0()); }
-(rule__OpOther__Group_5_1_0__0)
-{ after(grammarAccess.getOpOtherAccess().getGroup_5_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getOpOtherAccess().getGreaterThanSignKeyword_5_1_1()); }
-
-	'>' 
-
-{ after(grammarAccess.getOpOtherAccess().getGreaterThanSignKeyword_5_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__OpOther__Alternatives_6_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getOpOtherAccess().getGroup_6_1_0()); }
-(rule__OpOther__Group_6_1_0__0)
-{ after(grammarAccess.getOpOtherAccess().getGroup_6_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getOpOtherAccess().getLessThanSignKeyword_6_1_1()); }
-
-	'<' 
-
-{ after(grammarAccess.getOpOtherAccess().getLessThanSignKeyword_6_1_1()); }
-)
-
-    |(
-{ before(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_6_1_2()); }
-
-	'=>' 
-
-{ after(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_6_1_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__OpAdd__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getOpAddAccess().getPlusSignKeyword_0()); }
-
-	'+' 
-
-{ after(grammarAccess.getOpAddAccess().getPlusSignKeyword_0()); }
-)
-
-    |(
-{ before(grammarAccess.getOpAddAccess().getHyphenMinusKeyword_1()); }
-
-	'-' 
-
-{ after(grammarAccess.getOpAddAccess().getHyphenMinusKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__OpMulti__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getOpMultiAccess().getAsteriskKeyword_0()); }
-
-	'*' 
-
-{ after(grammarAccess.getOpMultiAccess().getAsteriskKeyword_0()); }
-)
-
-    |(
-{ before(grammarAccess.getOpMultiAccess().getAsteriskAsteriskKeyword_1()); }
-
-	'**' 
-
-{ after(grammarAccess.getOpMultiAccess().getAsteriskAsteriskKeyword_1()); }
-)
-
-    |(
-{ before(grammarAccess.getOpMultiAccess().getSolidusKeyword_2()); }
-
-	'/' 
-
-{ after(grammarAccess.getOpMultiAccess().getSolidusKeyword_2()); }
-)
-
-    |(
-{ before(grammarAccess.getOpMultiAccess().getPercentSignKeyword_3()); }
-
-	'%' 
-
-{ after(grammarAccess.getOpMultiAccess().getPercentSignKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XUnaryOperation__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXUnaryOperationAccess().getGroup_0()); }
-(rule__XUnaryOperation__Group_0__0)
-{ after(grammarAccess.getXUnaryOperationAccess().getGroup_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXUnaryOperationAccess().getXCastedExpressionParserRuleCall_1()); }
-	ruleXCastedExpression
-{ after(grammarAccess.getXUnaryOperationAccess().getXCastedExpressionParserRuleCall_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__OpUnary__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getOpUnaryAccess().getExclamationMarkKeyword_0()); }
-
-	'!' 
-
-{ after(grammarAccess.getOpUnaryAccess().getExclamationMarkKeyword_0()); }
-)
-
-    |(
-{ before(grammarAccess.getOpUnaryAccess().getHyphenMinusKeyword_1()); }
-
-	'-' 
-
-{ after(grammarAccess.getOpUnaryAccess().getHyphenMinusKeyword_1()); }
-)
-
-    |(
-{ before(grammarAccess.getOpUnaryAccess().getPlusSignKeyword_2()); }
-
-	'+' 
-
-{ after(grammarAccess.getOpUnaryAccess().getPlusSignKeyword_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__OpPostfix__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getOpPostfixAccess().getPlusSignPlusSignKeyword_0()); }
-
-	'++' 
-
-{ after(grammarAccess.getOpPostfixAccess().getPlusSignPlusSignKeyword_0()); }
-)
-
-    |(
-{ before(grammarAccess.getOpPostfixAccess().getHyphenMinusHyphenMinusKeyword_1()); }
-
-	'--' 
-
-{ after(grammarAccess.getOpPostfixAccess().getHyphenMinusHyphenMinusKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XMemberFeatureCall__Alternatives_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_0()); }
-(rule__XMemberFeatureCall__Group_1_0__0)
-{ after(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1()); }
-(rule__XMemberFeatureCall__Group_1_1__0)
-{ after(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XMemberFeatureCall__Alternatives_1_0_0_0_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXMemberFeatureCallAccess().getFullStopKeyword_1_0_0_0_1_0()); }
-
-	'.' 
-
-{ after(grammarAccess.getXMemberFeatureCallAccess().getFullStopKeyword_1_0_0_0_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXMemberFeatureCallAccess().getExplicitStaticAssignment_1_0_0_0_1_1()); }
-(rule__XMemberFeatureCall__ExplicitStaticAssignment_1_0_0_0_1_1)
-{ after(grammarAccess.getXMemberFeatureCallAccess().getExplicitStaticAssignment_1_0_0_0_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XMemberFeatureCall__Alternatives_1_1_0_0_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXMemberFeatureCallAccess().getFullStopKeyword_1_1_0_0_1_0()); }
-
-	'.' 
-
-{ after(grammarAccess.getXMemberFeatureCallAccess().getFullStopKeyword_1_1_0_0_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXMemberFeatureCallAccess().getNullSafeAssignment_1_1_0_0_1_1()); }
-(rule__XMemberFeatureCall__NullSafeAssignment_1_1_0_0_1_1)
-{ after(grammarAccess.getXMemberFeatureCallAccess().getNullSafeAssignment_1_1_0_0_1_1()); }
-)
-
-    |(
-{ before(grammarAccess.getXMemberFeatureCallAccess().getExplicitStaticAssignment_1_1_0_0_1_2()); }
-(rule__XMemberFeatureCall__ExplicitStaticAssignment_1_1_0_0_1_2)
-{ after(grammarAccess.getXMemberFeatureCallAccess().getExplicitStaticAssignment_1_1_0_0_1_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XMemberFeatureCall__Alternatives_1_1_3_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXMemberFeatureCallAccess().getMemberCallArgumentsAssignment_1_1_3_1_0()); }
-(rule__XMemberFeatureCall__MemberCallArgumentsAssignment_1_1_3_1_0)
-{ after(grammarAccess.getXMemberFeatureCallAccess().getMemberCallArgumentsAssignment_1_1_3_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1_3_1_1()); }
-(rule__XMemberFeatureCall__Group_1_1_3_1_1__0)
-{ after(grammarAccess.getXMemberFeatureCallAccess().getGroup_1_1_3_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XPrimaryExpression__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXConstructorCallParserRuleCall_0()); }
-	ruleXConstructorCall
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXConstructorCallParserRuleCall_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXBlockExpressionParserRuleCall_1()); }
-	ruleXBlockExpression
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXBlockExpressionParserRuleCall_1()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXSwitchExpressionParserRuleCall_2()); }
-	ruleXSwitchExpression
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXSwitchExpressionParserRuleCall_2()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXSynchronizedExpressionParserRuleCall_3()); }
-(	ruleXSynchronizedExpression)
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXSynchronizedExpressionParserRuleCall_3()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXFeatureCallParserRuleCall_4()); }
-	ruleXFeatureCall
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXFeatureCallParserRuleCall_4()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXLiteralParserRuleCall_5()); }
-	ruleXLiteral
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXLiteralParserRuleCall_5()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXIfExpressionParserRuleCall_6()); }
-	ruleXIfExpression
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXIfExpressionParserRuleCall_6()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXForLoopExpressionParserRuleCall_7()); }
-(	ruleXForLoopExpression)
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXForLoopExpressionParserRuleCall_7()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXBasicForLoopExpressionParserRuleCall_8()); }
-	ruleXBasicForLoopExpression
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXBasicForLoopExpressionParserRuleCall_8()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXWhileExpressionParserRuleCall_9()); }
-	ruleXWhileExpression
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXWhileExpressionParserRuleCall_9()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXDoWhileExpressionParserRuleCall_10()); }
-	ruleXDoWhileExpression
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXDoWhileExpressionParserRuleCall_10()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXThrowExpressionParserRuleCall_11()); }
-	ruleXThrowExpression
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXThrowExpressionParserRuleCall_11()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXReturnExpressionParserRuleCall_12()); }
-	ruleXReturnExpression
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXReturnExpressionParserRuleCall_12()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXTryCatchFinallyExpressionParserRuleCall_13()); }
-	ruleXTryCatchFinallyExpression
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXTryCatchFinallyExpressionParserRuleCall_13()); }
-)
-
-    |(
-{ before(grammarAccess.getXPrimaryExpressionAccess().getXParenthesizedExpressionParserRuleCall_14()); }
-	ruleXParenthesizedExpression
-{ after(grammarAccess.getXPrimaryExpressionAccess().getXParenthesizedExpressionParserRuleCall_14()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XLiteral__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXLiteralAccess().getXCollectionLiteralParserRuleCall_0()); }
-	ruleXCollectionLiteral
-{ after(grammarAccess.getXLiteralAccess().getXCollectionLiteralParserRuleCall_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXLiteralAccess().getXClosureParserRuleCall_1()); }
-(	ruleXClosure)
-{ after(grammarAccess.getXLiteralAccess().getXClosureParserRuleCall_1()); }
-)
-
-    |(
-{ before(grammarAccess.getXLiteralAccess().getXBooleanLiteralParserRuleCall_2()); }
-	ruleXBooleanLiteral
-{ after(grammarAccess.getXLiteralAccess().getXBooleanLiteralParserRuleCall_2()); }
-)
-
-    |(
-{ before(grammarAccess.getXLiteralAccess().getXNumberLiteralParserRuleCall_3()); }
-	ruleXNumberLiteral
-{ after(grammarAccess.getXLiteralAccess().getXNumberLiteralParserRuleCall_3()); }
-)
-
-    |(
-{ before(grammarAccess.getXLiteralAccess().getXNullLiteralParserRuleCall_4()); }
-	ruleXNullLiteral
-{ after(grammarAccess.getXLiteralAccess().getXNullLiteralParserRuleCall_4()); }
-)
-
-    |(
-{ before(grammarAccess.getXLiteralAccess().getXStringLiteralParserRuleCall_5()); }
-	ruleXStringLiteral
-{ after(grammarAccess.getXLiteralAccess().getXStringLiteralParserRuleCall_5()); }
-)
-
-    |(
-{ before(grammarAccess.getXLiteralAccess().getXTypeLiteralParserRuleCall_6()); }
-	ruleXTypeLiteral
-{ after(grammarAccess.getXLiteralAccess().getXTypeLiteralParserRuleCall_6()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XCollectionLiteral__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXCollectionLiteralAccess().getXSetLiteralParserRuleCall_0()); }
-	ruleXSetLiteral
-{ after(grammarAccess.getXCollectionLiteralAccess().getXSetLiteralParserRuleCall_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXCollectionLiteralAccess().getXListLiteralParserRuleCall_1()); }
-	ruleXListLiteral
-{ after(grammarAccess.getXCollectionLiteralAccess().getXListLiteralParserRuleCall_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XSwitchExpression__Alternatives_2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXSwitchExpressionAccess().getGroup_2_0()); }
-(rule__XSwitchExpression__Group_2_0__0)
-{ after(grammarAccess.getXSwitchExpressionAccess().getGroup_2_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXSwitchExpressionAccess().getGroup_2_1()); }
-(rule__XSwitchExpression__Group_2_1__0)
-{ after(grammarAccess.getXSwitchExpressionAccess().getGroup_2_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XCasePart__Alternatives_3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXCasePartAccess().getGroup_3_0()); }
-(rule__XCasePart__Group_3_0__0)
-{ after(grammarAccess.getXCasePartAccess().getGroup_3_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXCasePartAccess().getFallThroughAssignment_3_1()); }
-(rule__XCasePart__FallThroughAssignment_3_1)
-{ after(grammarAccess.getXCasePartAccess().getFallThroughAssignment_3_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XExpressionOrVarDeclaration__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXExpressionOrVarDeclarationAccess().getXVariableDeclarationParserRuleCall_0()); }
-	ruleXVariableDeclaration
-{ after(grammarAccess.getXExpressionOrVarDeclarationAccess().getXVariableDeclarationParserRuleCall_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXExpressionOrVarDeclarationAccess().getXExpressionParserRuleCall_1()); }
-	ruleXExpression
-{ after(grammarAccess.getXExpressionOrVarDeclarationAccess().getXExpressionParserRuleCall_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XVariableDeclaration__Alternatives_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXVariableDeclarationAccess().getWriteableAssignment_1_0()); }
-(rule__XVariableDeclaration__WriteableAssignment_1_0)
-{ after(grammarAccess.getXVariableDeclarationAccess().getWriteableAssignment_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXVariableDeclarationAccess().getValKeyword_1_1()); }
-
-	'val' 
-
-{ after(grammarAccess.getXVariableDeclarationAccess().getValKeyword_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XVariableDeclaration__Alternatives_2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXVariableDeclarationAccess().getGroup_2_0()); }
-(rule__XVariableDeclaration__Group_2_0__0)
-{ after(grammarAccess.getXVariableDeclarationAccess().getGroup_2_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXVariableDeclarationAccess().getNameAssignment_2_1()); }
-(rule__XVariableDeclaration__NameAssignment_2_1)
-{ after(grammarAccess.getXVariableDeclarationAccess().getNameAssignment_2_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XFeatureCall__Alternatives_3_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXFeatureCallAccess().getFeatureCallArgumentsAssignment_3_1_0()); }
-(rule__XFeatureCall__FeatureCallArgumentsAssignment_3_1_0)
-{ after(grammarAccess.getXFeatureCallAccess().getFeatureCallArgumentsAssignment_3_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXFeatureCallAccess().getGroup_3_1_1()); }
-(rule__XFeatureCall__Group_3_1_1__0)
-{ after(grammarAccess.getXFeatureCallAccess().getGroup_3_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__FeatureCallID__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getFeatureCallIDAccess().getValidIDParserRuleCall_0()); }
-	ruleValidID
-{ after(grammarAccess.getFeatureCallIDAccess().getValidIDParserRuleCall_0()); }
-)
-
-    |(
-{ before(grammarAccess.getFeatureCallIDAccess().getExtendsKeyword_1()); }
-
-	'extends' 
-
-{ after(grammarAccess.getFeatureCallIDAccess().getExtendsKeyword_1()); }
-)
-
-    |(
-{ before(grammarAccess.getFeatureCallIDAccess().getStaticKeyword_2()); }
-
-	'static' 
-
-{ after(grammarAccess.getFeatureCallIDAccess().getStaticKeyword_2()); }
-)
-
-    |(
-{ before(grammarAccess.getFeatureCallIDAccess().getImportKeyword_3()); }
-
-	'import' 
-
-{ after(grammarAccess.getFeatureCallIDAccess().getImportKeyword_3()); }
-)
-
-    |(
-{ before(grammarAccess.getFeatureCallIDAccess().getExtensionKeyword_4()); }
-
-	'extension' 
-
-{ after(grammarAccess.getFeatureCallIDAccess().getExtensionKeyword_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__IdOrSuper__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getIdOrSuperAccess().getFeatureCallIDParserRuleCall_0()); }
-	ruleFeatureCallID
-{ after(grammarAccess.getIdOrSuperAccess().getFeatureCallIDParserRuleCall_0()); }
-)
-
-    |(
-{ before(grammarAccess.getIdOrSuperAccess().getSuperKeyword_1()); }
-
-	'super' 
-
-{ after(grammarAccess.getIdOrSuperAccess().getSuperKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XConstructorCall__Alternatives_4_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXConstructorCallAccess().getArgumentsAssignment_4_1_0()); }
-(rule__XConstructorCall__ArgumentsAssignment_4_1_0)
-{ after(grammarAccess.getXConstructorCallAccess().getArgumentsAssignment_4_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXConstructorCallAccess().getGroup_4_1_1()); }
-(rule__XConstructorCall__Group_4_1_1__0)
-{ after(grammarAccess.getXConstructorCallAccess().getGroup_4_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XBooleanLiteral__Alternatives_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXBooleanLiteralAccess().getFalseKeyword_1_0()); }
-
-	'false' 
-
-{ after(grammarAccess.getXBooleanLiteralAccess().getFalseKeyword_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXBooleanLiteralAccess().getIsTrueAssignment_1_1()); }
-(rule__XBooleanLiteral__IsTrueAssignment_1_1)
-{ after(grammarAccess.getXBooleanLiteralAccess().getIsTrueAssignment_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__XTryCatchFinallyExpression__Alternatives_3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup_3_0()); }
-(rule__XTryCatchFinallyExpression__Group_3_0__0)
-{ after(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup_3_0()); }
-)
-
-    |(
-{ before(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup_3_1()); }
-(rule__XTryCatchFinallyExpression__Group_3_1__0)
-{ after(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup_3_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Number__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getNumberAccess().getHEXTerminalRuleCall_0()); }
-	RULE_HEX
-{ after(grammarAccess.getNumberAccess().getHEXTerminalRuleCall_0()); }
-)
-
-    |(
-{ before(grammarAccess.getNumberAccess().getGroup_1()); }
-(rule__Number__Group_1__0)
-{ after(grammarAccess.getNumberAccess().getGroup_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Number__Alternatives_1_0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getNumberAccess().getINTTerminalRuleCall_1_0_0()); }
-	RULE_INT
-{ after(grammarAccess.getNumberAccess().getINTTerminalRuleCall_1_0_0()); }
-)
-
-    |(
-{ before(grammarAccess.getNumberAccess().getDECIMALTerminalRuleCall_1_0_1()); }
-	RULE_DECIMAL
-{ after(grammarAccess.getNumberAccess().getDECIMALTerminalRuleCall_1_0_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Number__Alternatives_1_1_1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getNumberAccess().getINTTerminalRuleCall_1_1_1_0()); }
-	RULE_INT
-{ after(grammarAccess.getNumberAccess().getINTTerminalRuleCall_1_1_1_0()); }
-)
-
-    |(
-{ before(grammarAccess.getNumberAccess().getDECIMALTerminalRuleCall_1_1_1_1()); }
-	RULE_DECIMAL
-{ after(grammarAccess.getNumberAccess().getDECIMALTerminalRuleCall_1_1_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__JvmTypeReference__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); }
-(rule__JvmTypeReference__Group_0__0)
-{ after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); }
-)
-
-    |(
-{ before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); }
-	ruleXFunctionTypeRef
-{ after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__JvmArgumentTypeReference__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); }
-	ruleJvmTypeReference
-{ after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); }
-)
-
-    |(
-{ before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); }
-	ruleJvmWildcardTypeReference
-{ after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__JvmWildcardTypeReference__Alternatives_2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); }
-(rule__JvmWildcardTypeReference__Group_2_0__0)
-{ after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); }
-)
-
-    |(
-{ before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); }
-(rule__JvmWildcardTypeReference__Group_2_1__0)
-{ after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__ServiceExecutionModeEnum__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getServiceExecutionModeEnumAccess().getSYNCEnumLiteralDeclaration_0()); }
-(	'synchron' 
-)
-{ after(grammarAccess.getServiceExecutionModeEnumAccess().getSYNCEnumLiteralDeclaration_0()); }
-)
-
-    |(
-{ before(grammarAccess.getServiceExecutionModeEnumAccess().getONEWAYEnumLiteralDeclaration_1()); }
-(	'oneway' 
-)
-{ after(grammarAccess.getServiceExecutionModeEnumAccess().getONEWAYEnumLiteralDeclaration_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__EndEventHandlingEnum__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getEndEventHandlingEnumAccess().getTERMINATES_PROCESSEnumLiteralDeclaration_0()); }
-(	'terminates process' 
-)
-{ after(grammarAccess.getEndEventHandlingEnumAccess().getTERMINATES_PROCESSEnumLiteralDeclaration_0()); }
-)
-
-    |(
-{ before(grammarAccess.getEndEventHandlingEnumAccess().getENDS_TOKEN_PATHEnumLiteralDeclaration_1()); }
-(	'ends token path' 
-)
-{ after(grammarAccess.getEndEventHandlingEnumAccess().getENDS_TOKEN_PATHEnumLiteralDeclaration_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__IconsEnum__Alternatives
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getIconsEnumAccess().getICON_PLUSEnumLiteralDeclaration_0()); }
-(	'plus' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_PLUSEnumLiteralDeclaration_0()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_MINUSEnumLiteralDeclaration_1()); }
-(	'minus' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_MINUSEnumLiteralDeclaration_1()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_INFOEnumLiteralDeclaration_2()); }
-(	'info' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_INFOEnumLiteralDeclaration_2()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_LEFTEnumLiteralDeclaration_3()); }
-(	'left' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_LEFTEnumLiteralDeclaration_3()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_UPEnumLiteralDeclaration_4()); }
-(	'up' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_UPEnumLiteralDeclaration_4()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_RIGHTEnumLiteralDeclaration_5()); }
-(	'right' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_RIGHTEnumLiteralDeclaration_5()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_DOWNEnumLiteralDeclaration_6()); }
-(	'down' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_DOWNEnumLiteralDeclaration_6()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_EXCHANGEEnumLiteralDeclaration_7()); }
-(	'exchange' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_EXCHANGEEnumLiteralDeclaration_7()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_HOMEEnumLiteralDeclaration_8()); }
-(	'home' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_HOMEEnumLiteralDeclaration_8()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_HOME_1EnumLiteralDeclaration_9()); }
-(	'home-1' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_HOME_1EnumLiteralDeclaration_9()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_UP_DIREnumLiteralDeclaration_10()); }
-(	'up-dir' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_UP_DIREnumLiteralDeclaration_10()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_RIGHT_DIREnumLiteralDeclaration_11()); }
-(	'right-dir' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_RIGHT_DIREnumLiteralDeclaration_11()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_DOWN_DIREnumLiteralDeclaration_12()); }
-(	'down-dir' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_DOWN_DIREnumLiteralDeclaration_12()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_LEFT_DIREnumLiteralDeclaration_13()); }
-(	'left-dir' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_LEFT_DIREnumLiteralDeclaration_13()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_STAREnumLiteralDeclaration_14()); }
-(	'star' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_STAREnumLiteralDeclaration_14()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_STAR_EMPTYEnumLiteralDeclaration_15()); }
-(	'star-empty' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_STAR_EMPTYEnumLiteralDeclaration_15()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_TH_LISTEnumLiteralDeclaration_16()); }
-(	'th-list' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_TH_LISTEnumLiteralDeclaration_16()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_HEART_EMPTYEnumLiteralDeclaration_17()); }
-(	'heart-empty' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_HEART_EMPTYEnumLiteralDeclaration_17()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_HEARTEnumLiteralDeclaration_18()); }
-(	'heart' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_HEARTEnumLiteralDeclaration_18()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_MUSICEnumLiteralDeclaration_19()); }
-(	'music' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_MUSICEnumLiteralDeclaration_19()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_THEnumLiteralDeclaration_20()); }
-(	'th' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_THEnumLiteralDeclaration_20()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_FLAGEnumLiteralDeclaration_21()); }
-(	'flag' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_FLAGEnumLiteralDeclaration_21()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_COGEnumLiteralDeclaration_22()); }
-(	'cog' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_COGEnumLiteralDeclaration_22()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_ATTENTIONEnumLiteralDeclaration_23()); }
-(	'attention' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_ATTENTIONEnumLiteralDeclaration_23()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_MAILEnumLiteralDeclaration_24()); }
-(	'mail' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_MAILEnumLiteralDeclaration_24()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_EDITEnumLiteralDeclaration_25()); }
-(	'edit' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_EDITEnumLiteralDeclaration_25()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_PENCILEnumLiteralDeclaration_26()); }
-(	'pencil' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_PENCILEnumLiteralDeclaration_26()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_OKEnumLiteralDeclaration_27()); }
-(	'ok' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_OKEnumLiteralDeclaration_27()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_CANCEL_1EnumLiteralDeclaration_28()); }
-(	'cancel-1' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_CANCEL_1EnumLiteralDeclaration_28()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_CANCELEnumLiteralDeclaration_29()); }
-(	'cancel' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_CANCELEnumLiteralDeclaration_29()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_CANCEL_CIRCLEEnumLiteralDeclaration_30()); }
-(	'cancel-circle' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_CANCEL_CIRCLEEnumLiteralDeclaration_30()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_HELPEnumLiteralDeclaration_31()); }
-(	'help' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_HELPEnumLiteralDeclaration_31()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_PLUS_CIRCLEEnumLiteralDeclaration_32()); }
-(	'plus-circle' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_PLUS_CIRCLEEnumLiteralDeclaration_32()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_MINUS_CIRCLEEnumLiteralDeclaration_33()); }
-(	'minus-circle' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_MINUS_CIRCLEEnumLiteralDeclaration_33()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_RIGHT_THINEnumLiteralDeclaration_34()); }
-(	'right-thin' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_RIGHT_THINEnumLiteralDeclaration_34()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_FORWARDEnumLiteralDeclaration_35()); }
-(	'forward' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_FORWARDEnumLiteralDeclaration_35()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_CWEnumLiteralDeclaration_36()); }
-(	'cw' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_CWEnumLiteralDeclaration_36()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_LEFT_THINEnumLiteralDeclaration_37()); }
-(	'left-thin' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_LEFT_THINEnumLiteralDeclaration_37()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_UP_THINEnumLiteralDeclaration_38()); }
-(	'up-thin' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_UP_THINEnumLiteralDeclaration_38()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_DOWN_THINEnumLiteralDeclaration_39()); }
-(	'down-thin' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_DOWN_THINEnumLiteralDeclaration_39()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_LEFT_BOLDEnumLiteralDeclaration_40()); }
-(	'left-bold' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_LEFT_BOLDEnumLiteralDeclaration_40()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_RIGHT_BOLDEnumLiteralDeclaration_41()); }
-(	'right-bold' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_RIGHT_BOLDEnumLiteralDeclaration_41()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_UP_BOLDEnumLiteralDeclaration_42()); }
-(	'up-bold' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_UP_BOLDEnumLiteralDeclaration_42()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_DOWN_BOLDEnumLiteralDeclaration_43()); }
-(	'down-bold' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_DOWN_BOLDEnumLiteralDeclaration_43()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_USER_ADDEnumLiteralDeclaration_44()); }
-(	'user-add' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_USER_ADDEnumLiteralDeclaration_44()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_HELP_CIRCLEEnumLiteralDeclaration_45()); }
-(	'help-circle' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_HELP_CIRCLEEnumLiteralDeclaration_45()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_INFO_CIRCLEEnumLiteralDeclaration_46()); }
-(	'info-circle' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_INFO_CIRCLEEnumLiteralDeclaration_46()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_BACKEnumLiteralDeclaration_47()); }
-(	'back' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_BACKEnumLiteralDeclaration_47()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_EYEEnumLiteralDeclaration_48()); }
-(	'eye' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_EYEEnumLiteralDeclaration_48()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_TAGEnumLiteralDeclaration_49()); }
-(	'tag' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_TAGEnumLiteralDeclaration_49()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_UPLOAD_CLOUDEnumLiteralDeclaration_50()); }
-(	'upload-cloud' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_UPLOAD_CLOUDEnumLiteralDeclaration_50()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_REPLYEnumLiteralDeclaration_51()); }
-(	'reply' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_REPLYEnumLiteralDeclaration_51()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_EXPORTEnumLiteralDeclaration_52()); }
-(	'export' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_EXPORTEnumLiteralDeclaration_52()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_PRINTEnumLiteralDeclaration_53()); }
-(	'print' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_PRINTEnumLiteralDeclaration_53()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_RETWEETEnumLiteralDeclaration_54()); }
-(	'retweet' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_RETWEETEnumLiteralDeclaration_54()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_COMMENTEnumLiteralDeclaration_55()); }
-(	'comment' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_COMMENTEnumLiteralDeclaration_55()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_VCARDEnumLiteralDeclaration_56()); }
-(	'vcard' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_VCARDEnumLiteralDeclaration_56()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_LOCATIONEnumLiteralDeclaration_57()); }
-(	'location' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_LOCATIONEnumLiteralDeclaration_57()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_TRASHEnumLiteralDeclaration_58()); }
-(	'trash' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_TRASHEnumLiteralDeclaration_58()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_RESIZE_FULLEnumLiteralDeclaration_59()); }
-(	'resize-full' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_RESIZE_FULLEnumLiteralDeclaration_59()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_RESIZE_SMALLEnumLiteralDeclaration_60()); }
-(	'resize-small' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_RESIZE_SMALLEnumLiteralDeclaration_60()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_DOWN_OPENEnumLiteralDeclaration_61()); }
-(	'down-open' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_DOWN_OPENEnumLiteralDeclaration_61()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_LEFT_OPENEnumLiteralDeclaration_62()); }
-(	'left-open' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_LEFT_OPENEnumLiteralDeclaration_62()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_RIGHT_OPENEnumLiteralDeclaration_63()); }
-(	'right-open' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_RIGHT_OPENEnumLiteralDeclaration_63()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_UP_OPENEnumLiteralDeclaration_64()); }
-(	'up-open' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_UP_OPENEnumLiteralDeclaration_64()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_ARROWS_CWEnumLiteralDeclaration_65()); }
-(	'arrows-cw' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_ARROWS_CWEnumLiteralDeclaration_65()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_CHART_PIEEnumLiteralDeclaration_66()); }
-(	'chart-pie' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_CHART_PIEEnumLiteralDeclaration_66()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_SEARCH_1EnumLiteralDeclaration_67()); }
-(	'search-1' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_SEARCH_1EnumLiteralDeclaration_67()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_USEREnumLiteralDeclaration_68()); }
-(	'user' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_USEREnumLiteralDeclaration_68()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_USERSEnumLiteralDeclaration_69()); }
-(	'users' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_USERSEnumLiteralDeclaration_69()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_MONITOREnumLiteralDeclaration_70()); }
-(	'monitor' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_MONITOREnumLiteralDeclaration_70()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_FOLDEREnumLiteralDeclaration_71()); }
-(	'folder' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_FOLDEREnumLiteralDeclaration_71()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_DOCEnumLiteralDeclaration_72()); }
-(	'doc' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_DOCEnumLiteralDeclaration_72()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_CALENDAREnumLiteralDeclaration_73()); }
-(	'calendar' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_CALENDAREnumLiteralDeclaration_73()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_CHARTEnumLiteralDeclaration_74()); }
-(	'chart' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_CHARTEnumLiteralDeclaration_74()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_ATTACHEnumLiteralDeclaration_75()); }
-(	'attach' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_ATTACHEnumLiteralDeclaration_75()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_UPLOADEnumLiteralDeclaration_76()); }
-(	'upload' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_UPLOADEnumLiteralDeclaration_76()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_DOWNLOADEnumLiteralDeclaration_77()); }
-(	'download' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_DOWNLOADEnumLiteralDeclaration_77()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_MOBILEEnumLiteralDeclaration_78()); }
-(	'mobile' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_MOBILEEnumLiteralDeclaration_78()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_CAMERAEnumLiteralDeclaration_79()); }
-(	'camera' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_CAMERAEnumLiteralDeclaration_79()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_LOCKEnumLiteralDeclaration_80()); }
-(	'lock' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_LOCKEnumLiteralDeclaration_80()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_LOCK_OPENEnumLiteralDeclaration_81()); }
-(	'lock-open' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_LOCK_OPENEnumLiteralDeclaration_81()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_BELLEnumLiteralDeclaration_82()); }
-(	'bell' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_BELLEnumLiteralDeclaration_82()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_LINKEnumLiteralDeclaration_83()); }
-(	'link' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_LINKEnumLiteralDeclaration_83()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_CLOCKEnumLiteralDeclaration_84()); }
-(	'clock' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_CLOCKEnumLiteralDeclaration_84()); }
-)
-
-    |(
-{ before(grammarAccess.getIconsEnumAccess().getICON_BLOCKEnumLiteralDeclaration_85()); }
-(	'block' 
-)
-{ after(grammarAccess.getIconsEnumAccess().getICON_BLOCKEnumLiteralDeclaration_85()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-rule__BlipPackage__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPackage__Group__0__Impl
-	rule__BlipPackage__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPackage__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPackageAccess().getBlipPackageAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipPackageAccess().getBlipPackageAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipPackage__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPackage__Group__1__Impl
-	rule__BlipPackage__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPackage__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPackageAccess().getPackageKeyword_1()); }
-
-	'package' 
-
-{ after(grammarAccess.getBlipPackageAccess().getPackageKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipPackage__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPackage__Group__2__Impl
-	rule__BlipPackage__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPackage__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPackageAccess().getNameAssignment_2()); }
-(rule__BlipPackage__NameAssignment_2)
-{ after(grammarAccess.getBlipPackageAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipPackage__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPackage__Group__3__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPackage__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPackageAccess().getGroup_3()); }
-(rule__BlipPackage__Group_3__0)?
-{ after(grammarAccess.getBlipPackageAccess().getGroup_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-rule__BlipPackage__Group_3__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPackage__Group_3__0__Impl
-	rule__BlipPackage__Group_3__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPackage__Group_3__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPackageAccess().getLeftCurlyBracketKeyword_3_0()); }
-
-	'{' 
-
-{ after(grammarAccess.getBlipPackageAccess().getLeftCurlyBracketKeyword_3_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipPackage__Group_3__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPackage__Group_3__1__Impl
-	rule__BlipPackage__Group_3__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPackage__Group_3__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPackageAccess().getImportSectionAssignment_3_1()); }
-(rule__BlipPackage__ImportSectionAssignment_3_1)?
-{ after(grammarAccess.getBlipPackageAccess().getImportSectionAssignment_3_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipPackage__Group_3__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPackage__Group_3__2__Impl
-	rule__BlipPackage__Group_3__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPackage__Group_3__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPackageAccess().getBlipsAssignment_3_2()); }
-(rule__BlipPackage__BlipsAssignment_3_2)*
-{ after(grammarAccess.getBlipPackageAccess().getBlipsAssignment_3_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipPackage__Group_3__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPackage__Group_3__3__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPackage__Group_3__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPackageAccess().getRightCurlyBracketKeyword_3_3()); }
-
-	'}' 
-
-{ after(grammarAccess.getBlipPackageAccess().getRightCurlyBracketKeyword_3_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-rule__Blip__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group__0__Impl
-	rule__Blip__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getBlipAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipAccess().getBlipAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group__1__Impl
-	rule__Blip__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getProcessKeyword_1()); }
-
-	'process' 
-
-{ after(grammarAccess.getBlipAccess().getProcessKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group__2__Impl
-	rule__Blip__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getNameAssignment_2()); }
-(rule__Blip__NameAssignment_2)
-{ after(grammarAccess.getBlipAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group__3__Impl
-	rule__Blip__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getUnorderedGroup_3()); }
-(rule__Blip__UnorderedGroup_3)
-{ after(grammarAccess.getBlipAccess().getUnorderedGroup_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group__4__Impl
-	rule__Blip__Group__5
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getGroup_4()); }
-(rule__Blip__Group_4__0)?
-{ after(grammarAccess.getBlipAccess().getGroup_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group__5
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group__5__Impl
-	rule__Blip__Group__6
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group__5__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getGroup_5()); }
-(rule__Blip__Group_5__0)?
-{ after(grammarAccess.getBlipAccess().getGroup_5()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group__6
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group__6__Impl
-	rule__Blip__Group__7
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group__6__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getBpmnKeyword_6()); }
-
-	'bpmn' 
-
-{ after(grammarAccess.getBlipAccess().getBpmnKeyword_6()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group__7
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group__7__Impl
-	rule__Blip__Group__8
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group__7__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getProcessAssignment_7()); }
-(rule__Blip__ProcessAssignment_7)
-{ after(grammarAccess.getBlipAccess().getProcessAssignment_7()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group__8
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group__8__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group__8__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getGroup_8()); }
-(rule__Blip__Group_8__0)?
-{ after(grammarAccess.getBlipAccess().getGroup_8()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rule__Blip__Group_3_0__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_3_0__0__Impl
-	rule__Blip__Group_3_0__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_3_0__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getHasImageAssignment_3_0_0()); }
-(rule__Blip__HasImageAssignment_3_0_0)
-{ after(grammarAccess.getBlipAccess().getHasImageAssignment_3_0_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group_3_0__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_3_0__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_3_0__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getImageAssignment_3_0_1()); }
-(rule__Blip__ImageAssignment_3_0_1)
-{ after(grammarAccess.getBlipAccess().getImageAssignment_3_0_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__Blip__Group_3_1__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_3_1__0__Impl
-	rule__Blip__Group_3_1__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_3_1__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getHasIconAssignment_3_1_0()); }
-(rule__Blip__HasIconAssignment_3_1_0)
-{ after(grammarAccess.getBlipAccess().getHasIconAssignment_3_1_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group_3_1__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_3_1__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_3_1__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getIconAssignment_3_1_1()); }
-(rule__Blip__IconAssignment_3_1_1)
-{ after(grammarAccess.getBlipAccess().getIconAssignment_3_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__Blip__Group_3_3__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_3_3__0__Impl
-	rule__Blip__Group_3_3__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_3_3__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getDescriptionAssignment_3_3_0()); }
-(rule__Blip__DescriptionAssignment_3_3_0)
-{ after(grammarAccess.getBlipAccess().getDescriptionAssignment_3_3_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group_3_3__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_3_3__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_3_3__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getDescriptionValueAssignment_3_3_1()); }
-(rule__Blip__DescriptionValueAssignment_3_3_1)
-{ after(grammarAccess.getBlipAccess().getDescriptionValueAssignment_3_3_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__Blip__Group_4__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_4__0__Impl
-	rule__Blip__Group_4__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_4__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getWorkloadKeyword_4_0()); }
-
-	'workload' 
-
-{ after(grammarAccess.getBlipAccess().getWorkloadKeyword_4_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group_4__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_4__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_4__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getWorkloadAssignment_4_1()); }
-(rule__Blip__WorkloadAssignment_4_1)
-{ after(grammarAccess.getBlipAccess().getWorkloadAssignment_4_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__Blip__Group_5__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_5__0__Impl
-	rule__Blip__Group_5__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_5__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getFunctiongroupKeyword_5_0()); }
-
-	'functiongroup' 
-
-{ after(grammarAccess.getBlipAccess().getFunctiongroupKeyword_5_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group_5__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_5__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_5__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getFunctionGroupAssignment_5_1()); }
-(rule__Blip__FunctionGroupAssignment_5_1)
-{ after(grammarAccess.getBlipAccess().getFunctionGroupAssignment_5_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__Blip__Group_8__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_8__0__Impl
-	rule__Blip__Group_8__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_8__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getLeftCurlyBracketKeyword_8_0()); }
-
-	'{' 
-
-{ after(grammarAccess.getBlipAccess().getLeftCurlyBracketKeyword_8_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group_8__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_8__1__Impl
-	rule__Blip__Group_8__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_8__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getItemsAssignment_8_1()); }
-(rule__Blip__ItemsAssignment_8_1)*
-{ after(grammarAccess.getBlipAccess().getItemsAssignment_8_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__Blip__Group_8__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__Blip__Group_8__2__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__Blip__Group_8__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipAccess().getRightCurlyBracketKeyword_8_2()); }
-
-	'}' 
-
-{ after(grammarAccess.getBlipAccess().getRightCurlyBracketKeyword_8_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-rule__BlipWorkload__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipWorkload__Group__0__Impl
-	rule__BlipWorkload__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipWorkload__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipWorkloadAccess().getBlipWorkloadAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipWorkloadAccess().getBlipWorkloadAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipWorkload__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipWorkload__Group__1__Impl
-	rule__BlipWorkload__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipWorkload__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipWorkloadAccess().getUsingKeyword_1()); }
-
-	'using' 
-
-{ after(grammarAccess.getBlipWorkloadAccess().getUsingKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipWorkload__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipWorkload__Group__2__Impl
-	rule__BlipWorkload__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipWorkload__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipWorkloadAccess().getSourceAssignment_2()); }
-(rule__BlipWorkload__SourceAssignment_2)
-{ after(grammarAccess.getBlipWorkloadAccess().getSourceAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipWorkload__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipWorkload__Group__3__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipWorkload__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipWorkloadAccess().getGroup_3()); }
-(rule__BlipWorkload__Group_3__0)?
-{ after(grammarAccess.getBlipWorkloadAccess().getGroup_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-rule__BlipWorkload__Group_3__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipWorkload__Group_3__0__Impl
-	rule__BlipWorkload__Group_3__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipWorkload__Group_3__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipWorkloadAccess().getPredefineKeyword_3_0()); }
-
-	'predefine' 
-
-{ after(grammarAccess.getBlipWorkloadAccess().getPredefineKeyword_3_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipWorkload__Group_3__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipWorkload__Group_3__1__Impl
-	rule__BlipWorkload__Group_3__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipWorkload__Group_3__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipWorkloadAccess().getLeftCurlyBracketKeyword_3_1()); }
-
-	'{' 
-
-{ after(grammarAccess.getBlipWorkloadAccess().getLeftCurlyBracketKeyword_3_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipWorkload__Group_3__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipWorkload__Group_3__2__Impl
-	rule__BlipWorkload__Group_3__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipWorkload__Group_3__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipWorkloadAccess().getFiltersAssignment_3_2()); }
-(rule__BlipWorkload__FiltersAssignment_3_2)*
-{ after(grammarAccess.getBlipWorkloadAccess().getFiltersAssignment_3_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipWorkload__Group_3__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipWorkload__Group_3__3__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipWorkload__Group_3__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipWorkloadAccess().getRightCurlyBracketKeyword_3_3()); }
-
-	'}' 
-
-{ after(grammarAccess.getBlipWorkloadAccess().getRightCurlyBracketKeyword_3_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-rule__BlipFilter__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipFilter__Group__0__Impl
-	rule__BlipFilter__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipFilter__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipFilterAccess().getBlipFilterAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipFilterAccess().getBlipFilterAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipFilter__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipFilter__Group__1__Impl
-	rule__BlipFilter__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipFilter__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipFilterAccess().getSetKeyword_1()); }
-
-	'set' 
-
-{ after(grammarAccess.getBlipFilterAccess().getSetKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipFilter__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipFilter__Group__2__Impl
-	rule__BlipFilter__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipFilter__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipFilterAccess().getFilterNameAssignment_2()); }
-(rule__BlipFilter__FilterNameAssignment_2)
-{ after(grammarAccess.getBlipFilterAccess().getFilterNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipFilter__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipFilter__Group__3__Impl
-	rule__BlipFilter__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipFilter__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipFilterAccess().getToKeyword_3()); }
-
-	'to' 
-
-{ after(grammarAccess.getBlipFilterAccess().getToKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipFilter__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipFilter__Group__4__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipFilter__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipFilterAccess().getFilterValueAssignment_4()); }
-(rule__BlipFilter__FilterValueAssignment_4)
-{ after(grammarAccess.getBlipFilterAccess().getFilterValueAssignment_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-rule__BlipDto__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipDto__Group__0__Impl
-	rule__BlipDto__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipDto__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipDtoAccess().getBlipDtoAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipDtoAccess().getBlipDtoAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipDto__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipDto__Group__1__Impl
-	rule__BlipDto__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipDto__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipDtoAccess().getDtoKeyword_1()); }
-
-	'dto' 
-
-{ after(grammarAccess.getBlipDtoAccess().getDtoKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipDto__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipDto__Group__2__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipDto__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipDtoAccess().getDtoRefAssignment_2()); }
-(rule__BlipDto__DtoRefAssignment_2)
-{ after(grammarAccess.getBlipDtoAccess().getDtoRefAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-rule__BlipStartEvent__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipStartEvent__Group__0__Impl
-	rule__BlipStartEvent__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipStartEvent__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipStartEventAccess().getBlipStartEventAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipStartEventAccess().getBlipStartEventAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipStartEvent__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipStartEvent__Group__1__Impl
-	rule__BlipStartEvent__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipStartEvent__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipStartEventAccess().getStarteventKeyword_1()); }
-
-	'startevent' 
-
-{ after(grammarAccess.getBlipStartEventAccess().getStarteventKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipStartEvent__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipStartEvent__Group__2__Impl
-	rule__BlipStartEvent__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipStartEvent__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipStartEventAccess().getNameAssignment_2()); }
-(rule__BlipStartEvent__NameAssignment_2)
-{ after(grammarAccess.getBlipStartEventAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipStartEvent__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipStartEvent__Group__3__Impl
-	rule__BlipStartEvent__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipStartEvent__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipStartEventAccess().getForKeyword_3()); }
-
-	'for' 
-
-{ after(grammarAccess.getBlipStartEventAccess().getForKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipStartEvent__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipStartEvent__Group__4__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipStartEvent__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipStartEventAccess().getEventAssignment_4()); }
-(rule__BlipStartEvent__EventAssignment_4)
-{ after(grammarAccess.getBlipStartEventAccess().getEventAssignment_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-rule__BlipEndEvent__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipEndEvent__Group__0__Impl
-	rule__BlipEndEvent__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipEndEvent__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipEndEventAccess().getBlipEndEventAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipEndEventAccess().getBlipEndEventAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipEndEvent__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipEndEvent__Group__1__Impl
-	rule__BlipEndEvent__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipEndEvent__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipEndEventAccess().getEndeventKeyword_1()); }
-
-	'endevent' 
-
-{ after(grammarAccess.getBlipEndEventAccess().getEndeventKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipEndEvent__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipEndEvent__Group__2__Impl
-	rule__BlipEndEvent__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipEndEvent__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipEndEventAccess().getNameAssignment_2()); }
-(rule__BlipEndEvent__NameAssignment_2)
-{ after(grammarAccess.getBlipEndEventAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipEndEvent__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipEndEvent__Group__3__Impl
-	rule__BlipEndEvent__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipEndEvent__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipEndEventAccess().getForKeyword_3()); }
-
-	'for' 
-
-{ after(grammarAccess.getBlipEndEventAccess().getForKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipEndEvent__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipEndEvent__Group__4__Impl
-	rule__BlipEndEvent__Group__5
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipEndEvent__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipEndEventAccess().getEventAssignment_4()); }
-(rule__BlipEndEvent__EventAssignment_4)
-{ after(grammarAccess.getBlipEndEventAccess().getEventAssignment_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipEndEvent__Group__5
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipEndEvent__Group__5__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipEndEvent__Group__5__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipEndEventAccess().getEndHandlingAssignment_5()); }
-(rule__BlipEndEvent__EndHandlingAssignment_5)
-{ after(grammarAccess.getBlipEndEventAccess().getEndHandlingAssignment_5()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rule__BlipUserTask__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group__0__Impl
-	rule__BlipUserTask__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getBlipUserTaskAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipUserTaskAccess().getBlipUserTaskAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipUserTask__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group__1__Impl
-	rule__BlipUserTask__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getUsertaskKeyword_1()); }
-
-	'usertask' 
-
-{ after(grammarAccess.getBlipUserTaskAccess().getUsertaskKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipUserTask__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group__2__Impl
-	rule__BlipUserTask__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getNameAssignment_2()); }
-(rule__BlipUserTask__NameAssignment_2)
-{ after(grammarAccess.getBlipUserTaskAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipUserTask__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group__3__Impl
-	rule__BlipUserTask__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getForKeyword_3()); }
-
-	'for' 
-
-{ after(grammarAccess.getBlipUserTaskAccess().getForKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipUserTask__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group__4__Impl
-	rule__BlipUserTask__Group__5
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getTaskAssignment_4()); }
-(rule__BlipUserTask__TaskAssignment_4)
-{ after(grammarAccess.getBlipUserTaskAccess().getTaskAssignment_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipUserTask__Group__5
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group__5__Impl
-	rule__BlipUserTask__Group__6
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group__5__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getGroup_5()); }
-(rule__BlipUserTask__Group_5__0)?
-{ after(grammarAccess.getBlipUserTaskAccess().getGroup_5()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipUserTask__Group__6
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group__6__Impl
-	rule__BlipUserTask__Group__7
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group__6__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getGroup_6()); }
-(rule__BlipUserTask__Group_6__0)?
-{ after(grammarAccess.getBlipUserTaskAccess().getGroup_6()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipUserTask__Group__7
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group__7__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group__7__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getGroup_7()); }
-(rule__BlipUserTask__Group_7__0)?
-{ after(grammarAccess.getBlipUserTaskAccess().getGroup_7()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rule__BlipUserTask__Group_5__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group_5__0__Impl
-	rule__BlipUserTask__Group_5__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group_5__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getOperatesOnKeyword_5_0()); }
-
-	'operates on' 
-
-{ after(grammarAccess.getBlipUserTaskAccess().getOperatesOnKeyword_5_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipUserTask__Group_5__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group_5__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group_5__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getDtoPathAssignment_5_1()); }
-(rule__BlipUserTask__DtoPathAssignment_5_1)
-{ after(grammarAccess.getBlipUserTaskAccess().getDtoPathAssignment_5_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__BlipUserTask__Group_6__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group_6__0__Impl
-	rule__BlipUserTask__Group_6__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group_6__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getOnentryKeyword_6_0()); }
-
-	'onentry' 
-
-{ after(grammarAccess.getBlipUserTaskAccess().getOnentryKeyword_6_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipUserTask__Group_6__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group_6__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group_6__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getOnEntryAssignment_6_1()); }
-(rule__BlipUserTask__OnEntryAssignment_6_1)
-{ after(grammarAccess.getBlipUserTaskAccess().getOnEntryAssignment_6_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__BlipUserTask__Group_7__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group_7__0__Impl
-	rule__BlipUserTask__Group_7__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group_7__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getOnexitKeyword_7_0()); }
-
-	'onexit' 
-
-{ after(grammarAccess.getBlipUserTaskAccess().getOnexitKeyword_7_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipUserTask__Group_7__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipUserTask__Group_7__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipUserTask__Group_7__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipUserTaskAccess().getOnExitAssignment_7_1()); }
-(rule__BlipUserTask__OnExitAssignment_7_1)
-{ after(grammarAccess.getBlipUserTaskAccess().getOnExitAssignment_7_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__BlipCallActivity__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipCallActivity__Group__0__Impl
-	rule__BlipCallActivity__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipCallActivity__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipCallActivityAccess().getBlipCallActivityAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipCallActivityAccess().getBlipCallActivityAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipCallActivity__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipCallActivity__Group__1__Impl
-	rule__BlipCallActivity__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipCallActivity__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipCallActivityAccess().getCallActivityKeyword_1()); }
-
-	'callActivity' 
-
-{ after(grammarAccess.getBlipCallActivityAccess().getCallActivityKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipCallActivity__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipCallActivity__Group__2__Impl
-	rule__BlipCallActivity__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipCallActivity__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipCallActivityAccess().getNameAssignment_2()); }
-(rule__BlipCallActivity__NameAssignment_2)
-{ after(grammarAccess.getBlipCallActivityAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipCallActivity__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipCallActivity__Group__3__Impl
-	rule__BlipCallActivity__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipCallActivity__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipCallActivityAccess().getForKeyword_3()); }
-
-	'for' 
-
-{ after(grammarAccess.getBlipCallActivityAccess().getForKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipCallActivity__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipCallActivity__Group__4__Impl
-	rule__BlipCallActivity__Group__5
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipCallActivity__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipCallActivityAccess().getCallActivityAssignment_4()); }
-(rule__BlipCallActivity__CallActivityAssignment_4)
-{ after(grammarAccess.getBlipCallActivityAccess().getCallActivityAssignment_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipCallActivity__Group__5
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipCallActivity__Group__5__Impl
-	rule__BlipCallActivity__Group__6
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipCallActivity__Group__5__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipCallActivityAccess().getGroup_5()); }
-(rule__BlipCallActivity__Group_5__0)?
-{ after(grammarAccess.getBlipCallActivityAccess().getGroup_5()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipCallActivity__Group__6
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipCallActivity__Group__6__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipCallActivity__Group__6__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipCallActivityAccess().getGroup_6()); }
-(rule__BlipCallActivity__Group_6__0)?
-{ after(grammarAccess.getBlipCallActivityAccess().getGroup_6()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rule__BlipCallActivity__Group_5__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipCallActivity__Group_5__0__Impl
-	rule__BlipCallActivity__Group_5__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipCallActivity__Group_5__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipCallActivityAccess().getOnentryKeyword_5_0()); }
-
-	'onentry' 
-
-{ after(grammarAccess.getBlipCallActivityAccess().getOnentryKeyword_5_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipCallActivity__Group_5__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipCallActivity__Group_5__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipCallActivity__Group_5__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipCallActivityAccess().getOnEntryAssignment_5_1()); }
-(rule__BlipCallActivity__OnEntryAssignment_5_1)
-{ after(grammarAccess.getBlipCallActivityAccess().getOnEntryAssignment_5_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__BlipCallActivity__Group_6__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipCallActivity__Group_6__0__Impl
-	rule__BlipCallActivity__Group_6__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipCallActivity__Group_6__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipCallActivityAccess().getOnexitKeyword_6_0()); }
-
-	'onexit' 
-
-{ after(grammarAccess.getBlipCallActivityAccess().getOnexitKeyword_6_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipCallActivity__Group_6__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipCallActivity__Group_6__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipCallActivity__Group_6__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipCallActivityAccess().getOnExitAssignment_6_1()); }
-(rule__BlipCallActivity__OnExitAssignment_6_1)
-{ after(grammarAccess.getBlipCallActivityAccess().getOnExitAssignment_6_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__BlipScriptTask__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipScriptTask__Group__0__Impl
-	rule__BlipScriptTask__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipScriptTask__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipScriptTaskAccess().getBlipScriptTaskAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipScriptTaskAccess().getBlipScriptTaskAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipScriptTask__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipScriptTask__Group__1__Impl
-	rule__BlipScriptTask__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipScriptTask__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipScriptTaskAccess().getScripttaskKeyword_1()); }
-
-	'scripttask' 
-
-{ after(grammarAccess.getBlipScriptTaskAccess().getScripttaskKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipScriptTask__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipScriptTask__Group__2__Impl
-	rule__BlipScriptTask__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipScriptTask__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipScriptTaskAccess().getNameAssignment_2()); }
-(rule__BlipScriptTask__NameAssignment_2)
-{ after(grammarAccess.getBlipScriptTaskAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipScriptTask__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipScriptTask__Group__3__Impl
-	rule__BlipScriptTask__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipScriptTask__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipScriptTaskAccess().getForKeyword_3()); }
-
-	'for' 
-
-{ after(grammarAccess.getBlipScriptTaskAccess().getForKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipScriptTask__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipScriptTask__Group__4__Impl
-	rule__BlipScriptTask__Group__5
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipScriptTask__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipScriptTaskAccess().getTaskAssignment_4()); }
-(rule__BlipScriptTask__TaskAssignment_4)
-{ after(grammarAccess.getBlipScriptTaskAccess().getTaskAssignment_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipScriptTask__Group__5
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipScriptTask__Group__5__Impl
-	rule__BlipScriptTask__Group__6
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipScriptTask__Group__5__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipScriptTaskAccess().getFunctionKeyword_5()); }
-
-	'function' 
-
-{ after(grammarAccess.getBlipScriptTaskAccess().getFunctionKeyword_5()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipScriptTask__Group__6
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipScriptTask__Group__6__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipScriptTask__Group__6__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipScriptTaskAccess().getFunctionAssignment_6()); }
-(rule__BlipScriptTask__FunctionAssignment_6)
-{ after(grammarAccess.getBlipScriptTaskAccess().getFunctionAssignment_6()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rule__BlipPersistTask__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPersistTask__Group__0__Impl
-	rule__BlipPersistTask__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPersistTask__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPersistTaskAccess().getBlipPersistTaskAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipPersistTaskAccess().getBlipPersistTaskAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipPersistTask__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPersistTask__Group__1__Impl
-	rule__BlipPersistTask__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPersistTask__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPersistTaskAccess().getPersisttaskKeyword_1()); }
-
-	'persisttask' 
-
-{ after(grammarAccess.getBlipPersistTaskAccess().getPersisttaskKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipPersistTask__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPersistTask__Group__2__Impl
-	rule__BlipPersistTask__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPersistTask__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPersistTaskAccess().getNameAssignment_2()); }
-(rule__BlipPersistTask__NameAssignment_2)
-{ after(grammarAccess.getBlipPersistTaskAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipPersistTask__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPersistTask__Group__3__Impl
-	rule__BlipPersistTask__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPersistTask__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPersistTaskAccess().getForKeyword_3()); }
-
-	'for' 
-
-{ after(grammarAccess.getBlipPersistTaskAccess().getForKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipPersistTask__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPersistTask__Group__4__Impl
-	rule__BlipPersistTask__Group__5
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPersistTask__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPersistTaskAccess().getTaskAssignment_4()); }
-(rule__BlipPersistTask__TaskAssignment_4)
-{ after(grammarAccess.getBlipPersistTaskAccess().getTaskAssignment_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipPersistTask__Group__5
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPersistTask__Group__5__Impl
-	rule__BlipPersistTask__Group__6
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPersistTask__Group__5__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPersistTaskAccess().getFunctionKeyword_5()); }
-
-	'function' 
-
-{ after(grammarAccess.getBlipPersistTaskAccess().getFunctionKeyword_5()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipPersistTask__Group__6
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipPersistTask__Group__6__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipPersistTask__Group__6__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipPersistTaskAccess().getFunctionAssignment_6()); }
-(rule__BlipPersistTask__FunctionAssignment_6)
-{ after(grammarAccess.getBlipPersistTaskAccess().getFunctionAssignment_6()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rule__BlipServiceTask__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group__0__Impl
-	rule__BlipServiceTask__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getBlipServiceTaskAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipServiceTaskAccess().getBlipServiceTaskAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group__1__Impl
-	rule__BlipServiceTask__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getServicetaskKeyword_1()); }
-
-	'servicetask' 
-
-{ after(grammarAccess.getBlipServiceTaskAccess().getServicetaskKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group__2__Impl
-	rule__BlipServiceTask__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getNameAssignment_2()); }
-(rule__BlipServiceTask__NameAssignment_2)
-{ after(grammarAccess.getBlipServiceTaskAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group__3__Impl
-	rule__BlipServiceTask__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getForKeyword_3()); }
-
-	'for' 
-
-{ after(grammarAccess.getBlipServiceTaskAccess().getForKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group__4__Impl
-	rule__BlipServiceTask__Group__5
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getTaskAssignment_4()); }
-(rule__BlipServiceTask__TaskAssignment_4)
-{ after(grammarAccess.getBlipServiceTaskAccess().getTaskAssignment_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group__5
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group__5__Impl
-	rule__BlipServiceTask__Group__6
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group__5__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getGroup_5()); }
-(rule__BlipServiceTask__Group_5__0)?
-{ after(grammarAccess.getBlipServiceTaskAccess().getGroup_5()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group__6
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group__6__Impl
-	rule__BlipServiceTask__Group__7
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group__6__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getRunKeyword_6()); }
-
-	'run' 
-
-{ after(grammarAccess.getBlipServiceTaskAccess().getRunKeyword_6()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group__7
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group__7__Impl
-	rule__BlipServiceTask__Group__8
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group__7__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getAlternatives_7()); }
-(rule__BlipServiceTask__Alternatives_7)
-{ after(grammarAccess.getBlipServiceTaskAccess().getAlternatives_7()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group__8
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group__8__Impl
-	rule__BlipServiceTask__Group__9
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group__8__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getAsKeyword_8()); }
-
-	'as' 
-
-{ after(grammarAccess.getBlipServiceTaskAccess().getAsKeyword_8()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group__9
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group__9__Impl
-	rule__BlipServiceTask__Group__10
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group__9__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getAlternatives_9()); }
-(rule__BlipServiceTask__Alternatives_9)
-{ after(grammarAccess.getBlipServiceTaskAccess().getAlternatives_9()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group__10
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group__10__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group__10__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getGroup_10()); }
-(rule__BlipServiceTask__Group_10__0)?
-{ after(grammarAccess.getBlipServiceTaskAccess().getGroup_10()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rule__BlipServiceTask__Group_5__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group_5__0__Impl
-	rule__BlipServiceTask__Group_5__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group_5__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getOnentryKeyword_5_0()); }
-
-	'onentry' 
-
-{ after(grammarAccess.getBlipServiceTaskAccess().getOnentryKeyword_5_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group_5__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group_5__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group_5__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getOnEntryAssignment_5_1()); }
-(rule__BlipServiceTask__OnEntryAssignment_5_1)
-{ after(grammarAccess.getBlipServiceTaskAccess().getOnEntryAssignment_5_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__BlipServiceTask__Group_7_0__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group_7_0__0__Impl
-	rule__BlipServiceTask__Group_7_0__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group_7_0__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getAsynchronWithKeyword_7_0_0()); }
-
-	'asynchron with' 
-
-{ after(grammarAccess.getBlipServiceTaskAccess().getAsynchronWithKeyword_7_0_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group_7_0__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group_7_0__1__Impl
-	rule__BlipServiceTask__Group_7_0__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group_7_0__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getTimeoutInSecsAssignment_7_0_1()); }
-(rule__BlipServiceTask__TimeoutInSecsAssignment_7_0_1)
-{ after(grammarAccess.getBlipServiceTaskAccess().getTimeoutInSecsAssignment_7_0_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group_7_0__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group_7_0__2__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group_7_0__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getSecsTimeoutKeyword_7_0_2()); }
-
-	'secs timeout' 
-
-{ after(grammarAccess.getBlipServiceTaskAccess().getSecsTimeoutKeyword_7_0_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-rule__BlipServiceTask__Group_9_0__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group_9_0__0__Impl
-	rule__BlipServiceTask__Group_9_0__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group_9_0__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getFunctionKeyword_9_0_0()); }
-
-	'function' 
-
-{ after(grammarAccess.getBlipServiceTaskAccess().getFunctionKeyword_9_0_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group_9_0__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group_9_0__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group_9_0__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getFunctionAssignment_9_0_1()); }
-(rule__BlipServiceTask__FunctionAssignment_9_0_1)
-{ after(grammarAccess.getBlipServiceTaskAccess().getFunctionAssignment_9_0_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__BlipServiceTask__Group_9_1__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group_9_1__0__Impl
-	rule__BlipServiceTask__Group_9_1__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group_9_1__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getWebserviceKeyword_9_1_0()); }
-
-	'webservice' 
-
-{ after(grammarAccess.getBlipServiceTaskAccess().getWebserviceKeyword_9_1_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group_9_1__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group_9_1__1__Impl
-	rule__BlipServiceTask__Group_9_1__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group_9_1__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getWebServiceInterfaceAssignment_9_1_1()); }
-(rule__BlipServiceTask__WebServiceInterfaceAssignment_9_1_1)
-{ after(grammarAccess.getBlipServiceTaskAccess().getWebServiceInterfaceAssignment_9_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group_9_1__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group_9_1__2__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group_9_1__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getWebServiceOperationAssignment_9_1_2()); }
-(rule__BlipServiceTask__WebServiceOperationAssignment_9_1_2)
-{ after(grammarAccess.getBlipServiceTaskAccess().getWebServiceOperationAssignment_9_1_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-rule__BlipServiceTask__Group_10__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group_10__0__Impl
-	rule__BlipServiceTask__Group_10__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group_10__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getOnexitKeyword_10_0()); }
-
-	'onexit' 
-
-{ after(grammarAccess.getBlipServiceTaskAccess().getOnexitKeyword_10_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipServiceTask__Group_10__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipServiceTask__Group_10__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipServiceTask__Group_10__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipServiceTaskAccess().getOnExitAssignment_10_1()); }
-(rule__BlipServiceTask__OnExitAssignment_10_1)
-{ after(grammarAccess.getBlipServiceTaskAccess().getOnExitAssignment_10_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__BlipOutGoing__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipOutGoing__Group__0__Impl
-	rule__BlipOutGoing__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipOutGoing__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipOutGoingAccess().getBlipOutGoingAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipOutGoingAccess().getBlipOutGoingAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipOutGoing__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipOutGoing__Group__1__Impl
-	rule__BlipOutGoing__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipOutGoing__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipOutGoingAccess().getCaseKeyword_1()); }
-
-	'case' 
-
-{ after(grammarAccess.getBlipOutGoingAccess().getCaseKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipOutGoing__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipOutGoing__Group__2__Impl
-	rule__BlipOutGoing__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipOutGoing__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipOutGoingAccess().getNameAssignment_2()); }
-(rule__BlipOutGoing__NameAssignment_2)
-{ after(grammarAccess.getBlipOutGoingAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipOutGoing__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipOutGoing__Group__3__Impl
-	rule__BlipOutGoing__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipOutGoing__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipOutGoingAccess().getForKeyword_3()); }
-
-	'for' 
-
-{ after(grammarAccess.getBlipOutGoingAccess().getForKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipOutGoing__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipOutGoing__Group__4__Impl
-	rule__BlipOutGoing__Group__5
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipOutGoing__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipOutGoingAccess().getSequenceFlowAssignment_4()); }
-(rule__BlipOutGoing__SequenceFlowAssignment_4)
-{ after(grammarAccess.getBlipOutGoingAccess().getSequenceFlowAssignment_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipOutGoing__Group__5
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipOutGoing__Group__5__Impl
-	rule__BlipOutGoing__Group__6
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipOutGoing__Group__5__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipOutGoingAccess().getWhenKeyword_5()); }
-
-	'when' 
-
-{ after(grammarAccess.getBlipOutGoingAccess().getWhenKeyword_5()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipOutGoing__Group__6
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipOutGoing__Group__6__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipOutGoing__Group__6__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipOutGoingAccess().getConstraintAssignment_6()); }
-(rule__BlipOutGoing__ConstraintAssignment_6)
-{ after(grammarAccess.getBlipOutGoingAccess().getConstraintAssignment_6()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rule__BlipOutGoingDefault__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipOutGoingDefault__Group__0__Impl
-	rule__BlipOutGoingDefault__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipOutGoingDefault__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipOutGoingDefaultAccess().getBlipOutGoingDefaultAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipOutGoingDefaultAccess().getBlipOutGoingDefaultAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipOutGoingDefault__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipOutGoingDefault__Group__1__Impl
-	rule__BlipOutGoingDefault__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipOutGoingDefault__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipOutGoingDefaultAccess().getIsDefaultAssignment_1()); }
-(rule__BlipOutGoingDefault__IsDefaultAssignment_1)
-{ after(grammarAccess.getBlipOutGoingDefaultAccess().getIsDefaultAssignment_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipOutGoingDefault__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipOutGoingDefault__Group__2__Impl
-	rule__BlipOutGoingDefault__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipOutGoingDefault__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipOutGoingDefaultAccess().getNameAssignment_2()); }
-(rule__BlipOutGoingDefault__NameAssignment_2)
-{ after(grammarAccess.getBlipOutGoingDefaultAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipOutGoingDefault__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipOutGoingDefault__Group__3__Impl
-	rule__BlipOutGoingDefault__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipOutGoingDefault__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipOutGoingDefaultAccess().getForKeyword_3()); }
-
-	'for' 
-
-{ after(grammarAccess.getBlipOutGoingDefaultAccess().getForKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipOutGoingDefault__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipOutGoingDefault__Group__4__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipOutGoingDefault__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipOutGoingDefaultAccess().getSequenceFlowAssignment_4()); }
-(rule__BlipOutGoingDefault__SequenceFlowAssignment_4)
-{ after(grammarAccess.getBlipOutGoingDefaultAccess().getSequenceFlowAssignment_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-rule__BlipExclusiveSplitGateway__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipExclusiveSplitGateway__Group__0__Impl
-	rule__BlipExclusiveSplitGateway__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipExclusiveSplitGateway__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getBlipExclusiveSplitGatewayAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getBlipExclusiveSplitGatewayAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipExclusiveSplitGateway__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipExclusiveSplitGateway__Group__1__Impl
-	rule__BlipExclusiveSplitGateway__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipExclusiveSplitGateway__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getExclusivesplitgatewayKeyword_1()); }
-
-	'exclusivesplitgateway' 
-
-{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getExclusivesplitgatewayKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipExclusiveSplitGateway__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipExclusiveSplitGateway__Group__2__Impl
-	rule__BlipExclusiveSplitGateway__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipExclusiveSplitGateway__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getNameAssignment_2()); }
-(rule__BlipExclusiveSplitGateway__NameAssignment_2)
-{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipExclusiveSplitGateway__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipExclusiveSplitGateway__Group__3__Impl
-	rule__BlipExclusiveSplitGateway__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipExclusiveSplitGateway__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getForKeyword_3()); }
-
-	'for' 
-
-{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getForKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipExclusiveSplitGateway__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipExclusiveSplitGateway__Group__4__Impl
-	rule__BlipExclusiveSplitGateway__Group__5
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipExclusiveSplitGateway__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getGatewayAssignment_4()); }
-(rule__BlipExclusiveSplitGateway__GatewayAssignment_4)
-{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getGatewayAssignment_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipExclusiveSplitGateway__Group__5
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipExclusiveSplitGateway__Group__5__Impl
-	rule__BlipExclusiveSplitGateway__Group__6
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipExclusiveSplitGateway__Group__5__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getLeftCurlyBracketKeyword_5()); }
-
-	'{' 
-
-{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getLeftCurlyBracketKeyword_5()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipExclusiveSplitGateway__Group__6
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipExclusiveSplitGateway__Group__6__Impl
-	rule__BlipExclusiveSplitGateway__Group__7
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipExclusiveSplitGateway__Group__6__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getOutgoingsAssignment_6()); }
-(rule__BlipExclusiveSplitGateway__OutgoingsAssignment_6)*
-{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getOutgoingsAssignment_6()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipExclusiveSplitGateway__Group__7
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipExclusiveSplitGateway__Group__7__Impl
-	rule__BlipExclusiveSplitGateway__Group__8
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipExclusiveSplitGateway__Group__7__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getOutgoingsAssignment_7()); }
-(rule__BlipExclusiveSplitGateway__OutgoingsAssignment_7)
-{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getOutgoingsAssignment_7()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipExclusiveSplitGateway__Group__8
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipExclusiveSplitGateway__Group__8__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipExclusiveSplitGateway__Group__8__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getRightCurlyBracketKeyword_8()); }
-
-	'}' 
-
-{ after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getRightCurlyBracketKeyword_8()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rule__BlipInclusiveSplitGateway__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipInclusiveSplitGateway__Group__0__Impl
-	rule__BlipInclusiveSplitGateway__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipInclusiveSplitGateway__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getBlipInclusiveSplitGatewayAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getBlipInclusiveSplitGatewayAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipInclusiveSplitGateway__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipInclusiveSplitGateway__Group__1__Impl
-	rule__BlipInclusiveSplitGateway__Group__2
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipInclusiveSplitGateway__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getInclusivesplitgatewayKeyword_1()); }
-
-	'inclusivesplitgateway' 
-
-{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getInclusivesplitgatewayKeyword_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipInclusiveSplitGateway__Group__2
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipInclusiveSplitGateway__Group__2__Impl
-	rule__BlipInclusiveSplitGateway__Group__3
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipInclusiveSplitGateway__Group__2__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getNameAssignment_2()); }
-(rule__BlipInclusiveSplitGateway__NameAssignment_2)
-{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getNameAssignment_2()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipInclusiveSplitGateway__Group__3
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipInclusiveSplitGateway__Group__3__Impl
-	rule__BlipInclusiveSplitGateway__Group__4
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipInclusiveSplitGateway__Group__3__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getForKeyword_3()); }
-
-	'for' 
-
-{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getForKeyword_3()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipInclusiveSplitGateway__Group__4
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipInclusiveSplitGateway__Group__4__Impl
-	rule__BlipInclusiveSplitGateway__Group__5
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipInclusiveSplitGateway__Group__4__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getGatewayAssignment_4()); }
-(rule__BlipInclusiveSplitGateway__GatewayAssignment_4)
-{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getGatewayAssignment_4()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipInclusiveSplitGateway__Group__5
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipInclusiveSplitGateway__Group__5__Impl
-	rule__BlipInclusiveSplitGateway__Group__6
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipInclusiveSplitGateway__Group__5__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getLeftCurlyBracketKeyword_5()); }
-
-	'{' 
-
-{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getLeftCurlyBracketKeyword_5()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipInclusiveSplitGateway__Group__6
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipInclusiveSplitGateway__Group__6__Impl
-	rule__BlipInclusiveSplitGateway__Group__7
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipInclusiveSplitGateway__Group__6__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getOutgoingsAssignment_6()); }
-(rule__BlipInclusiveSplitGateway__OutgoingsAssignment_6)*
-{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getOutgoingsAssignment_6()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipInclusiveSplitGateway__Group__7
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipInclusiveSplitGateway__Group__7__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipInclusiveSplitGateway__Group__7__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getRightCurlyBracketKeyword_7()); }
-
-	'}' 
-
-{ after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getRightCurlyBracketKeyword_7()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-rule__BlipDtoPath__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipDtoPath__Group__0__Impl
-	rule__BlipDtoPath__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipDtoPath__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipDtoPathAccess().getBlipDtoPathAction_0()); }
-(
-
-)
-{ after(grammarAccess.getBlipDtoPathAccess().getBlipDtoPathAction_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__BlipDtoPath__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__BlipDtoPath__Group__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__BlipDtoPath__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getBlipDtoPathAccess().getDtoPathAssignment_1()); }
-(rule__BlipDtoPath__DtoPathAssignment_1)
-{ after(grammarAccess.getBlipDtoPathAccess().getDtoPathAssignment_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__QualifiedDtoPath__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__QualifiedDtoPath__Group__0__Impl
-	rule__QualifiedDtoPath__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__QualifiedDtoPath__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getQualifiedDtoPathAccess().getValidIDParserRuleCall_0()); }
-	ruleValidID
-{ after(grammarAccess.getQualifiedDtoPathAccess().getValidIDParserRuleCall_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__QualifiedDtoPath__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__QualifiedDtoPath__Group__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__QualifiedDtoPath__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getQualifiedDtoPathAccess().getGroup_1()); }
-(rule__QualifiedDtoPath__Group_1__0)*
-{ after(grammarAccess.getQualifiedDtoPathAccess().getGroup_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__QualifiedDtoPath__Group_1__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__QualifiedDtoPath__Group_1__0__Impl
-	rule__QualifiedDtoPath__Group_1__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__QualifiedDtoPath__Group_1__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getQualifiedDtoPathAccess().getFullStopKeyword_1_0()); }
-(
-	'.' 
-)
-{ after(grammarAccess.getQualifiedDtoPathAccess().getFullStopKeyword_1_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__QualifiedDtoPath__Group_1__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__QualifiedDtoPath__Group_1__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__QualifiedDtoPath__Group_1__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getQualifiedDtoPathAccess().getValidIDParserRuleCall_1_1()); }
-	ruleValidID
-{ after(grammarAccess.getQualifiedDtoPathAccess().getValidIDParserRuleCall_1_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__QualifiedName__Group__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__QualifiedName__Group__0__Impl
-	rule__QualifiedName__Group__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__QualifiedName__Group__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); }
-	ruleValidID
-{ after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__QualifiedName__Group__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__QualifiedName__Group__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__QualifiedName__Group__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getQualifiedNameAccess().getGroup_1()); }
-(rule__QualifiedName__Group_1__0)*
-{ after(grammarAccess.getQualifiedNameAccess().getGroup_1()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-
-
-
-
-rule__QualifiedName__Group_1__0
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__QualifiedName__Group_1__0__Impl
-	rule__QualifiedName__Group_1__1
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__QualifiedName__Group_1__0__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); }
-(
-	'.' 
-)
-{ after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); }
-)
-
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-
-rule__QualifiedName__Group_1__1
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-	rule__QualifiedName__Group_1__1__Impl
-;
-finally {
-	restoreStackSize(stackSize);
-}
-
-rule__QualifiedName__Group_1__1__Impl
-    @init {
-		int stackSize = keepStackSize();
-    }
-:
-(
-{ before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); }
-	ruleValidID
diff --git a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.tokens b/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.tokens
deleted file mode 100644
index 99101be..0000000
--- a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.tokens
+++ /dev/null
@@ -1,403 +0,0 @@
-'!'=40
-'!='=22
-'!=='=24
-'#'=180
-'%'=39
-'%='=20
-'&&'=15
-'&'=200
-'('=176
-')'=177
-'*'=36
-'**'=37
-'*='=18
-'+'=34
-'++'=41
-'+='=16
-','=178
-'-'=35
-'--'=42
-'-='=17
-'->'=28
-'.'=43
-'..'=30
-'..<'=29
-'/'=38
-'/='=19
-':'=186
-'::'=205
-';'=174
-'<'=27
-'<>'=32
-'='=13
-'=='=21
-'==='=23
-'=>'=31
-'>'=26
-'>='=25
-'?'=199
-'?.'=206
-'?:'=33
-'@'=175
-'['=181
-']'=179
-'arrows-cw'=120
-'as'=166
-'asynchron with'=167
-'attach'=130
-'attention'=78
-'back'=102
-'bell'=137
-'block'=140
-'bpmn'=145
-'calendar'=128
-'callActivity'=160
-'camera'=134
-'cancel'=84
-'cancel-1'=83
-'cancel-circle'=85
-'case'=170
-'catch'=198
-'chart'=129
-'chart-pie'=121
-'clock'=139
-'cog'=77
-'comment'=110
-'cw'=91
-'default'=187
-'described by'=204
-'do'=189
-'doc'=127
-'down'=61
-'down-bold'=98
-'down-dir'=67
-'down-open'=116
-'down-thin'=94
-'download'=132
-'dto'=152
-'edit'=80
-'else'=184
-'endevent'=155
-'ends token path'=54
-'exchange'=62
-'exclusivesplitgateway'=172
-'export'=107
-'extends'=45
-'extension'=48
-'eye'=103
-'false'=50
-'finally'=196
-'flag'=76
-'folder'=126
-'for'=154
-'forward'=90
-'function'=162
-'functiongroup'=147
-'heart'=73
-'heart-empty'=72
-'help'=86
-'help-circle'=100
-'home'=63
-'home-1'=64
-'icon'=202
-'if'=183
-'image'=201
-'import'=47
-'inclusivesplitgateway'=173
-'info'=57
-'info-circle'=101
-'instanceof'=182
-'left'=58
-'left-bold'=95
-'left-dir'=68
-'left-open'=117
-'left-thin'=92
-'link'=138
-'location'=112
-'lock'=135
-'lock-open'=136
-'logging'=203
-'mail'=79
-'minus'=56
-'minus-circle'=88
-'mobile'=133
-'monitor'=125
-'music'=74
-'new'=190
-'null'=191
-'ok'=82
-'onentry'=158
-'oneway'=52
-'onexit'=159
-'operates on'=157
-'package'=141
-'pencil'=81
-'persisttask'=163
-'plus'=55
-'plus-circle'=87
-'predefine'=149
-'print'=108
-'process'=144
-'reply'=106
-'resize-full'=114
-'resize-small'=115
-'return'=194
-'retweet'=109
-'right'=60
-'right-bold'=96
-'right-dir'=66
-'right-open'=118
-'right-thin'=89
-'run'=165
-'scripttask'=161
-'search-1'=122
-'secs timeout'=168
-'servicetask'=164
-'set'=150
-'star'=69
-'star-empty'=70
-'startevent'=153
-'static'=46
-'super'=49
-'switch'=185
-'synchron'=51
-'synchronized'=197
-'tag'=104
-'terminates process'=53
-'th'=75
-'th-list'=71
-'throw'=193
-'to'=151
-'trash'=113
-'true'=209
-'try'=195
-'typeof'=192
-'up'=59
-'up-bold'=97
-'up-dir'=65
-'up-open'=119
-'up-thin'=93
-'upload'=131
-'upload-cloud'=105
-'user'=123
-'user-add'=99
-'users'=124
-'usertask'=156
-'using'=148
-'val'=44
-'var'=208
-'vcard'=111
-'webservice'=169
-'when'=171
-'while'=188
-'workload'=146
-'{'=142
-'|'=207
-'||'=14
-'}'=143
-RULE_ANY_OTHER=12
-RULE_DECIMAL=8
-RULE_HEX=6
-RULE_ID=4
-RULE_INT=7
-RULE_ML_COMMENT=9
-RULE_SL_COMMENT=10
-RULE_STRING=5
-RULE_WS=11
-T__100=100
-T__101=101
-T__102=102
-T__103=103
-T__104=104
-T__105=105
-T__106=106
-T__107=107
-T__108=108
-T__109=109
-T__110=110
-T__111=111
-T__112=112
-T__113=113
-T__114=114
-T__115=115
-T__116=116
-T__117=117
-T__118=118
-T__119=119
-T__120=120
-T__121=121
-T__122=122
-T__123=123
-T__124=124
-T__125=125
-T__126=126
-T__127=127
-T__128=128
-T__129=129
-T__130=130
-T__131=131
-T__132=132
-T__133=133
-T__134=134
-T__135=135
-T__136=136
-T__137=137
-T__138=138
-T__139=139
-T__13=13
-T__140=140
-T__141=141
-T__142=142
-T__143=143
-T__144=144
-T__145=145
-T__146=146
-T__147=147
-T__148=148
-T__149=149
-T__14=14
-T__150=150
-T__151=151
-T__152=152
-T__153=153
-T__154=154
-T__155=155
-T__156=156
-T__157=157
-T__158=158
-T__159=159
-T__15=15
-T__160=160
-T__161=161
-T__162=162
-T__163=163
-T__164=164
-T__165=165
-T__166=166
-T__167=167
-T__168=168
-T__169=169
-T__16=16
-T__170=170
-T__171=171
-T__172=172
-T__173=173
-T__174=174
-T__175=175
-T__176=176
-T__177=177
-T__178=178
-T__179=179
-T__17=17
-T__180=180
-T__181=181
-T__182=182
-T__183=183
-T__184=184
-T__185=185
-T__186=186
-T__187=187
-T__188=188
-T__189=189
-T__18=18
-T__190=190
-T__191=191
-T__192=192
-T__193=193
-T__194=194
-T__195=195
-T__196=196
-T__197=197
-T__198=198
-T__199=199
-T__19=19
-T__200=200
-T__201=201
-T__202=202
-T__203=203
-T__204=204
-T__205=205
-T__206=206
-T__207=207
-T__208=208
-T__209=209
-T__20=20
-T__21=21
-T__22=22
-T__23=23
-T__24=24
-T__25=25
-T__26=26
-T__27=27
-T__28=28
-T__29=29
-T__30=30
-T__31=31
-T__32=32
-T__33=33
-T__34=34
-T__35=35
-T__36=36
-T__37=37
-T__38=38
-T__39=39
-T__40=40
-T__41=41
-T__42=42
-T__43=43
-T__44=44
-T__45=45
-T__46=46
-T__47=47
-T__48=48
-T__49=49
-T__50=50
-T__51=51
-T__52=52
-T__53=53
-T__54=54
-T__55=55
-T__56=56
-T__57=57
-T__58=58
-T__59=59
-T__60=60
-T__61=61
-T__62=62
-T__63=63
-T__64=64
-T__65=65
-T__66=66
-T__67=67
-T__68=68
-T__69=69
-T__70=70
-T__71=71
-T__72=72
-T__73=73
-T__74=74
-T__75=75
-T__76=76
-T__77=77
-T__78=78
-T__79=79
-T__80=80
-T__81=81
-T__82=82
-T__83=83
-T__84=84
-T__85=85
-T__86=86
-T__87=87
-T__88=88
-T__89=89
-T__90=90
-T__91=91
-T__92=92
-T__93=93
-T__94=94
-T__95=95
-T__96=96
-T__97=97
-T__98=98
-T__99=99
diff --git a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSLLexer.java b/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSLLexer.java
deleted file mode 100644
index c3a12be..0000000
--- a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSLLexer.java
+++ /dev/null
@@ -1,7920 +0,0 @@
-/**
- *                                                                            
- *  Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany) 
- *                                                                            
- *  All rights reserved. This program and the accompanying materials           
- *  are made available under the terms of the Eclipse Public License v1.0       
- *  which accompanies this distribution, and is available at                  
- *  http://www.eclipse.org/legal/epl-v10.html                                 
- *                                                                            
- *  Contributors:                                                      
- * 	   Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
- * 
- */
- 
-package org.eclipse.osbp.xtext.blip.ui.contentassist.antlr.internal;
-
-// Hack: Use our own Lexer superclass by means of import. 
-// Currently there is no other way to specify the superclass for the lexer.
-import org.eclipse.xtext.ui.editor.contentassist.antlr.internal.Lexer;
-
-
-import org.antlr.runtime.*;
-import java.util.Stack;
-import java.util.List;
-import java.util.ArrayList;
-
-@SuppressWarnings("all")
-public class InternalBlipDSLLexer extends Lexer {
-    public static final int T__144=144;
-    public static final int T__143=143;
-    public static final int T__146=146;
-    public static final int T__50=50;
-    public static final int T__145=145;
-    public static final int T__140=140;
-    public static final int T__142=142;
-    public static final int T__141=141;
-    public static final int T__59=59;
-    public static final int T__55=55;
-    public static final int T__56=56;
-    public static final int T__57=57;
-    public static final int T__58=58;
-    public static final int T__51=51;
-    public static final int T__137=137;
-    public static final int T__52=52;
-    public static final int T__136=136;
-    public static final int T__53=53;
-    public static final int T__139=139;
-    public static final int T__54=54;
-    public static final int T__138=138;
-    public static final int T__133=133;
-    public static final int T__132=132;
-    public static final int T__60=60;
-    public static final int T__135=135;
-    public static final int T__61=61;
-    public static final int T__134=134;
-    public static final int RULE_ID=4;
-    public static final int T__131=131;
-    public static final int T__130=130;
-    public static final int RULE_INT=7;
-    public static final int T__66=66;
-    public static final int T__67=67;
-    public static final int T__129=129;
-    public static final int T__68=68;
-    public static final int T__69=69;
-    public static final int T__62=62;
-    public static final int T__126=126;
-    public static final int T__63=63;
-    public static final int T__125=125;
-    public static final int T__64=64;
-    public static final int T__128=128;
-    public static final int T__65=65;
-    public static final int T__127=127;
-    public static final int T__166=166;
-    public static final int T__165=165;
-    public static final int T__168=168;
-    public static final int T__167=167;
-    public static final int T__162=162;
-    public static final int T__161=161;
-    public static final int T__164=164;
-    public static final int T__163=163;
-    public static final int T__160=160;
-    public static final int T__37=37;
-    public static final int T__38=38;
-    public static final int T__39=39;
-    public static final int T__33=33;
-    public static final int T__34=34;
-    public static final int T__35=35;
-    public static final int T__36=36;
-    public static final int T__159=159;
-    public static final int T__30=30;
-    public static final int T__158=158;
-    public static final int T__31=31;
-    public static final int T__32=32;
-    public static final int T__155=155;
-    public static final int T__154=154;
-    public static final int T__157=157;
-    public static final int T__156=156;
-    public static final int T__151=151;
-    public static final int T__150=150;
-    public static final int T__153=153;
-    public static final int T__152=152;
-    public static final int T__48=48;
-    public static final int T__49=49;
-    public static final int T__44=44;
-    public static final int T__45=45;
-    public static final int T__46=46;
-    public static final int T__47=47;
-    public static final int T__40=40;
-    public static final int T__148=148;
-    public static final int T__41=41;
-    public static final int T__147=147;
-    public static final int T__42=42;
-    public static final int T__43=43;
-    public static final int T__149=149;
-    public static final int T__100=100;
-    public static final int T__102=102;
-    public static final int T__101=101;
-    public static final int T__19=19;
-    public static final int T__15=15;
-    public static final int T__16=16;
-    public static final int T__17=17;
-    public static final int T__18=18;
-    public static final int T__13=13;
-    public static final int T__14=14;
-    public static final int RULE_DECIMAL=8;
-    public static final int T__26=26;
-    public static final int T__27=27;
-    public static final int T__28=28;
-    public static final int T__29=29;
-    public static final int T__22=22;
-    public static final int T__207=207;
-    public static final int T__23=23;
-    public static final int T__206=206;
-    public static final int T__24=24;
-    public static final int T__209=209;
-    public static final int T__25=25;
-    public static final int T__208=208;
-    public static final int T__203=203;
-    public static final int T__202=202;
-    public static final int T__20=20;
-    public static final int T__205=205;
-    public static final int T__21=21;
-    public static final int T__204=204;
-    public static final int T__122=122;
-    public static final int T__121=121;
-    public static final int T__124=124;
-    public static final int T__123=123;
-    public static final int T__120=120;
-    public static final int RULE_SL_COMMENT=10;
-    public static final int T__119=119;
-    public static final int T__118=118;
-    public static final int T__115=115;
-    public static final int EOF=-1;
-    public static final int T__114=114;
-    public static final int T__117=117;
-    public static final int T__116=116;
-    public static final int T__111=111;
-    public static final int T__110=110;
-    public static final int T__113=113;
-    public static final int T__112=112;
-    public static final int T__108=108;
-    public static final int T__107=107;
-    public static final int T__109=109;
-    public static final int T__104=104;
-    public static final int T__103=103;
-    public static final int T__106=106;
-    public static final int T__105=105;
-    public static final int RULE_HEX=6;
-    public static final int RULE_ML_COMMENT=9;
-    public static final int T__201=201;
-    public static final int T__200=200;
-    public static final int T__91=91;
-    public static final int T__188=188;
-    public static final int T__92=92;
-    public static final int T__187=187;
-    public static final int T__93=93;
-    public static final int T__94=94;
-    public static final int T__189=189;
-    public static final int T__184=184;
-    public static final int T__183=183;
-    public static final int T__186=186;
-    public static final int T__90=90;
-    public static final int T__185=185;
-    public static final int T__180=180;
-    public static final int T__182=182;
-    public static final int T__181=181;
-    public static final int T__99=99;
-    public static final int T__95=95;
-    public static final int T__96=96;
-    public static final int T__97=97;
-    public static final int T__98=98;
-    public static final int T__177=177;
-    public static final int T__176=176;
-    public static final int T__179=179;
-    public static final int T__178=178;
-    public static final int T__173=173;
-    public static final int T__172=172;
-    public static final int T__175=175;
-    public static final int T__174=174;
-    public static final int T__171=171;
-    public static final int T__170=170;
-    public static final int T__169=169;
-    public static final int T__70=70;
-    public static final int T__71=71;
-    public static final int T__72=72;
-    public static final int RULE_STRING=5;
-    public static final int T__77=77;
-    public static final int T__78=78;
-    public static final int T__79=79;
-    public static final int T__73=73;
-    public static final int T__74=74;
-    public static final int T__75=75;
-    public static final int T__76=76;
-    public static final int T__80=80;
-    public static final int T__199=199;
-    public static final int T__81=81;
-    public static final int T__198=198;
-    public static final int T__82=82;
-    public static final int T__83=83;
-    public static final int T__195=195;
-    public static final int T__194=194;
-    public static final int RULE_WS=11;
-    public static final int T__197=197;
-    public static final int T__196=196;
-    public static final int T__191=191;
-    public static final int T__190=190;
-    public static final int T__193=193;
-    public static final int T__192=192;
-    public static final int RULE_ANY_OTHER=12;
-    public static final int T__88=88;
-    public static final int T__89=89;
-    public static final int T__84=84;
-    public static final int T__85=85;
-    public static final int T__86=86;
-    public static final int T__87=87;
-
-    // delegates
-    // delegators
-
-    public InternalBlipDSLLexer() {;} 
-    public InternalBlipDSLLexer(CharStream input) {
-        this(input, new RecognizerSharedState());
-    }
-    public InternalBlipDSLLexer(CharStream input, RecognizerSharedState state) {
-        super(input,state);
-
-    }
-    public String getGrammarFileName() { return "../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g"; }
-
-    // $ANTLR start "T__13"
-    public final void mT__13() throws RecognitionException {
-        try {
-            int _type = T__13;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:11:7: ( '=' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:11:9: '='
-            {
-            match('='); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__13"
-
-    // $ANTLR start "T__14"
-    public final void mT__14() throws RecognitionException {
-        try {
-            int _type = T__14;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:12:7: ( '||' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:12:9: '||'
-            {
-            match("||"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__14"
-
-    // $ANTLR start "T__15"
-    public final void mT__15() throws RecognitionException {
-        try {
-            int _type = T__15;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:13:7: ( '&&' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:13:9: '&&'
-            {
-            match("&&"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__15"
-
-    // $ANTLR start "T__16"
-    public final void mT__16() throws RecognitionException {
-        try {
-            int _type = T__16;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:14:7: ( '+=' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:14:9: '+='
-            {
-            match("+="); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__16"
-
-    // $ANTLR start "T__17"
-    public final void mT__17() throws RecognitionException {
-        try {
-            int _type = T__17;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:15:7: ( '-=' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:15:9: '-='
-            {
-            match("-="); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__17"
-
-    // $ANTLR start "T__18"
-    public final void mT__18() throws RecognitionException {
-        try {
-            int _type = T__18;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:16:7: ( '*=' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:16:9: '*='
-            {
-            match("*="); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__18"
-
-    // $ANTLR start "T__19"
-    public final void mT__19() throws RecognitionException {
-        try {
-            int _type = T__19;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:17:7: ( '/=' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:17:9: '/='
-            {
-            match("/="); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__19"
-
-    // $ANTLR start "T__20"
-    public final void mT__20() throws RecognitionException {
-        try {
-            int _type = T__20;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:18:7: ( '%=' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:18:9: '%='
-            {
-            match("%="); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__20"
-
-    // $ANTLR start "T__21"
-    public final void mT__21() throws RecognitionException {
-        try {
-            int _type = T__21;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:19:7: ( '==' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:19:9: '=='
-            {
-            match("=="); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__21"
-
-    // $ANTLR start "T__22"
-    public final void mT__22() throws RecognitionException {
-        try {
-            int _type = T__22;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:20:7: ( '!=' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:20:9: '!='
-            {
-            match("!="); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__22"
-
-    // $ANTLR start "T__23"
-    public final void mT__23() throws RecognitionException {
-        try {
-            int _type = T__23;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:21:7: ( '===' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:21:9: '==='
-            {
-            match("==="); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__23"
-
-    // $ANTLR start "T__24"
-    public final void mT__24() throws RecognitionException {
-        try {
-            int _type = T__24;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:22:7: ( '!==' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:22:9: '!=='
-            {
-            match("!=="); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__24"
-
-    // $ANTLR start "T__25"
-    public final void mT__25() throws RecognitionException {
-        try {
-            int _type = T__25;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:23:7: ( '>=' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:23:9: '>='
-            {
-            match(">="); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__25"
-
-    // $ANTLR start "T__26"
-    public final void mT__26() throws RecognitionException {
-        try {
-            int _type = T__26;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:24:7: ( '>' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:24:9: '>'
-            {
-            match('>'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__26"
-
-    // $ANTLR start "T__27"
-    public final void mT__27() throws RecognitionException {
-        try {
-            int _type = T__27;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:25:7: ( '<' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:25:9: '<'
-            {
-            match('<'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__27"
-
-    // $ANTLR start "T__28"
-    public final void mT__28() throws RecognitionException {
-        try {
-            int _type = T__28;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:26:7: ( '->' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:26:9: '->'
-            {
-            match("->"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__28"
-
-    // $ANTLR start "T__29"
-    public final void mT__29() throws RecognitionException {
-        try {
-            int _type = T__29;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:27:7: ( '..<' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:27:9: '..<'
-            {
-            match("..<"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__29"
-
-    // $ANTLR start "T__30"
-    public final void mT__30() throws RecognitionException {
-        try {
-            int _type = T__30;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28:7: ( '..' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28:9: '..'
-            {
-            match(".."); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__30"
-
-    // $ANTLR start "T__31"
-    public final void mT__31() throws RecognitionException {
-        try {
-            int _type = T__31;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:29:7: ( '=>' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:29:9: '=>'
-            {
-            match("=>"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__31"
-
-    // $ANTLR start "T__32"
-    public final void mT__32() throws RecognitionException {
-        try {
-            int _type = T__32;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:30:7: ( '<>' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:30:9: '<>'
-            {
-            match("<>"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__32"
-
-    // $ANTLR start "T__33"
-    public final void mT__33() throws RecognitionException {
-        try {
-            int _type = T__33;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:31:7: ( '?:' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:31:9: '?:'
-            {
-            match("?:"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__33"
-
-    // $ANTLR start "T__34"
-    public final void mT__34() throws RecognitionException {
-        try {
-            int _type = T__34;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:32:7: ( '+' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:32:9: '+'
-            {
-            match('+'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__34"
-
-    // $ANTLR start "T__35"
-    public final void mT__35() throws RecognitionException {
-        try {
-            int _type = T__35;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:33:7: ( '-' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:33:9: '-'
-            {
-            match('-'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__35"
-
-    // $ANTLR start "T__36"
-    public final void mT__36() throws RecognitionException {
-        try {
-            int _type = T__36;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:34:7: ( '*' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:34:9: '*'
-            {
-            match('*'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__36"
-
-    // $ANTLR start "T__37"
-    public final void mT__37() throws RecognitionException {
-        try {
-            int _type = T__37;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:35:7: ( '**' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:35:9: '**'
-            {
-            match("**"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__37"
-
-    // $ANTLR start "T__38"
-    public final void mT__38() throws RecognitionException {
-        try {
-            int _type = T__38;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:36:7: ( '/' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:36:9: '/'
-            {
-            match('/'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__38"
-
-    // $ANTLR start "T__39"
-    public final void mT__39() throws RecognitionException {
-        try {
-            int _type = T__39;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:37:7: ( '%' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:37:9: '%'
-            {
-            match('%'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__39"
-
-    // $ANTLR start "T__40"
-    public final void mT__40() throws RecognitionException {
-        try {
-            int _type = T__40;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:38:7: ( '!' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:38:9: '!'
-            {
-            match('!'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__40"
-
-    // $ANTLR start "T__41"
-    public final void mT__41() throws RecognitionException {
-        try {
-            int _type = T__41;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:39:7: ( '++' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:39:9: '++'
-            {
-            match("++"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__41"
-
-    // $ANTLR start "T__42"
-    public final void mT__42() throws RecognitionException {
-        try {
-            int _type = T__42;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:40:7: ( '--' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:40:9: '--'
-            {
-            match("--"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__42"
-
-    // $ANTLR start "T__43"
-    public final void mT__43() throws RecognitionException {
-        try {
-            int _type = T__43;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:41:7: ( '.' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:41:9: '.'
-            {
-            match('.'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__43"
-
-    // $ANTLR start "T__44"
-    public final void mT__44() throws RecognitionException {
-        try {
-            int _type = T__44;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:42:7: ( 'val' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:42:9: 'val'
-            {
-            match("val"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__44"
-
-    // $ANTLR start "T__45"
-    public final void mT__45() throws RecognitionException {
-        try {
-            int _type = T__45;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:43:7: ( 'extends' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:43:9: 'extends'
-            {
-            match("extends"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__45"
-
-    // $ANTLR start "T__46"
-    public final void mT__46() throws RecognitionException {
-        try {
-            int _type = T__46;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:44:7: ( 'static' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:44:9: 'static'
-            {
-            match("static"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__46"
-
-    // $ANTLR start "T__47"
-    public final void mT__47() throws RecognitionException {
-        try {
-            int _type = T__47;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:45:7: ( 'import' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:45:9: 'import'
-            {
-            match("import"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__47"
-
-    // $ANTLR start "T__48"
-    public final void mT__48() throws RecognitionException {
-        try {
-            int _type = T__48;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:46:7: ( 'extension' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:46:9: 'extension'
-            {
-            match("extension"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__48"
-
-    // $ANTLR start "T__49"
-    public final void mT__49() throws RecognitionException {
-        try {
-            int _type = T__49;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:47:7: ( 'super' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:47:9: 'super'
-            {
-            match("super"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__49"
-
-    // $ANTLR start "T__50"
-    public final void mT__50() throws RecognitionException {
-        try {
-            int _type = T__50;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:48:7: ( 'false' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:48:9: 'false'
-            {
-            match("false"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__50"
-
-    // $ANTLR start "T__51"
-    public final void mT__51() throws RecognitionException {
-        try {
-            int _type = T__51;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:49:7: ( 'synchron' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:49:9: 'synchron'
-            {
-            match("synchron"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__51"
-
-    // $ANTLR start "T__52"
-    public final void mT__52() throws RecognitionException {
-        try {
-            int _type = T__52;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:50:7: ( 'oneway' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:50:9: 'oneway'
-            {
-            match("oneway"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__52"
-
-    // $ANTLR start "T__53"
-    public final void mT__53() throws RecognitionException {
-        try {
-            int _type = T__53;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:51:7: ( 'terminates process' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:51:9: 'terminates process'
-            {
-            match("terminates process"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__53"
-
-    // $ANTLR start "T__54"
-    public final void mT__54() throws RecognitionException {
-        try {
-            int _type = T__54;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:52:7: ( 'ends token path' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:52:9: 'ends token path'
-            {
-            match("ends token path"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__54"
-
-    // $ANTLR start "T__55"
-    public final void mT__55() throws RecognitionException {
-        try {
-            int _type = T__55;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:53:7: ( 'plus' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:53:9: 'plus'
-            {
-            match("plus"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__55"
-
-    // $ANTLR start "T__56"
-    public final void mT__56() throws RecognitionException {
-        try {
-            int _type = T__56;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:54:7: ( 'minus' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:54:9: 'minus'
-            {
-            match("minus"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__56"
-
-    // $ANTLR start "T__57"
-    public final void mT__57() throws RecognitionException {
-        try {
-            int _type = T__57;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:55:7: ( 'info' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:55:9: 'info'
-            {
-            match("info"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__57"
-
-    // $ANTLR start "T__58"
-    public final void mT__58() throws RecognitionException {
-        try {
-            int _type = T__58;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:56:7: ( 'left' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:56:9: 'left'
-            {
-            match("left"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__58"
-
-    // $ANTLR start "T__59"
-    public final void mT__59() throws RecognitionException {
-        try {
-            int _type = T__59;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:57:7: ( 'up' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:57:9: 'up'
-            {
-            match("up"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__59"
-
-    // $ANTLR start "T__60"
-    public final void mT__60() throws RecognitionException {
-        try {
-            int _type = T__60;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:58:7: ( 'right' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:58:9: 'right'
-            {
-            match("right"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__60"
-
-    // $ANTLR start "T__61"
-    public final void mT__61() throws RecognitionException {
-        try {
-            int _type = T__61;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:59:7: ( 'down' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:59:9: 'down'
-            {
-            match("down"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__61"
-
-    // $ANTLR start "T__62"
-    public final void mT__62() throws RecognitionException {
-        try {
-            int _type = T__62;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:60:7: ( 'exchange' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:60:9: 'exchange'
-            {
-            match("exchange"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__62"
-
-    // $ANTLR start "T__63"
-    public final void mT__63() throws RecognitionException {
-        try {
-            int _type = T__63;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:61:7: ( 'home' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:61:9: 'home'
-            {
-            match("home"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__63"
-
-    // $ANTLR start "T__64"
-    public final void mT__64() throws RecognitionException {
-        try {
-            int _type = T__64;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:62:7: ( 'home-1' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:62:9: 'home-1'
-            {
-            match("home-1"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__64"
-
-    // $ANTLR start "T__65"
-    public final void mT__65() throws RecognitionException {
-        try {
-            int _type = T__65;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:63:7: ( 'up-dir' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:63:9: 'up-dir'
-            {
-            match("up-dir"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__65"
-
-    // $ANTLR start "T__66"
-    public final void mT__66() throws RecognitionException {
-        try {
-            int _type = T__66;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:64:7: ( 'right-dir' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:64:9: 'right-dir'
-            {
-            match("right-dir"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__66"
-
-    // $ANTLR start "T__67"
-    public final void mT__67() throws RecognitionException {
-        try {
-            int _type = T__67;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:65:7: ( 'down-dir' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:65:9: 'down-dir'
-            {
-            match("down-dir"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__67"
-
-    // $ANTLR start "T__68"
-    public final void mT__68() throws RecognitionException {
-        try {
-            int _type = T__68;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:66:7: ( 'left-dir' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:66:9: 'left-dir'
-            {
-            match("left-dir"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__68"
-
-    // $ANTLR start "T__69"
-    public final void mT__69() throws RecognitionException {
-        try {
-            int _type = T__69;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:67:7: ( 'star' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:67:9: 'star'
-            {
-            match("star"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__69"
-
-    // $ANTLR start "T__70"
-    public final void mT__70() throws RecognitionException {
-        try {
-            int _type = T__70;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:68:7: ( 'star-empty' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:68:9: 'star-empty'
-            {
-            match("star-empty"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__70"
-
-    // $ANTLR start "T__71"
-    public final void mT__71() throws RecognitionException {
-        try {
-            int _type = T__71;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:69:7: ( 'th-list' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:69:9: 'th-list'
-            {
-            match("th-list"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__71"
-
-    // $ANTLR start "T__72"
-    public final void mT__72() throws RecognitionException {
-        try {
-            int _type = T__72;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:70:7: ( 'heart-empty' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:70:9: 'heart-empty'
-            {
-            match("heart-empty"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__72"
-
-    // $ANTLR start "T__73"
-    public final void mT__73() throws RecognitionException {
-        try {
-            int _type = T__73;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:71:7: ( 'heart' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:71:9: 'heart'
-            {
-            match("heart"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__73"
-
-    // $ANTLR start "T__74"
-    public final void mT__74() throws RecognitionException {
-        try {
-            int _type = T__74;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:72:7: ( 'music' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:72:9: 'music'
-            {
-            match("music"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__74"
-
-    // $ANTLR start "T__75"
-    public final void mT__75() throws RecognitionException {
-        try {
-            int _type = T__75;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:73:7: ( 'th' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:73:9: 'th'
-            {
-            match("th"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__75"
-
-    // $ANTLR start "T__76"
-    public final void mT__76() throws RecognitionException {
-        try {
-            int _type = T__76;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:74:7: ( 'flag' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:74:9: 'flag'
-            {
-            match("flag"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__76"
-
-    // $ANTLR start "T__77"
-    public final void mT__77() throws RecognitionException {
-        try {
-            int _type = T__77;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:75:7: ( 'cog' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:75:9: 'cog'
-            {
-            match("cog"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__77"
-
-    // $ANTLR start "T__78"
-    public final void mT__78() throws RecognitionException {
-        try {
-            int _type = T__78;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:76:7: ( 'attention' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:76:9: 'attention'
-            {
-            match("attention"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__78"
-
-    // $ANTLR start "T__79"
-    public final void mT__79() throws RecognitionException {
-        try {
-            int _type = T__79;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:77:7: ( 'mail' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:77:9: 'mail'
-            {
-            match("mail"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__79"
-
-    // $ANTLR start "T__80"
-    public final void mT__80() throws RecognitionException {
-        try {
-            int _type = T__80;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:78:7: ( 'edit' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:78:9: 'edit'
-            {
-            match("edit"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__80"
-
-    // $ANTLR start "T__81"
-    public final void mT__81() throws RecognitionException {
-        try {
-            int _type = T__81;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:79:7: ( 'pencil' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:79:9: 'pencil'
-            {
-            match("pencil"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__81"
-
-    // $ANTLR start "T__82"
-    public final void mT__82() throws RecognitionException {
-        try {
-            int _type = T__82;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:80:7: ( 'ok' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:80:9: 'ok'
-            {
-            match("ok"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__82"
-
-    // $ANTLR start "T__83"
-    public final void mT__83() throws RecognitionException {
-        try {
-            int _type = T__83;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:81:7: ( 'cancel-1' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:81:9: 'cancel-1'
-            {
-            match("cancel-1"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__83"
-
-    // $ANTLR start "T__84"
-    public final void mT__84() throws RecognitionException {
-        try {
-            int _type = T__84;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:82:7: ( 'cancel' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:82:9: 'cancel'
-            {
-            match("cancel"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__84"
-
-    // $ANTLR start "T__85"
-    public final void mT__85() throws RecognitionException {
-        try {
-            int _type = T__85;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:83:7: ( 'cancel-circle' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:83:9: 'cancel-circle'
-            {
-            match("cancel-circle"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__85"
-
-    // $ANTLR start "T__86"
-    public final void mT__86() throws RecognitionException {
-        try {
-            int _type = T__86;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:84:7: ( 'help' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:84:9: 'help'
-            {
-            match("help"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__86"
-
-    // $ANTLR start "T__87"
-    public final void mT__87() throws RecognitionException {
-        try {
-            int _type = T__87;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:85:7: ( 'plus-circle' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:85:9: 'plus-circle'
-            {
-            match("plus-circle"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__87"
-
-    // $ANTLR start "T__88"
-    public final void mT__88() throws RecognitionException {
-        try {
-            int _type = T__88;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:86:7: ( 'minus-circle' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:86:9: 'minus-circle'
-            {
-            match("minus-circle"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__88"
-
-    // $ANTLR start "T__89"
-    public final void mT__89() throws RecognitionException {
-        try {
-            int _type = T__89;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:87:7: ( 'right-thin' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:87:9: 'right-thin'
-            {
-            match("right-thin"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__89"
-
-    // $ANTLR start "T__90"
-    public final void mT__90() throws RecognitionException {
-        try {
-            int _type = T__90;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:88:7: ( 'forward' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:88:9: 'forward'
-            {
-            match("forward"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__90"
-
-    // $ANTLR start "T__91"
-    public final void mT__91() throws RecognitionException {
-        try {
-            int _type = T__91;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:89:7: ( 'cw' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:89:9: 'cw'
-            {
-            match("cw"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__91"
-
-    // $ANTLR start "T__92"
-    public final void mT__92() throws RecognitionException {
-        try {
-            int _type = T__92;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:90:7: ( 'left-thin' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:90:9: 'left-thin'
-            {
-            match("left-thin"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__92"
-
-    // $ANTLR start "T__93"
-    public final void mT__93() throws RecognitionException {
-        try {
-            int _type = T__93;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:91:7: ( 'up-thin' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:91:9: 'up-thin'
-            {
-            match("up-thin"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__93"
-
-    // $ANTLR start "T__94"
-    public final void mT__94() throws RecognitionException {
-        try {
-            int _type = T__94;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:92:7: ( 'down-thin' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:92:9: 'down-thin'
-            {
-            match("down-thin"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__94"
-
-    // $ANTLR start "T__95"
-    public final void mT__95() throws RecognitionException {
-        try {
-            int _type = T__95;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:93:7: ( 'left-bold' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:93:9: 'left-bold'
-            {
-            match("left-bold"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__95"
-
-    // $ANTLR start "T__96"
-    public final void mT__96() throws RecognitionException {
-        try {
-            int _type = T__96;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:94:7: ( 'right-bold' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:94:9: 'right-bold'
-            {
-            match("right-bold"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__96"
-
-    // $ANTLR start "T__97"
-    public final void mT__97() throws RecognitionException {
-        try {
-            int _type = T__97;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:95:7: ( 'up-bold' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:95:9: 'up-bold'
-            {
-            match("up-bold"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__97"
-
-    // $ANTLR start "T__98"
-    public final void mT__98() throws RecognitionException {
-        try {
-            int _type = T__98;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:96:7: ( 'down-bold' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:96:9: 'down-bold'
-            {
-            match("down-bold"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__98"
-
-    // $ANTLR start "T__99"
-    public final void mT__99() throws RecognitionException {
-        try {
-            int _type = T__99;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:97:7: ( 'user-add' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:97:9: 'user-add'
-            {
-            match("user-add"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__99"
-
-    // $ANTLR start "T__100"
-    public final void mT__100() throws RecognitionException {
-        try {
-            int _type = T__100;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:98:8: ( 'help-circle' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:98:10: 'help-circle'
-            {
-            match("help-circle"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__100"
-
-    // $ANTLR start "T__101"
-    public final void mT__101() throws RecognitionException {
-        try {
-            int _type = T__101;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:99:8: ( 'info-circle' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:99:10: 'info-circle'
-            {
-            match("info-circle"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__101"
-
-    // $ANTLR start "T__102"
-    public final void mT__102() throws RecognitionException {
-        try {
-            int _type = T__102;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:100:8: ( 'back' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:100:10: 'back'
-            {
-            match("back"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__102"
-
-    // $ANTLR start "T__103"
-    public final void mT__103() throws RecognitionException {
-        try {
-            int _type = T__103;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:101:8: ( 'eye' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:101:10: 'eye'
-            {
-            match("eye"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__103"
-
-    // $ANTLR start "T__104"
-    public final void mT__104() throws RecognitionException {
-        try {
-            int _type = T__104;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:102:8: ( 'tag' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:102:10: 'tag'
-            {
-            match("tag"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__104"
-
-    // $ANTLR start "T__105"
-    public final void mT__105() throws RecognitionException {
-        try {
-            int _type = T__105;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:103:8: ( 'upload-cloud' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:103:10: 'upload-cloud'
-            {
-            match("upload-cloud"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__105"
-
-    // $ANTLR start "T__106"
-    public final void mT__106() throws RecognitionException {
-        try {
-            int _type = T__106;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:104:8: ( 'reply' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:104:10: 'reply'
-            {
-            match("reply"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__106"
-
-    // $ANTLR start "T__107"
-    public final void mT__107() throws RecognitionException {
-        try {
-            int _type = T__107;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:105:8: ( 'export' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:105:10: 'export'
-            {
-            match("export"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__107"
-
-    // $ANTLR start "T__108"
-    public final void mT__108() throws RecognitionException {
-        try {
-            int _type = T__108;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:106:8: ( 'print' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:106:10: 'print'
-            {
-            match("print"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__108"
-
-    // $ANTLR start "T__109"
-    public final void mT__109() throws RecognitionException {
-        try {
-            int _type = T__109;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:107:8: ( 'retweet' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:107:10: 'retweet'
-            {
-            match("retweet"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__109"
-
-    // $ANTLR start "T__110"
-    public final void mT__110() throws RecognitionException {
-        try {
-            int _type = T__110;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:108:8: ( 'comment' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:108:10: 'comment'
-            {
-            match("comment"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__110"
-
-    // $ANTLR start "T__111"
-    public final void mT__111() throws RecognitionException {
-        try {
-            int _type = T__111;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:109:8: ( 'vcard' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:109:10: 'vcard'
-            {
-            match("vcard"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__111"
-
-    // $ANTLR start "T__112"
-    public final void mT__112() throws RecognitionException {
-        try {
-            int _type = T__112;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:110:8: ( 'location' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:110:10: 'location'
-            {
-            match("location"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__112"
-
-    // $ANTLR start "T__113"
-    public final void mT__113() throws RecognitionException {
-        try {
-            int _type = T__113;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:111:8: ( 'trash' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:111:10: 'trash'
-            {
-            match("trash"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__113"
-
-    // $ANTLR start "T__114"
-    public final void mT__114() throws RecognitionException {
-        try {
-            int _type = T__114;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:112:8: ( 'resize-full' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:112:10: 'resize-full'
-            {
-            match("resize-full"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__114"
-
-    // $ANTLR start "T__115"
-    public final void mT__115() throws RecognitionException {
-        try {
-            int _type = T__115;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:113:8: ( 'resize-small' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:113:10: 'resize-small'
-            {
-            match("resize-small"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__115"
-
-    // $ANTLR start "T__116"
-    public final void mT__116() throws RecognitionException {
-        try {
-            int _type = T__116;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:114:8: ( 'down-open' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:114:10: 'down-open'
-            {
-            match("down-open"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__116"
-
-    // $ANTLR start "T__117"
-    public final void mT__117() throws RecognitionException {
-        try {
-            int _type = T__117;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:115:8: ( 'left-open' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:115:10: 'left-open'
-            {
-            match("left-open"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__117"
-
-    // $ANTLR start "T__118"
-    public final void mT__118() throws RecognitionException {
-        try {
-            int _type = T__118;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:116:8: ( 'right-open' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:116:10: 'right-open'
-            {
-            match("right-open"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__118"
-
-    // $ANTLR start "T__119"
-    public final void mT__119() throws RecognitionException {
-        try {
-            int _type = T__119;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:117:8: ( 'up-open' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:117:10: 'up-open'
-            {
-            match("up-open"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__119"
-
-    // $ANTLR start "T__120"
-    public final void mT__120() throws RecognitionException {
-        try {
-            int _type = T__120;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:118:8: ( 'arrows-cw' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:118:10: 'arrows-cw'
-            {
-            match("arrows-cw"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__120"
-
-    // $ANTLR start "T__121"
-    public final void mT__121() throws RecognitionException {
-        try {
-            int _type = T__121;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:119:8: ( 'chart-pie' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:119:10: 'chart-pie'
-            {
-            match("chart-pie"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__121"
-
-    // $ANTLR start "T__122"
-    public final void mT__122() throws RecognitionException {
-        try {
-            int _type = T__122;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:120:8: ( 'search-1' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:120:10: 'search-1'
-            {
-            match("search-1"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__122"
-
-    // $ANTLR start "T__123"
-    public final void mT__123() throws RecognitionException {
-        try {
-            int _type = T__123;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:121:8: ( 'user' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:121:10: 'user'
-            {
-            match("user"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__123"
-
-    // $ANTLR start "T__124"
-    public final void mT__124() throws RecognitionException {
-        try {
-            int _type = T__124;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:122:8: ( 'users' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:122:10: 'users'
-            {
-            match("users"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__124"
-
-    // $ANTLR start "T__125"
-    public final void mT__125() throws RecognitionException {
-        try {
-            int _type = T__125;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:123:8: ( 'monitor' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:123:10: 'monitor'
-            {
-            match("monitor"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__125"
-
-    // $ANTLR start "T__126"
-    public final void mT__126() throws RecognitionException {
-        try {
-            int _type = T__126;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:124:8: ( 'folder' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:124:10: 'folder'
-            {
-            match("folder"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__126"
-
-    // $ANTLR start "T__127"
-    public final void mT__127() throws RecognitionException {
-        try {
-            int _type = T__127;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:125:8: ( 'doc' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:125:10: 'doc'
-            {
-            match("doc"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__127"
-
-    // $ANTLR start "T__128"
-    public final void mT__128() throws RecognitionException {
-        try {
-            int _type = T__128;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:126:8: ( 'calendar' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:126:10: 'calendar'
-            {
-            match("calendar"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__128"
-
-    // $ANTLR start "T__129"
-    public final void mT__129() throws RecognitionException {
-        try {
-            int _type = T__129;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:127:8: ( 'chart' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:127:10: 'chart'
-            {
-            match("chart"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__129"
-
-    // $ANTLR start "T__130"
-    public final void mT__130() throws RecognitionException {
-        try {
-            int _type = T__130;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:128:8: ( 'attach' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:128:10: 'attach'
-            {
-            match("attach"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__130"
-
-    // $ANTLR start "T__131"
-    public final void mT__131() throws RecognitionException {
-        try {
-            int _type = T__131;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:129:8: ( 'upload' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:129:10: 'upload'
-            {
-            match("upload"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__131"
-
-    // $ANTLR start "T__132"
-    public final void mT__132() throws RecognitionException {
-        try {
-            int _type = T__132;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:130:8: ( 'download' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:130:10: 'download'
-            {
-            match("download"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__132"
-
-    // $ANTLR start "T__133"
-    public final void mT__133() throws RecognitionException {
-        try {
-            int _type = T__133;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:131:8: ( 'mobile' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:131:10: 'mobile'
-            {
-            match("mobile"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__133"
-
-    // $ANTLR start "T__134"
-    public final void mT__134() throws RecognitionException {
-        try {
-            int _type = T__134;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:132:8: ( 'camera' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:132:10: 'camera'
-            {
-            match("camera"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__134"
-
-    // $ANTLR start "T__135"
-    public final void mT__135() throws RecognitionException {
-        try {
-            int _type = T__135;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:133:8: ( 'lock' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:133:10: 'lock'
-            {
-            match("lock"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__135"
-
-    // $ANTLR start "T__136"
-    public final void mT__136() throws RecognitionException {
-        try {
-            int _type = T__136;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:134:8: ( 'lock-open' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:134:10: 'lock-open'
-            {
-            match("lock-open"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__136"
-
-    // $ANTLR start "T__137"
-    public final void mT__137() throws RecognitionException {
-        try {
-            int _type = T__137;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:135:8: ( 'bell' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:135:10: 'bell'
-            {
-            match("bell"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__137"
-
-    // $ANTLR start "T__138"
-    public final void mT__138() throws RecognitionException {
-        try {
-            int _type = T__138;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:136:8: ( 'link' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:136:10: 'link'
-            {
-            match("link"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__138"
-
-    // $ANTLR start "T__139"
-    public final void mT__139() throws RecognitionException {
-        try {
-            int _type = T__139;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:137:8: ( 'clock' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:137:10: 'clock'
-            {
-            match("clock"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__139"
-
-    // $ANTLR start "T__140"
-    public final void mT__140() throws RecognitionException {
-        try {
-            int _type = T__140;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:138:8: ( 'block' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:138:10: 'block'
-            {
-            match("block"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__140"
-
-    // $ANTLR start "T__141"
-    public final void mT__141() throws RecognitionException {
-        try {
-            int _type = T__141;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:139:8: ( 'package' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:139:10: 'package'
-            {
-            match("package"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__141"
-
-    // $ANTLR start "T__142"
-    public final void mT__142() throws RecognitionException {
-        try {
-            int _type = T__142;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:140:8: ( '{' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:140:10: '{'
-            {
-            match('{'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__142"
-
-    // $ANTLR start "T__143"
-    public final void mT__143() throws RecognitionException {
-        try {
-            int _type = T__143;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:141:8: ( '}' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:141:10: '}'
-            {
-            match('}'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__143"
-
-    // $ANTLR start "T__144"
-    public final void mT__144() throws RecognitionException {
-        try {
-            int _type = T__144;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:142:8: ( 'process' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:142:10: 'process'
-            {
-            match("process"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__144"
-
-    // $ANTLR start "T__145"
-    public final void mT__145() throws RecognitionException {
-        try {
-            int _type = T__145;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:143:8: ( 'bpmn' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:143:10: 'bpmn'
-            {
-            match("bpmn"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__145"
-
-    // $ANTLR start "T__146"
-    public final void mT__146() throws RecognitionException {
-        try {
-            int _type = T__146;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:144:8: ( 'workload' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:144:10: 'workload'
-            {
-            match("workload"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__146"
-
-    // $ANTLR start "T__147"
-    public final void mT__147() throws RecognitionException {
-        try {
-            int _type = T__147;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:145:8: ( 'functiongroup' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:145:10: 'functiongroup'
-            {
-            match("functiongroup"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__147"
-
-    // $ANTLR start "T__148"
-    public final void mT__148() throws RecognitionException {
-        try {
-            int _type = T__148;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:146:8: ( 'using' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:146:10: 'using'
-            {
-            match("using"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__148"
-
-    // $ANTLR start "T__149"
-    public final void mT__149() throws RecognitionException {
-        try {
-            int _type = T__149;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:147:8: ( 'predefine' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:147:10: 'predefine'
-            {
-            match("predefine"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__149"
-
-    // $ANTLR start "T__150"
-    public final void mT__150() throws RecognitionException {
-        try {
-            int _type = T__150;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:148:8: ( 'set' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:148:10: 'set'
-            {
-            match("set"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__150"
-
-    // $ANTLR start "T__151"
-    public final void mT__151() throws RecognitionException {
-        try {
-            int _type = T__151;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:149:8: ( 'to' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:149:10: 'to'
-            {
-            match("to"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__151"
-
-    // $ANTLR start "T__152"
-    public final void mT__152() throws RecognitionException {
-        try {
-            int _type = T__152;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:150:8: ( 'dto' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:150:10: 'dto'
-            {
-            match("dto"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__152"
-
-    // $ANTLR start "T__153"
-    public final void mT__153() throws RecognitionException {
-        try {
-            int _type = T__153;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:151:8: ( 'startevent' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:151:10: 'startevent'
-            {
-            match("startevent"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__153"
-
-    // $ANTLR start "T__154"
-    public final void mT__154() throws RecognitionException {
-        try {
-            int _type = T__154;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:152:8: ( 'for' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:152:10: 'for'
-            {
-            match("for"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__154"
-
-    // $ANTLR start "T__155"
-    public final void mT__155() throws RecognitionException {
-        try {
-            int _type = T__155;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:153:8: ( 'endevent' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:153:10: 'endevent'
-            {
-            match("endevent"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__155"
-
-    // $ANTLR start "T__156"
-    public final void mT__156() throws RecognitionException {
-        try {
-            int _type = T__156;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:154:8: ( 'usertask' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:154:10: 'usertask'
-            {
-            match("usertask"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__156"
-
-    // $ANTLR start "T__157"
-    public final void mT__157() throws RecognitionException {
-        try {
-            int _type = T__157;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:155:8: ( 'operates on' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:155:10: 'operates on'
-            {
-            match("operates on"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__157"
-
-    // $ANTLR start "T__158"
-    public final void mT__158() throws RecognitionException {
-        try {
-            int _type = T__158;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:156:8: ( 'onentry' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:156:10: 'onentry'
-            {
-            match("onentry"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__158"
-
-    // $ANTLR start "T__159"
-    public final void mT__159() throws RecognitionException {
-        try {
-            int _type = T__159;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:157:8: ( 'onexit' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:157:10: 'onexit'
-            {
-            match("onexit"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__159"
-
-    // $ANTLR start "T__160"
-    public final void mT__160() throws RecognitionException {
-        try {
-            int _type = T__160;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:158:8: ( 'callActivity' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:158:10: 'callActivity'
-            {
-            match("callActivity"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__160"
-
-    // $ANTLR start "T__161"
-    public final void mT__161() throws RecognitionException {
-        try {
-            int _type = T__161;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:159:8: ( 'scripttask' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:159:10: 'scripttask'
-            {
-            match("scripttask"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__161"
-
-    // $ANTLR start "T__162"
-    public final void mT__162() throws RecognitionException {
-        try {
-            int _type = T__162;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:160:8: ( 'function' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:160:10: 'function'
-            {
-            match("function"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__162"
-
-    // $ANTLR start "T__163"
-    public final void mT__163() throws RecognitionException {
-        try {
-            int _type = T__163;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:161:8: ( 'persisttask' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:161:10: 'persisttask'
-            {
-            match("persisttask"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__163"
-
-    // $ANTLR start "T__164"
-    public final void mT__164() throws RecognitionException {
-        try {
-            int _type = T__164;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:162:8: ( 'servicetask' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:162:10: 'servicetask'
-            {
-            match("servicetask"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__164"
-
-    // $ANTLR start "T__165"
-    public final void mT__165() throws RecognitionException {
-        try {
-            int _type = T__165;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:163:8: ( 'run' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:163:10: 'run'
-            {
-            match("run"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__165"
-
-    // $ANTLR start "T__166"
-    public final void mT__166() throws RecognitionException {
-        try {
-            int _type = T__166;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:164:8: ( 'as' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:164:10: 'as'
-            {
-            match("as"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__166"
-
-    // $ANTLR start "T__167"
-    public final void mT__167() throws RecognitionException {
-        try {
-            int _type = T__167;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:165:8: ( 'asynchron with' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:165:10: 'asynchron with'
-            {
-            match("asynchron with"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__167"
-
-    // $ANTLR start "T__168"
-    public final void mT__168() throws RecognitionException {
-        try {
-            int _type = T__168;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:166:8: ( 'secs timeout' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:166:10: 'secs timeout'
-            {
-            match("secs timeout"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__168"
-
-    // $ANTLR start "T__169"
-    public final void mT__169() throws RecognitionException {
-        try {
-            int _type = T__169;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:167:8: ( 'webservice' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:167:10: 'webservice'
-            {
-            match("webservice"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__169"
-
-    // $ANTLR start "T__170"
-    public final void mT__170() throws RecognitionException {
-        try {
-            int _type = T__170;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:168:8: ( 'case' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:168:10: 'case'
-            {
-            match("case"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__170"
-
-    // $ANTLR start "T__171"
-    public final void mT__171() throws RecognitionException {
-        try {
-            int _type = T__171;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:169:8: ( 'when' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:169:10: 'when'
-            {
-            match("when"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__171"
-
-    // $ANTLR start "T__172"
-    public final void mT__172() throws RecognitionException {
-        try {
-            int _type = T__172;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:170:8: ( 'exclusivesplitgateway' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:170:10: 'exclusivesplitgateway'
-            {
-            match("exclusivesplitgateway"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__172"
-
-    // $ANTLR start "T__173"
-    public final void mT__173() throws RecognitionException {
-        try {
-            int _type = T__173;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:171:8: ( 'inclusivesplitgateway' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:171:10: 'inclusivesplitgateway'
-            {
-            match("inclusivesplitgateway"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__173"
-
-    // $ANTLR start "T__174"
-    public final void mT__174() throws RecognitionException {
-        try {
-            int _type = T__174;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:172:8: ( ';' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:172:10: ';'
-            {
-            match(';'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__174"
-
-    // $ANTLR start "T__175"
-    public final void mT__175() throws RecognitionException {
-        try {
-            int _type = T__175;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:173:8: ( '@' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:173:10: '@'
-            {
-            match('@'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__175"
-
-    // $ANTLR start "T__176"
-    public final void mT__176() throws RecognitionException {
-        try {
-            int _type = T__176;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:174:8: ( '(' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:174:10: '('
-            {
-            match('('); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__176"
-
-    // $ANTLR start "T__177"
-    public final void mT__177() throws RecognitionException {
-        try {
-            int _type = T__177;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:175:8: ( ')' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:175:10: ')'
-            {
-            match(')'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__177"
-
-    // $ANTLR start "T__178"
-    public final void mT__178() throws RecognitionException {
-        try {
-            int _type = T__178;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:176:8: ( ',' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:176:10: ','
-            {
-            match(','); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__178"
-
-    // $ANTLR start "T__179"
-    public final void mT__179() throws RecognitionException {
-        try {
-            int _type = T__179;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:177:8: ( ']' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:177:10: ']'
-            {
-            match(']'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__179"
-
-    // $ANTLR start "T__180"
-    public final void mT__180() throws RecognitionException {
-        try {
-            int _type = T__180;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:178:8: ( '#' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:178:10: '#'
-            {
-            match('#'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__180"
-
-    // $ANTLR start "T__181"
-    public final void mT__181() throws RecognitionException {
-        try {
-            int _type = T__181;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:179:8: ( '[' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:179:10: '['
-            {
-            match('['); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__181"
-
-    // $ANTLR start "T__182"
-    public final void mT__182() throws RecognitionException {
-        try {
-            int _type = T__182;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:180:8: ( 'instanceof' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:180:10: 'instanceof'
-            {
-            match("instanceof"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__182"
-
-    // $ANTLR start "T__183"
-    public final void mT__183() throws RecognitionException {
-        try {
-            int _type = T__183;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:181:8: ( 'if' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:181:10: 'if'
-            {
-            match("if"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__183"
-
-    // $ANTLR start "T__184"
-    public final void mT__184() throws RecognitionException {
-        try {
-            int _type = T__184;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:182:8: ( 'else' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:182:10: 'else'
-            {
-            match("else"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__184"
-
-    // $ANTLR start "T__185"
-    public final void mT__185() throws RecognitionException {
-        try {
-            int _type = T__185;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:183:8: ( 'switch' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:183:10: 'switch'
-            {
-            match("switch"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__185"
-
-    // $ANTLR start "T__186"
-    public final void mT__186() throws RecognitionException {
-        try {
-            int _type = T__186;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:184:8: ( ':' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:184:10: ':'
-            {
-            match(':'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__186"
-
-    // $ANTLR start "T__187"
-    public final void mT__187() throws RecognitionException {
-        try {
-            int _type = T__187;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:185:8: ( 'default' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:185:10: 'default'
-            {
-            match("default"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__187"
-
-    // $ANTLR start "T__188"
-    public final void mT__188() throws RecognitionException {
-        try {
-            int _type = T__188;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:186:8: ( 'while' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:186:10: 'while'
-            {
-            match("while"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__188"
-
-    // $ANTLR start "T__189"
-    public final void mT__189() throws RecognitionException {
-        try {
-            int _type = T__189;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:187:8: ( 'do' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:187:10: 'do'
-            {
-            match("do"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__189"
-
-    // $ANTLR start "T__190"
-    public final void mT__190() throws RecognitionException {
-        try {
-            int _type = T__190;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:188:8: ( 'new' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:188:10: 'new'
-            {
-            match("new"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__190"
-
-    // $ANTLR start "T__191"
-    public final void mT__191() throws RecognitionException {
-        try {
-            int _type = T__191;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:189:8: ( 'null' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:189:10: 'null'
-            {
-            match("null"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__191"
-
-    // $ANTLR start "T__192"
-    public final void mT__192() throws RecognitionException {
-        try {
-            int _type = T__192;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:190:8: ( 'typeof' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:190:10: 'typeof'
-            {
-            match("typeof"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__192"
-
-    // $ANTLR start "T__193"
-    public final void mT__193() throws RecognitionException {
-        try {
-            int _type = T__193;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:191:8: ( 'throw' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:191:10: 'throw'
-            {
-            match("throw"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__193"
-
-    // $ANTLR start "T__194"
-    public final void mT__194() throws RecognitionException {
-        try {
-            int _type = T__194;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:192:8: ( 'return' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:192:10: 'return'
-            {
-            match("return"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__194"
-
-    // $ANTLR start "T__195"
-    public final void mT__195() throws RecognitionException {
-        try {
-            int _type = T__195;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:193:8: ( 'try' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:193:10: 'try'
-            {
-            match("try"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__195"
-
-    // $ANTLR start "T__196"
-    public final void mT__196() throws RecognitionException {
-        try {
-            int _type = T__196;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:194:8: ( 'finally' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:194:10: 'finally'
-            {
-            match("finally"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__196"
-
-    // $ANTLR start "T__197"
-    public final void mT__197() throws RecognitionException {
-        try {
-            int _type = T__197;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:195:8: ( 'synchronized' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:195:10: 'synchronized'
-            {
-            match("synchronized"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__197"
-
-    // $ANTLR start "T__198"
-    public final void mT__198() throws RecognitionException {
-        try {
-            int _type = T__198;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:196:8: ( 'catch' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:196:10: 'catch'
-            {
-            match("catch"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__198"
-
-    // $ANTLR start "T__199"
-    public final void mT__199() throws RecognitionException {
-        try {
-            int _type = T__199;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:197:8: ( '?' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:197:10: '?'
-            {
-            match('?'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__199"
-
-    // $ANTLR start "T__200"
-    public final void mT__200() throws RecognitionException {
-        try {
-            int _type = T__200;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:198:8: ( '&' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:198:10: '&'
-            {
-            match('&'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__200"
-
-    // $ANTLR start "T__201"
-    public final void mT__201() throws RecognitionException {
-        try {
-            int _type = T__201;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:199:8: ( 'image' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:199:10: 'image'
-            {
-            match("image"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__201"
-
-    // $ANTLR start "T__202"
-    public final void mT__202() throws RecognitionException {
-        try {
-            int _type = T__202;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:200:8: ( 'icon' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:200:10: 'icon'
-            {
-            match("icon"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__202"
-
-    // $ANTLR start "T__203"
-    public final void mT__203() throws RecognitionException {
-        try {
-            int _type = T__203;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:201:8: ( 'logging' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:201:10: 'logging'
-            {
-            match("logging"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__203"
-
-    // $ANTLR start "T__204"
-    public final void mT__204() throws RecognitionException {
-        try {
-            int _type = T__204;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:202:8: ( 'described by' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:202:10: 'described by'
-            {
-            match("described by"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__204"
-
-    // $ANTLR start "T__205"
-    public final void mT__205() throws RecognitionException {
-        try {
-            int _type = T__205;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:203:8: ( '::' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:203:10: '::'
-            {
-            match("::"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__205"
-
-    // $ANTLR start "T__206"
-    public final void mT__206() throws RecognitionException {
-        try {
-            int _type = T__206;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:204:8: ( '?.' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:204:10: '?.'
-            {
-            match("?."); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__206"
-
-    // $ANTLR start "T__207"
-    public final void mT__207() throws RecognitionException {
-        try {
-            int _type = T__207;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:205:8: ( '|' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:205:10: '|'
-            {
-            match('|'); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__207"
-
-    // $ANTLR start "T__208"
-    public final void mT__208() throws RecognitionException {
-        try {
-            int _type = T__208;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:206:8: ( 'var' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:206:10: 'var'
-            {
-            match("var"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__208"
-
-    // $ANTLR start "T__209"
-    public final void mT__209() throws RecognitionException {
-        try {
-            int _type = T__209;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:207:8: ( 'true' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:207:10: 'true'
-            {
-            match("true"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "T__209"
-
-    // $ANTLR start "RULE_HEX"
-    public final void mRULE_HEX() throws RecognitionException {
-        try {
-            int _type = RULE_HEX;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28248:10: ( ( '0x' | '0X' ) ( '0' .. '9' | 'a' .. 'f' | 'A' .. 'F' | '_' )+ ( '#' ( ( 'b' | 'B' ) ( 'i' | 'I' ) | ( 'l' | 'L' ) ) )? )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28248:12: ( '0x' | '0X' ) ( '0' .. '9' | 'a' .. 'f' | 'A' .. 'F' | '_' )+ ( '#' ( ( 'b' | 'B' ) ( 'i' | 'I' ) | ( 'l' | 'L' ) ) )?
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28248:12: ( '0x' | '0X' )
-            int alt1=2;
-            int LA1_0 = input.LA(1);
-
-            if ( (LA1_0=='0') ) {
-                int LA1_1 = input.LA(2);
-
-                if ( (LA1_1=='x') ) {
-                    alt1=1;
-                }
-                else if ( (LA1_1=='X') ) {
-                    alt1=2;
-                }
-                else {
-                    NoViableAltException nvae =
-                        new NoViableAltException("", 1, 1, input);
-
-                    throw nvae;
-                }
-            }
-            else {
-                NoViableAltException nvae =
-                    new NoViableAltException("", 1, 0, input);
-
-                throw nvae;
-            }
-            switch (alt1) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28248:13: '0x'
-                    {
-                    match("0x"); 
-
-
-                    }
-                    break;
-                case 2 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28248:18: '0X'
-                    {
-                    match("0X"); 
-
-
-                    }
-                    break;
-
-            }
-
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28248:24: ( '0' .. '9' | 'a' .. 'f' | 'A' .. 'F' | '_' )+
-            int cnt2=0;
-            loop2:
-            do {
-                int alt2=2;
-                int LA2_0 = input.LA(1);
-
-                if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='F')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='f')) ) {
-                    alt2=1;
-                }
-
-
-                switch (alt2) {
-            	case 1 :
-            	    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:
-            	    {
-            	    if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='F')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='f') ) {
-            	        input.consume();
-
-            	    }
-            	    else {
-            	        MismatchedSetException mse = new MismatchedSetException(null,input);
-            	        recover(mse);
-            	        throw mse;}
-
-
-            	    }
-            	    break;
-
-            	default :
-            	    if ( cnt2 >= 1 ) break loop2;
-                        EarlyExitException eee =
-                            new EarlyExitException(2, input);
-                        throw eee;
-                }
-                cnt2++;
-            } while (true);
-
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28248:58: ( '#' ( ( 'b' | 'B' ) ( 'i' | 'I' ) | ( 'l' | 'L' ) ) )?
-            int alt4=2;
-            int LA4_0 = input.LA(1);
-
-            if ( (LA4_0=='#') ) {
-                alt4=1;
-            }
-            switch (alt4) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28248:59: '#' ( ( 'b' | 'B' ) ( 'i' | 'I' ) | ( 'l' | 'L' ) )
-                    {
-                    match('#'); 
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28248:63: ( ( 'b' | 'B' ) ( 'i' | 'I' ) | ( 'l' | 'L' ) )
-                    int alt3=2;
-                    int LA3_0 = input.LA(1);
-
-                    if ( (LA3_0=='B'||LA3_0=='b') ) {
-                        alt3=1;
-                    }
-                    else if ( (LA3_0=='L'||LA3_0=='l') ) {
-                        alt3=2;
-                    }
-                    else {
-                        NoViableAltException nvae =
-                            new NoViableAltException("", 3, 0, input);
-
-                        throw nvae;
-                    }
-                    switch (alt3) {
-                        case 1 :
-                            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28248:64: ( 'b' | 'B' ) ( 'i' | 'I' )
-                            {
-                            if ( input.LA(1)=='B'||input.LA(1)=='b' ) {
-                                input.consume();
-
-                            }
-                            else {
-                                MismatchedSetException mse = new MismatchedSetException(null,input);
-                                recover(mse);
-                                throw mse;}
-
-                            if ( input.LA(1)=='I'||input.LA(1)=='i' ) {
-                                input.consume();
-
-                            }
-                            else {
-                                MismatchedSetException mse = new MismatchedSetException(null,input);
-                                recover(mse);
-                                throw mse;}
-
-
-                            }
-                            break;
-                        case 2 :
-                            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28248:84: ( 'l' | 'L' )
-                            {
-                            if ( input.LA(1)=='L'||input.LA(1)=='l' ) {
-                                input.consume();
-
-                            }
-                            else {
-                                MismatchedSetException mse = new MismatchedSetException(null,input);
-                                recover(mse);
-                                throw mse;}
-
-
-                            }
-                            break;
-
-                    }
-
-
-                    }
-                    break;
-
-            }
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "RULE_HEX"
-
-    // $ANTLR start "RULE_INT"
-    public final void mRULE_INT() throws RecognitionException {
-        try {
-            int _type = RULE_INT;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28250:10: ( '0' .. '9' ( '0' .. '9' | '_' )* )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28250:12: '0' .. '9' ( '0' .. '9' | '_' )*
-            {
-            matchRange('0','9'); 
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28250:21: ( '0' .. '9' | '_' )*
-            loop5:
-            do {
-                int alt5=2;
-                int LA5_0 = input.LA(1);
-
-                if ( ((LA5_0>='0' && LA5_0<='9')||LA5_0=='_') ) {
-                    alt5=1;
-                }
-
-
-                switch (alt5) {
-            	case 1 :
-            	    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:
-            	    {
-            	    if ( (input.LA(1)>='0' && input.LA(1)<='9')||input.LA(1)=='_' ) {
-            	        input.consume();
-
-            	    }
-            	    else {
-            	        MismatchedSetException mse = new MismatchedSetException(null,input);
-            	        recover(mse);
-            	        throw mse;}
-
-
-            	    }
-            	    break;
-
-            	default :
-            	    break loop5;
-                }
-            } while (true);
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "RULE_INT"
-
-    // $ANTLR start "RULE_DECIMAL"
-    public final void mRULE_DECIMAL() throws RecognitionException {
-        try {
-            int _type = RULE_DECIMAL;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28252:14: ( RULE_INT ( ( 'e' | 'E' ) ( '+' | '-' )? RULE_INT )? ( ( 'b' | 'B' ) ( 'i' | 'I' | 'd' | 'D' ) | ( 'l' | 'L' | 'd' | 'D' | 'f' | 'F' ) )? )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28252:16: RULE_INT ( ( 'e' | 'E' ) ( '+' | '-' )? RULE_INT )? ( ( 'b' | 'B' ) ( 'i' | 'I' | 'd' | 'D' ) | ( 'l' | 'L' | 'd' | 'D' | 'f' | 'F' ) )?
-            {
-            mRULE_INT(); 
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28252:25: ( ( 'e' | 'E' ) ( '+' | '-' )? RULE_INT )?
-            int alt7=2;
-            int LA7_0 = input.LA(1);
-
-            if ( (LA7_0=='E'||LA7_0=='e') ) {
-                alt7=1;
-            }
-            switch (alt7) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28252:26: ( 'e' | 'E' ) ( '+' | '-' )? RULE_INT
-                    {
-                    if ( input.LA(1)=='E'||input.LA(1)=='e' ) {
-                        input.consume();
-
-                    }
-                    else {
-                        MismatchedSetException mse = new MismatchedSetException(null,input);
-                        recover(mse);
-                        throw mse;}
-
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28252:36: ( '+' | '-' )?
-                    int alt6=2;
-                    int LA6_0 = input.LA(1);
-
-                    if ( (LA6_0=='+'||LA6_0=='-') ) {
-                        alt6=1;
-                    }
-                    switch (alt6) {
-                        case 1 :
-                            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:
-                            {
-                            if ( input.LA(1)=='+'||input.LA(1)=='-' ) {
-                                input.consume();
-
-                            }
-                            else {
-                                MismatchedSetException mse = new MismatchedSetException(null,input);
-                                recover(mse);
-                                throw mse;}
-
-
-                            }
-                            break;
-
-                    }
-
-                    mRULE_INT(); 
-
-                    }
-                    break;
-
-            }
-
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28252:58: ( ( 'b' | 'B' ) ( 'i' | 'I' | 'd' | 'D' ) | ( 'l' | 'L' | 'd' | 'D' | 'f' | 'F' ) )?
-            int alt8=3;
-            int LA8_0 = input.LA(1);
-
-            if ( (LA8_0=='B'||LA8_0=='b') ) {
-                alt8=1;
-            }
-            else if ( (LA8_0=='D'||LA8_0=='F'||LA8_0=='L'||LA8_0=='d'||LA8_0=='f'||LA8_0=='l') ) {
-                alt8=2;
-            }
-            switch (alt8) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28252:59: ( 'b' | 'B' ) ( 'i' | 'I' | 'd' | 'D' )
-                    {
-                    if ( input.LA(1)=='B'||input.LA(1)=='b' ) {
-                        input.consume();
-
-                    }
-                    else {
-                        MismatchedSetException mse = new MismatchedSetException(null,input);
-                        recover(mse);
-                        throw mse;}
-
-                    if ( input.LA(1)=='D'||input.LA(1)=='I'||input.LA(1)=='d'||input.LA(1)=='i' ) {
-                        input.consume();
-
-                    }
-                    else {
-                        MismatchedSetException mse = new MismatchedSetException(null,input);
-                        recover(mse);
-                        throw mse;}
-
-
-                    }
-                    break;
-                case 2 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28252:87: ( 'l' | 'L' | 'd' | 'D' | 'f' | 'F' )
-                    {
-                    if ( input.LA(1)=='D'||input.LA(1)=='F'||input.LA(1)=='L'||input.LA(1)=='d'||input.LA(1)=='f'||input.LA(1)=='l' ) {
-                        input.consume();
-
-                    }
-                    else {
-                        MismatchedSetException mse = new MismatchedSetException(null,input);
-                        recover(mse);
-                        throw mse;}
-
-
-                    }
-                    break;
-
-            }
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "RULE_DECIMAL"
-
-    // $ANTLR start "RULE_ID"
-    public final void mRULE_ID() throws RecognitionException {
-        try {
-            int _type = RULE_ID;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28254:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' | '0' .. '9' )* )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28254:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' | '0' .. '9' )*
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28254:11: ( '^' )?
-            int alt9=2;
-            int LA9_0 = input.LA(1);
-
-            if ( (LA9_0=='^') ) {
-                alt9=1;
-            }
-            switch (alt9) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28254:11: '^'
-                    {
-                    match('^'); 
-
-                    }
-                    break;
-
-            }
-
-            if ( input.LA(1)=='$'||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {
-                input.consume();
-
-            }
-            else {
-                MismatchedSetException mse = new MismatchedSetException(null,input);
-                recover(mse);
-                throw mse;}
-
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28254:44: ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' | '0' .. '9' )*
-            loop10:
-            do {
-                int alt10=2;
-                int LA10_0 = input.LA(1);
-
-                if ( (LA10_0=='$'||(LA10_0>='0' && LA10_0<='9')||(LA10_0>='A' && LA10_0<='Z')||LA10_0=='_'||(LA10_0>='a' && LA10_0<='z')) ) {
-                    alt10=1;
-                }
-
-
-                switch (alt10) {
-            	case 1 :
-            	    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:
-            	    {
-            	    if ( input.LA(1)=='$'||(input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {
-            	        input.consume();
-
-            	    }
-            	    else {
-            	        MismatchedSetException mse = new MismatchedSetException(null,input);
-            	        recover(mse);
-            	        throw mse;}
-
-
-            	    }
-            	    break;
-
-            	default :
-            	    break loop10;
-                }
-            } while (true);
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "RULE_ID"
-
-    // $ANTLR start "RULE_STRING"
-    public final void mRULE_STRING() throws RecognitionException {
-        try {
-            int _type = RULE_STRING;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:13: ( ( '\"' ( '\\\\' . | ~ ( ( '\\\\' | '\"' ) ) )* ( '\"' )? | '\\'' ( '\\\\' . | ~ ( ( '\\\\' | '\\'' ) ) )* ( '\\'' )? ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:15: ( '\"' ( '\\\\' . | ~ ( ( '\\\\' | '\"' ) ) )* ( '\"' )? | '\\'' ( '\\\\' . | ~ ( ( '\\\\' | '\\'' ) ) )* ( '\\'' )? )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:15: ( '\"' ( '\\\\' . | ~ ( ( '\\\\' | '\"' ) ) )* ( '\"' )? | '\\'' ( '\\\\' . | ~ ( ( '\\\\' | '\\'' ) ) )* ( '\\'' )? )
-            int alt15=2;
-            int LA15_0 = input.LA(1);
-
-            if ( (LA15_0=='\"') ) {
-                alt15=1;
-            }
-            else if ( (LA15_0=='\'') ) {
-                alt15=2;
-            }
-            else {
-                NoViableAltException nvae =
-                    new NoViableAltException("", 15, 0, input);
-
-                throw nvae;
-            }
-            switch (alt15) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:16: '\"' ( '\\\\' . | ~ ( ( '\\\\' | '\"' ) ) )* ( '\"' )?
-                    {
-                    match('\"'); 
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:20: ( '\\\\' . | ~ ( ( '\\\\' | '\"' ) ) )*
-                    loop11:
-                    do {
-                        int alt11=3;
-                        int LA11_0 = input.LA(1);
-
-                        if ( (LA11_0=='\\') ) {
-                            alt11=1;
-                        }
-                        else if ( ((LA11_0>='\u0000' && LA11_0<='!')||(LA11_0>='#' && LA11_0<='[')||(LA11_0>=']' && LA11_0<='\uFFFF')) ) {
-                            alt11=2;
-                        }
-
-
-                        switch (alt11) {
-                    	case 1 :
-                    	    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:21: '\\\\' .
-                    	    {
-                    	    match('\\'); 
-                    	    matchAny(); 
-
-                    	    }
-                    	    break;
-                    	case 2 :
-                    	    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:28: ~ ( ( '\\\\' | '\"' ) )
-                    	    {
-                    	    if ( (input.LA(1)>='\u0000' && input.LA(1)<='!')||(input.LA(1)>='#' && input.LA(1)<='[')||(input.LA(1)>=']' && input.LA(1)<='\uFFFF') ) {
-                    	        input.consume();
-
-                    	    }
-                    	    else {
-                    	        MismatchedSetException mse = new MismatchedSetException(null,input);
-                    	        recover(mse);
-                    	        throw mse;}
-
-
-                    	    }
-                    	    break;
-
-                    	default :
-                    	    break loop11;
-                        }
-                    } while (true);
-
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:44: ( '\"' )?
-                    int alt12=2;
-                    int LA12_0 = input.LA(1);
-
-                    if ( (LA12_0=='\"') ) {
-                        alt12=1;
-                    }
-                    switch (alt12) {
-                        case 1 :
-                            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:44: '\"'
-                            {
-                            match('\"'); 
-
-                            }
-                            break;
-
-                    }
-
-
-                    }
-                    break;
-                case 2 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:49: '\\'' ( '\\\\' . | ~ ( ( '\\\\' | '\\'' ) ) )* ( '\\'' )?
-                    {
-                    match('\''); 
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:54: ( '\\\\' . | ~ ( ( '\\\\' | '\\'' ) ) )*
-                    loop13:
-                    do {
-                        int alt13=3;
-                        int LA13_0 = input.LA(1);
-
-                        if ( (LA13_0=='\\') ) {
-                            alt13=1;
-                        }
-                        else if ( ((LA13_0>='\u0000' && LA13_0<='&')||(LA13_0>='(' && LA13_0<='[')||(LA13_0>=']' && LA13_0<='\uFFFF')) ) {
-                            alt13=2;
-                        }
-
-
-                        switch (alt13) {
-                    	case 1 :
-                    	    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:55: '\\\\' .
-                    	    {
-                    	    match('\\'); 
-                    	    matchAny(); 
-
-                    	    }
-                    	    break;
-                    	case 2 :
-                    	    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:62: ~ ( ( '\\\\' | '\\'' ) )
-                    	    {
-                    	    if ( (input.LA(1)>='\u0000' && input.LA(1)<='&')||(input.LA(1)>='(' && input.LA(1)<='[')||(input.LA(1)>=']' && input.LA(1)<='\uFFFF') ) {
-                    	        input.consume();
-
-                    	    }
-                    	    else {
-                    	        MismatchedSetException mse = new MismatchedSetException(null,input);
-                    	        recover(mse);
-                    	        throw mse;}
-
-
-                    	    }
-                    	    break;
-
-                    	default :
-                    	    break loop13;
-                        }
-                    } while (true);
-
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:79: ( '\\'' )?
-                    int alt14=2;
-                    int LA14_0 = input.LA(1);
-
-                    if ( (LA14_0=='\'') ) {
-                        alt14=1;
-                    }
-                    switch (alt14) {
-                        case 1 :
-                            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28256:79: '\\''
-                            {
-                            match('\''); 
-
-                            }
-                            break;
-
-                    }
-
-
-                    }
-                    break;
-
-            }
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "RULE_STRING"
-
-    // $ANTLR start "RULE_ML_COMMENT"
-    public final void mRULE_ML_COMMENT() throws RecognitionException {
-        try {
-            int _type = RULE_ML_COMMENT;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28258:17: ( '/*' ( options {greedy=false; } : . )* '*/' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28258:19: '/*' ( options {greedy=false; } : . )* '*/'
-            {
-            match("/*"); 
-
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28258:24: ( options {greedy=false; } : . )*
-            loop16:
-            do {
-                int alt16=2;
-                int LA16_0 = input.LA(1);
-
-                if ( (LA16_0=='*') ) {
-                    int LA16_1 = input.LA(2);
-
-                    if ( (LA16_1=='/') ) {
-                        alt16=2;
-                    }
-                    else if ( ((LA16_1>='\u0000' && LA16_1<='.')||(LA16_1>='0' && LA16_1<='\uFFFF')) ) {
-                        alt16=1;
-                    }
-
-
-                }
-                else if ( ((LA16_0>='\u0000' && LA16_0<=')')||(LA16_0>='+' && LA16_0<='\uFFFF')) ) {
-                    alt16=1;
-                }
-
-
-                switch (alt16) {
-            	case 1 :
-            	    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28258:52: .
-            	    {
-            	    matchAny(); 
-
-            	    }
-            	    break;
-
-            	default :
-            	    break loop16;
-                }
-            } while (true);
-
-            match("*/"); 
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "RULE_ML_COMMENT"
-
-    // $ANTLR start "RULE_SL_COMMENT"
-    public final void mRULE_SL_COMMENT() throws RecognitionException {
-        try {
-            int _type = RULE_SL_COMMENT;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28260:17: ( '//' (~ ( ( '\\n' | '\\r' ) ) )* ( ( '\\r' )? '\\n' )? )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28260:19: '//' (~ ( ( '\\n' | '\\r' ) ) )* ( ( '\\r' )? '\\n' )?
-            {
-            match("//"); 
-
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28260:24: (~ ( ( '\\n' | '\\r' ) ) )*
-            loop17:
-            do {
-                int alt17=2;
-                int LA17_0 = input.LA(1);
-
-                if ( ((LA17_0>='\u0000' && LA17_0<='\t')||(LA17_0>='\u000B' && LA17_0<='\f')||(LA17_0>='\u000E' && LA17_0<='\uFFFF')) ) {
-                    alt17=1;
-                }
-
-
-                switch (alt17) {
-            	case 1 :
-            	    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28260:24: ~ ( ( '\\n' | '\\r' ) )
-            	    {
-            	    if ( (input.LA(1)>='\u0000' && input.LA(1)<='\t')||(input.LA(1)>='\u000B' && input.LA(1)<='\f')||(input.LA(1)>='\u000E' && input.LA(1)<='\uFFFF') ) {
-            	        input.consume();
-
-            	    }
-            	    else {
-            	        MismatchedSetException mse = new MismatchedSetException(null,input);
-            	        recover(mse);
-            	        throw mse;}
-
-
-            	    }
-            	    break;
-
-            	default :
-            	    break loop17;
-                }
-            } while (true);
-
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28260:40: ( ( '\\r' )? '\\n' )?
-            int alt19=2;
-            int LA19_0 = input.LA(1);
-
-            if ( (LA19_0=='\n'||LA19_0=='\r') ) {
-                alt19=1;
-            }
-            switch (alt19) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28260:41: ( '\\r' )? '\\n'
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28260:41: ( '\\r' )?
-                    int alt18=2;
-                    int LA18_0 = input.LA(1);
-
-                    if ( (LA18_0=='\r') ) {
-                        alt18=1;
-                    }
-                    switch (alt18) {
-                        case 1 :
-                            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28260:41: '\\r'
-                            {
-                            match('\r'); 
-
-                            }
-                            break;
-
-                    }
-
-                    match('\n'); 
-
-                    }
-                    break;
-
-            }
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "RULE_SL_COMMENT"
-
-    // $ANTLR start "RULE_WS"
-    public final void mRULE_WS() throws RecognitionException {
-        try {
-            int _type = RULE_WS;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28262:9: ( ( ' ' | '\\t' | '\\r' | '\\n' )+ )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28262:11: ( ' ' | '\\t' | '\\r' | '\\n' )+
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28262:11: ( ' ' | '\\t' | '\\r' | '\\n' )+
-            int cnt20=0;
-            loop20:
-            do {
-                int alt20=2;
-                int LA20_0 = input.LA(1);
-
-                if ( ((LA20_0>='\t' && LA20_0<='\n')||LA20_0=='\r'||LA20_0==' ') ) {
-                    alt20=1;
-                }
-
-
-                switch (alt20) {
-            	case 1 :
-            	    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:
-            	    {
-            	    if ( (input.LA(1)>='\t' && input.LA(1)<='\n')||input.LA(1)=='\r'||input.LA(1)==' ' ) {
-            	        input.consume();
-
-            	    }
-            	    else {
-            	        MismatchedSetException mse = new MismatchedSetException(null,input);
-            	        recover(mse);
-            	        throw mse;}
-
-
-            	    }
-            	    break;
-
-            	default :
-            	    if ( cnt20 >= 1 ) break loop20;
-                        EarlyExitException eee =
-                            new EarlyExitException(20, input);
-                        throw eee;
-                }
-                cnt20++;
-            } while (true);
-
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "RULE_WS"
-
-    // $ANTLR start "RULE_ANY_OTHER"
-    public final void mRULE_ANY_OTHER() throws RecognitionException {
-        try {
-            int _type = RULE_ANY_OTHER;
-            int _channel = DEFAULT_TOKEN_CHANNEL;
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28264:16: ( . )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:28264:18: .
-            {
-            matchAny(); 
-
-            }
-
-            state.type = _type;
-            state.channel = _channel;
-        }
-        finally {
-        }
-    }
-    // $ANTLR end "RULE_ANY_OTHER"
-
-    public void mTokens() throws RecognitionException {
-        // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:8: ( T__13 | T__14 | T__15 | T__16 | T__17 | T__18 | T__19 | T__20 | T__21 | T__22 | T__23 | T__24 | T__25 | T__26 | T__27 | T__28 | T__29 | T__30 | T__31 | T__32 | T__33 | T__34 | T__35 | T__36 | T__37 | T__38 | T__39 | T__40 | T__41 | T__42 | T__43 | T__44 | T__45 | T__46 | T__47 | T__48 | T__49 | T__50 | T__51 | T__52 | T__53 | T__54 | T__55 | T__56 | T__57 | T__58 | T__59 | T__60 | T__61 | T__62 | T__63 | T__64 | T__65 | T__66 | T__67 | T__68 | T__69 | T__70 | T__71 | T__72 | T__73 | T__74 | T__75 | T__76 | T__77 | T__78 | T__79 | T__80 | T__81 | T__82 | T__83 | T__84 | T__85 | T__86 | T__87 | T__88 | T__89 | T__90 | T__91 | T__92 | T__93 | T__94 | T__95 | T__96 | T__97 | T__98 | T__99 | T__100 | T__101 | T__102 | T__103 | T__104 | T__105 | T__106 | T__107 | T__108 | T__109 | T__110 | T__111 | T__112 | T__113 | T__114 | T__115 | T__116 | T__117 | T__118 | T__119 | T__120 | T__121 | T__122 | T__123 | T__124 | T__125 | T__126 | T__127 | T__128 | T__129 | T__130 | T__131 | T__132 | T__133 | T__134 | T__135 | T__136 | T__137 | T__138 | T__139 | T__140 | T__141 | T__142 | T__143 | T__144 | T__145 | T__146 | T__147 | T__148 | T__149 | T__150 | T__151 | T__152 | T__153 | T__154 | T__155 | T__156 | T__157 | T__158 | T__159 | T__160 | T__161 | T__162 | T__163 | T__164 | T__165 | T__166 | T__167 | T__168 | T__169 | T__170 | T__171 | T__172 | T__173 | T__174 | T__175 | T__176 | T__177 | T__178 | T__179 | T__180 | T__181 | T__182 | T__183 | T__184 | T__185 | T__186 | T__187 | T__188 | T__189 | T__190 | T__191 | T__192 | T__193 | T__194 | T__195 | T__196 | T__197 | T__198 | T__199 | T__200 | T__201 | T__202 | T__203 | T__204 | T__205 | T__206 | T__207 | T__208 | T__209 | RULE_HEX | RULE_INT | RULE_DECIMAL | RULE_ID | RULE_STRING | RULE_ML_COMMENT | RULE_SL_COMMENT | RULE_WS | RULE_ANY_OTHER )
-        int alt21=206;
-        alt21 = dfa21.predict(input);
-        switch (alt21) {
-            case 1 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:10: T__13
-                {
-                mT__13(); 
-
-                }
-                break;
-            case 2 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:16: T__14
-                {
-                mT__14(); 
-
-                }
-                break;
-            case 3 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:22: T__15
-                {
-                mT__15(); 
-
-                }
-                break;
-            case 4 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:28: T__16
-                {
-                mT__16(); 
-
-                }
-                break;
-            case 5 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:34: T__17
-                {
-                mT__17(); 
-
-                }
-                break;
-            case 6 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:40: T__18
-                {
-                mT__18(); 
-
-                }
-                break;
-            case 7 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:46: T__19
-                {
-                mT__19(); 
-
-                }
-                break;
-            case 8 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:52: T__20
-                {
-                mT__20(); 
-
-                }
-                break;
-            case 9 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:58: T__21
-                {
-                mT__21(); 
-
-                }
-                break;
-            case 10 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:64: T__22
-                {
-                mT__22(); 
-
-                }
-                break;
-            case 11 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:70: T__23
-                {
-                mT__23(); 
-
-                }
-                break;
-            case 12 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:76: T__24
-                {
-                mT__24(); 
-
-                }
-                break;
-            case 13 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:82: T__25
-                {
-                mT__25(); 
-
-                }
-                break;
-            case 14 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:88: T__26
-                {
-                mT__26(); 
-
-                }
-                break;
-            case 15 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:94: T__27
-                {
-                mT__27(); 
-
-                }
-                break;
-            case 16 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:100: T__28
-                {
-                mT__28(); 
-
-                }
-                break;
-            case 17 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:106: T__29
-                {
-                mT__29(); 
-
-                }
-                break;
-            case 18 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:112: T__30
-                {
-                mT__30(); 
-
-                }
-                break;
-            case 19 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:118: T__31
-                {
-                mT__31(); 
-
-                }
-                break;
-            case 20 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:124: T__32
-                {
-                mT__32(); 
-
-                }
-                break;
-            case 21 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:130: T__33
-                {
-                mT__33(); 
-
-                }
-                break;
-            case 22 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:136: T__34
-                {
-                mT__34(); 
-
-                }
-                break;
-            case 23 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:142: T__35
-                {
-                mT__35(); 
-
-                }
-                break;
-            case 24 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:148: T__36
-                {
-                mT__36(); 
-
-                }
-                break;
-            case 25 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:154: T__37
-                {
-                mT__37(); 
-
-                }
-                break;
-            case 26 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:160: T__38
-                {
-                mT__38(); 
-
-                }
-                break;
-            case 27 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:166: T__39
-                {
-                mT__39(); 
-
-                }
-                break;
-            case 28 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:172: T__40
-                {
-                mT__40(); 
-
-                }
-                break;
-            case 29 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:178: T__41
-                {
-                mT__41(); 
-
-                }
-                break;
-            case 30 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:184: T__42
-                {
-                mT__42(); 
-
-                }
-                break;
-            case 31 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:190: T__43
-                {
-                mT__43(); 
-
-                }
-                break;
-            case 32 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:196: T__44
-                {
-                mT__44(); 
-
-                }
-                break;
-            case 33 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:202: T__45
-                {
-                mT__45(); 
-
-                }
-                break;
-            case 34 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:208: T__46
-                {
-                mT__46(); 
-
-                }
-                break;
-            case 35 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:214: T__47
-                {
-                mT__47(); 
-
-                }
-                break;
-            case 36 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:220: T__48
-                {
-                mT__48(); 
-
-                }
-                break;
-            case 37 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:226: T__49
-                {
-                mT__49(); 
-
-                }
-                break;
-            case 38 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:232: T__50
-                {
-                mT__50(); 
-
-                }
-                break;
-            case 39 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:238: T__51
-                {
-                mT__51(); 
-
-                }
-                break;
-            case 40 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:244: T__52
-                {
-                mT__52(); 
-
-                }
-                break;
-            case 41 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:250: T__53
-                {
-                mT__53(); 
-
-                }
-                break;
-            case 42 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:256: T__54
-                {
-                mT__54(); 
-
-                }
-                break;
-            case 43 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:262: T__55
-                {
-                mT__55(); 
-
-                }
-                break;
-            case 44 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:268: T__56
-                {
-                mT__56(); 
-
-                }
-                break;
-            case 45 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:274: T__57
-                {
-                mT__57(); 
-
-                }
-                break;
-            case 46 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:280: T__58
-                {
-                mT__58(); 
-
-                }
-                break;
-            case 47 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:286: T__59
-                {
-                mT__59(); 
-
-                }
-                break;
-            case 48 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:292: T__60
-                {
-                mT__60(); 
-
-                }
-                break;
-            case 49 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:298: T__61
-                {
-                mT__61(); 
-
-                }
-                break;
-            case 50 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:304: T__62
-                {
-                mT__62(); 
-
-                }
-                break;
-            case 51 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:310: T__63
-                {
-                mT__63(); 
-
-                }
-                break;
-            case 52 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:316: T__64
-                {
-                mT__64(); 
-
-                }
-                break;
-            case 53 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:322: T__65
-                {
-                mT__65(); 
-
-                }
-                break;
-            case 54 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:328: T__66
-                {
-                mT__66(); 
-
-                }
-                break;
-            case 55 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:334: T__67
-                {
-                mT__67(); 
-
-                }
-                break;
-            case 56 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:340: T__68
-                {
-                mT__68(); 
-
-                }
-                break;
-            case 57 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:346: T__69
-                {
-                mT__69(); 
-
-                }
-                break;
-            case 58 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:352: T__70
-                {
-                mT__70(); 
-
-                }
-                break;
-            case 59 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:358: T__71
-                {
-                mT__71(); 
-
-                }
-                break;
-            case 60 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:364: T__72
-                {
-                mT__72(); 
-
-                }
-                break;
-            case 61 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:370: T__73
-                {
-                mT__73(); 
-
-                }
-                break;
-            case 62 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:376: T__74
-                {
-                mT__74(); 
-
-                }
-                break;
-            case 63 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:382: T__75
-                {
-                mT__75(); 
-
-                }
-                break;
-            case 64 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:388: T__76
-                {
-                mT__76(); 
-
-                }
-                break;
-            case 65 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:394: T__77
-                {
-                mT__77(); 
-
-                }
-                break;
-            case 66 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:400: T__78
-                {
-                mT__78(); 
-
-                }
-                break;
-            case 67 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:406: T__79
-                {
-                mT__79(); 
-
-                }
-                break;
-            case 68 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:412: T__80
-                {
-                mT__80(); 
-
-                }
-                break;
-            case 69 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:418: T__81
-                {
-                mT__81(); 
-
-                }
-                break;
-            case 70 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:424: T__82
-                {
-                mT__82(); 
-
-                }
-                break;
-            case 71 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:430: T__83
-                {
-                mT__83(); 
-
-                }
-                break;
-            case 72 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:436: T__84
-                {
-                mT__84(); 
-
-                }
-                break;
-            case 73 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:442: T__85
-                {
-                mT__85(); 
-
-                }
-                break;
-            case 74 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:448: T__86
-                {
-                mT__86(); 
-
-                }
-                break;
-            case 75 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:454: T__87
-                {
-                mT__87(); 
-
-                }
-                break;
-            case 76 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:460: T__88
-                {
-                mT__88(); 
-
-                }
-                break;
-            case 77 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:466: T__89
-                {
-                mT__89(); 
-
-                }
-                break;
-            case 78 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:472: T__90
-                {
-                mT__90(); 
-
-                }
-                break;
-            case 79 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:478: T__91
-                {
-                mT__91(); 
-
-                }
-                break;
-            case 80 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:484: T__92
-                {
-                mT__92(); 
-
-                }
-                break;
-            case 81 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:490: T__93
-                {
-                mT__93(); 
-
-                }
-                break;
-            case 82 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:496: T__94
-                {
-                mT__94(); 
-
-                }
-                break;
-            case 83 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:502: T__95
-                {
-                mT__95(); 
-
-                }
-                break;
-            case 84 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:508: T__96
-                {
-                mT__96(); 
-
-                }
-                break;
-            case 85 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:514: T__97
-                {
-                mT__97(); 
-
-                }
-                break;
-            case 86 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:520: T__98
-                {
-                mT__98(); 
-
-                }
-                break;
-            case 87 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:526: T__99
-                {
-                mT__99(); 
-
-                }
-                break;
-            case 88 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:532: T__100
-                {
-                mT__100(); 
-
-                }
-                break;
-            case 89 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:539: T__101
-                {
-                mT__101(); 
-
-                }
-                break;
-            case 90 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:546: T__102
-                {
-                mT__102(); 
-
-                }
-                break;
-            case 91 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:553: T__103
-                {
-                mT__103(); 
-
-                }
-                break;
-            case 92 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:560: T__104
-                {
-                mT__104(); 
-
-                }
-                break;
-            case 93 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:567: T__105
-                {
-                mT__105(); 
-
-                }
-                break;
-            case 94 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:574: T__106
-                {
-                mT__106(); 
-
-                }
-                break;
-            case 95 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:581: T__107
-                {
-                mT__107(); 
-
-                }
-                break;
-            case 96 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:588: T__108
-                {
-                mT__108(); 
-
-                }
-                break;
-            case 97 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:595: T__109
-                {
-                mT__109(); 
-
-                }
-                break;
-            case 98 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:602: T__110
-                {
-                mT__110(); 
-
-                }
-                break;
-            case 99 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:609: T__111
-                {
-                mT__111(); 
-
-                }
-                break;
-            case 100 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:616: T__112
-                {
-                mT__112(); 
-
-                }
-                break;
-            case 101 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:623: T__113
-                {
-                mT__113(); 
-
-                }
-                break;
-            case 102 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:630: T__114
-                {
-                mT__114(); 
-
-                }
-                break;
-            case 103 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:637: T__115
-                {
-                mT__115(); 
-
-                }
-                break;
-            case 104 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:644: T__116
-                {
-                mT__116(); 
-
-                }
-                break;
-            case 105 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:651: T__117
-                {
-                mT__117(); 
-
-                }
-                break;
-            case 106 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:658: T__118
-                {
-                mT__118(); 
-
-                }
-                break;
-            case 107 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:665: T__119
-                {
-                mT__119(); 
-
-                }
-                break;
-            case 108 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:672: T__120
-                {
-                mT__120(); 
-
-                }
-                break;
-            case 109 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:679: T__121
-                {
-                mT__121(); 
-
-                }
-                break;
-            case 110 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:686: T__122
-                {
-                mT__122(); 
-
-                }
-                break;
-            case 111 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:693: T__123
-                {
-                mT__123(); 
-
-                }
-                break;
-            case 112 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:700: T__124
-                {
-                mT__124(); 
-
-                }
-                break;
-            case 113 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:707: T__125
-                {
-                mT__125(); 
-
-                }
-                break;
-            case 114 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:714: T__126
-                {
-                mT__126(); 
-
-                }
-                break;
-            case 115 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:721: T__127
-                {
-                mT__127(); 
-
-                }
-                break;
-            case 116 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:728: T__128
-                {
-                mT__128(); 
-
-                }
-                break;
-            case 117 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:735: T__129
-                {
-                mT__129(); 
-
-                }
-                break;
-            case 118 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:742: T__130
-                {
-                mT__130(); 
-
-                }
-                break;
-            case 119 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:749: T__131
-                {
-                mT__131(); 
-
-                }
-                break;
-            case 120 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:756: T__132
-                {
-                mT__132(); 
-
-                }
-                break;
-            case 121 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:763: T__133
-                {
-                mT__133(); 
-
-                }
-                break;
-            case 122 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:770: T__134
-                {
-                mT__134(); 
-
-                }
-                break;
-            case 123 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:777: T__135
-                {
-                mT__135(); 
-
-                }
-                break;
-            case 124 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:784: T__136
-                {
-                mT__136(); 
-
-                }
-                break;
-            case 125 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:791: T__137
-                {
-                mT__137(); 
-
-                }
-                break;
-            case 126 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:798: T__138
-                {
-                mT__138(); 
-
-                }
-                break;
-            case 127 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:805: T__139
-                {
-                mT__139(); 
-
-                }
-                break;
-            case 128 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:812: T__140
-                {
-                mT__140(); 
-
-                }
-                break;
-            case 129 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:819: T__141
-                {
-                mT__141(); 
-
-                }
-                break;
-            case 130 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:826: T__142
-                {
-                mT__142(); 
-
-                }
-                break;
-            case 131 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:833: T__143
-                {
-                mT__143(); 
-
-                }
-                break;
-            case 132 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:840: T__144
-                {
-                mT__144(); 
-
-                }
-                break;
-            case 133 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:847: T__145
-                {
-                mT__145(); 
-
-                }
-                break;
-            case 134 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:854: T__146
-                {
-                mT__146(); 
-
-                }
-                break;
-            case 135 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:861: T__147
-                {
-                mT__147(); 
-
-                }
-                break;
-            case 136 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:868: T__148
-                {
-                mT__148(); 
-
-                }
-                break;
-            case 137 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:875: T__149
-                {
-                mT__149(); 
-
-                }
-                break;
-            case 138 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:882: T__150
-                {
-                mT__150(); 
-
-                }
-                break;
-            case 139 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:889: T__151
-                {
-                mT__151(); 
-
-                }
-                break;
-            case 140 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:896: T__152
-                {
-                mT__152(); 
-
-                }
-                break;
-            case 141 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:903: T__153
-                {
-                mT__153(); 
-
-                }
-                break;
-            case 142 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:910: T__154
-                {
-                mT__154(); 
-
-                }
-                break;
-            case 143 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:917: T__155
-                {
-                mT__155(); 
-
-                }
-                break;
-            case 144 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:924: T__156
-                {
-                mT__156(); 
-
-                }
-                break;
-            case 145 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:931: T__157
-                {
-                mT__157(); 
-
-                }
-                break;
-            case 146 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:938: T__158
-                {
-                mT__158(); 
-
-                }
-                break;
-            case 147 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:945: T__159
-                {
-                mT__159(); 
-
-                }
-                break;
-            case 148 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:952: T__160
-                {
-                mT__160(); 
-
-                }
-                break;
-            case 149 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:959: T__161
-                {
-                mT__161(); 
-
-                }
-                break;
-            case 150 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:966: T__162
-                {
-                mT__162(); 
-
-                }
-                break;
-            case 151 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:973: T__163
-                {
-                mT__163(); 
-
-                }
-                break;
-            case 152 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:980: T__164
-                {
-                mT__164(); 
-
-                }
-                break;
-            case 153 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:987: T__165
-                {
-                mT__165(); 
-
-                }
-                break;
-            case 154 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:994: T__166
-                {
-                mT__166(); 
-
-                }
-                break;
-            case 155 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1001: T__167
-                {
-                mT__167(); 
-
-                }
-                break;
-            case 156 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1008: T__168
-                {
-                mT__168(); 
-
-                }
-                break;
-            case 157 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1015: T__169
-                {
-                mT__169(); 
-
-                }
-                break;
-            case 158 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1022: T__170
-                {
-                mT__170(); 
-
-                }
-                break;
-            case 159 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1029: T__171
-                {
-                mT__171(); 
-
-                }
-                break;
-            case 160 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1036: T__172
-                {
-                mT__172(); 
-
-                }
-                break;
-            case 161 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1043: T__173
-                {
-                mT__173(); 
-
-                }
-                break;
-            case 162 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1050: T__174
-                {
-                mT__174(); 
-
-                }
-                break;
-            case 163 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1057: T__175
-                {
-                mT__175(); 
-
-                }
-                break;
-            case 164 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1064: T__176
-                {
-                mT__176(); 
-
-                }
-                break;
-            case 165 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1071: T__177
-                {
-                mT__177(); 
-
-                }
-                break;
-            case 166 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1078: T__178
-                {
-                mT__178(); 
-
-                }
-                break;
-            case 167 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1085: T__179
-                {
-                mT__179(); 
-
-                }
-                break;
-            case 168 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1092: T__180
-                {
-                mT__180(); 
-
-                }
-                break;
-            case 169 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1099: T__181
-                {
-                mT__181(); 
-
-                }
-                break;
-            case 170 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1106: T__182
-                {
-                mT__182(); 
-
-                }
-                break;
-            case 171 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1113: T__183
-                {
-                mT__183(); 
-
-                }
-                break;
-            case 172 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1120: T__184
-                {
-                mT__184(); 
-
-                }
-                break;
-            case 173 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1127: T__185
-                {
-                mT__185(); 
-
-                }
-                break;
-            case 174 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1134: T__186
-                {
-                mT__186(); 
-
-                }
-                break;
-            case 175 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1141: T__187
-                {
-                mT__187(); 
-
-                }
-                break;
-            case 176 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1148: T__188
-                {
-                mT__188(); 
-
-                }
-                break;
-            case 177 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1155: T__189
-                {
-                mT__189(); 
-
-                }
-                break;
-            case 178 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1162: T__190
-                {
-                mT__190(); 
-
-                }
-                break;
-            case 179 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1169: T__191
-                {
-                mT__191(); 
-
-                }
-                break;
-            case 180 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1176: T__192
-                {
-                mT__192(); 
-
-                }
-                break;
-            case 181 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1183: T__193
-                {
-                mT__193(); 
-
-                }
-                break;
-            case 182 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1190: T__194
-                {
-                mT__194(); 
-
-                }
-                break;
-            case 183 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1197: T__195
-                {
-                mT__195(); 
-
-                }
-                break;
-            case 184 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1204: T__196
-                {
-                mT__196(); 
-
-                }
-                break;
-            case 185 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1211: T__197
-                {
-                mT__197(); 
-
-                }
-                break;
-            case 186 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1218: T__198
-                {
-                mT__198(); 
-
-                }
-                break;
-            case 187 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1225: T__199
-                {
-                mT__199(); 
-
-                }
-                break;
-            case 188 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1232: T__200
-                {
-                mT__200(); 
-
-                }
-                break;
-            case 189 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1239: T__201
-                {
-                mT__201(); 
-
-                }
-                break;
-            case 190 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1246: T__202
-                {
-                mT__202(); 
-
-                }
-                break;
-            case 191 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1253: T__203
-                {
-                mT__203(); 
-
-                }
-                break;
-            case 192 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1260: T__204
-                {
-                mT__204(); 
-
-                }
-                break;
-            case 193 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1267: T__205
-                {
-                mT__205(); 
-
-                }
-                break;
-            case 194 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1274: T__206
-                {
-                mT__206(); 
-
-                }
-                break;
-            case 195 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1281: T__207
-                {
-                mT__207(); 
-
-                }
-                break;
-            case 196 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1288: T__208
-                {
-                mT__208(); 
-
-                }
-                break;
-            case 197 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1295: T__209
-                {
-                mT__209(); 
-
-                }
-                break;
-            case 198 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1302: RULE_HEX
-                {
-                mRULE_HEX(); 
-
-                }
-                break;
-            case 199 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1311: RULE_INT
-                {
-                mRULE_INT(); 
-
-                }
-                break;
-            case 200 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1320: RULE_DECIMAL
-                {
-                mRULE_DECIMAL(); 
-
-                }
-                break;
-            case 201 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1333: RULE_ID
-                {
-                mRULE_ID(); 
-
-                }
-                break;
-            case 202 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1341: RULE_STRING
-                {
-                mRULE_STRING(); 
-
-                }
-                break;
-            case 203 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1353: RULE_ML_COMMENT
-                {
-                mRULE_ML_COMMENT(); 
-
-                }
-                break;
-            case 204 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1369: RULE_SL_COMMENT
-                {
-                mRULE_SL_COMMENT(); 
-
-                }
-                break;
-            case 205 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1385: RULE_WS
-                {
-                mRULE_WS(); 
-
-                }
-                break;
-            case 206 :
-                // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1:1393: RULE_ANY_OTHER
-                {
-                mRULE_ANY_OTHER(); 
-
-                }
-                break;
-
-        }
-
-    }
-
-
-    protected DFA21 dfa21 = new DFA21(this);
-    static final String DFA21_eotS =
-        "\1\uffff\1\66\1\70\1\72\1\75\1\101\1\104\1\110\1\112\1\114\1\116"+
-        "\1\120\1\122\1\125\21\130\2\uffff\1\130\10\uffff\1\u00a5\1\130\2"+
-        "\u00aa\1\63\5\uffff\1\u00af\26\uffff\1\u00b1\5\uffff\1\u00b3\4\uffff"+
-        "\2\130\1\uffff\15\130\1\u00cc\7\130\1\u00d5\2\130\1\u00da\2\130"+
-        "\1\u00df\14\130\1\u00f3\4\130\1\u00fd\6\130\1\u010b\4\130\1\u0111"+
-        "\4\130\2\uffff\3\130\12\uffff\2\130\1\uffff\1\u00aa\12\uffff\1\u011c"+
-        "\1\u011d\6\130\1\u0126\5\130\1\u012d\11\130\1\uffff\3\130\1\u013b"+
-        "\4\130\1\uffff\2\130\1\uffff\1\130\1\uffff\1\u0145\1\130\1\u0147"+
-        "\1\130\1\uffff\21\130\1\uffff\1\130\1\uffff\6\130\1\u0167\1\130"+
-        "\1\u0169\1\uffff\1\u016a\5\130\1\u0170\6\130\1\uffff\5\130\1\uffff"+
-        "\10\130\1\u0186\1\130\2\uffff\7\130\1\u018f\1\uffff\1\u0190\1\130"+
-        "\1\u0194\3\130\1\uffff\6\130\1\u019f\2\130\1\u01a2\1\130\1\u01a4"+
-        "\1\130\1\uffff\11\130\1\uffff\1\130\1\uffff\1\u01b0\1\130\1\u01b3"+
-        "\10\130\1\u01bc\2\130\1\u01c0\1\130\1\u01c3\1\130\1\u01c5\4\uffff"+
-        "\1\130\1\u01ca\6\130\1\uffff\1\u01d3\2\uffff\2\130\1\u01d7\1\130"+
-        "\1\u01da\1\uffff\5\130\1\u01e0\7\130\1\u01e8\1\u01e9\1\130\1\u01eb"+
-        "\2\130\1\u01ee\1\130\1\uffff\1\u01f0\1\u01f1\4\130\1\uffff\1\130"+
-        "\2\uffff\1\130\1\uffff\1\130\1\uffff\1\u01fa\3\130\1\uffff\3\130"+
-        "\1\u0201\2\uffff\2\130\1\uffff\1\u0204\1\uffff\11\130\1\u020e\1"+
-        "\u020f\1\uffff\1\130\2\uffff\2\130\1\u0213\3\130\1\u0218\1\u0219"+
-        "\1\uffff\2\130\2\uffff\1\130\2\uffff\1\130\1\uffff\1\130\1\uffff"+
-        "\1\u0223\1\130\1\uffff\1\u0225\1\u0227\1\u0228\3\130\1\uffff\1\130"+
-        "\1\uffff\2\130\2\uffff\1\u0234\2\uffff\5\130\1\uffff\1\u023a\1\u023c"+
-        "\1\u023d\4\130\2\uffff\1\u0242\1\uffff\2\130\1\uffff\1\u0245\2\uffff"+
-        "\4\130\1\u024a\1\130\1\u024c\1\130\1\uffff\4\130\1\u0252\1\u0253"+
-        "\1\uffff\2\130\1\uffff\1\130\1\u0257\2\130\1\u025a\1\130\1\u025c"+
-        "\2\130\2\uffff\1\u025f\1\u0260\1\130\1\uffff\3\130\3\uffff\1\130"+
-        "\1\u0266\4\uffff\2\130\1\u026a\1\uffff\1\130\4\uffff\1\130\1\u0271"+
-        "\1\130\4\uffff\3\130\2\uffff\1\130\1\u0278\2\130\1\u027b\4\uffff"+
-        "\1\130\1\u027d\2\130\1\uffff\2\130\1\uffff\1\u0282\3\130\1\uffff"+
-        "\1\130\1\uffff\2\130\1\uffff\2\130\2\uffff\2\130\1\u028d\1\uffff"+
-        "\1\130\1\u028f\1\uffff\1\u0290\1\uffff\2\130\2\uffff\1\130\1\u0294"+
-        "\1\130\1\u0296\1\u0297\1\uffff\1\130\1\u0299\2\uffff\1\130\4\uffff"+
-        "\1\u029b\2\uffff\1\130\1\u029f\1\130\1\u02a1\2\uffff\2\130\1\uffff"+
-        "\1\130\2\uffff\3\130\1\uffff\1\130\1\u02ab\1\130\1\u02ad\1\130\1"+
-        "\u02b0\4\130\1\uffff\1\u02b6\2\uffff\3\130\1\uffff\1\130\2\uffff"+
-        "\1\u02bb\1\uffff\1\u02bc\3\uffff\1\u02bd\1\uffff\1\130\3\uffff\1"+
-        "\u02bf\3\130\1\u02c3\1\130\1\u02c5\1\uffff\1\130\1\uffff\2\130\1"+
-        "\uffff\5\130\2\uffff\2\130\1\u02d0\3\uffff\1\130\1\uffff\1\130\1"+
-        "\u02d3\1\130\1\uffff\1\130\1\uffff\1\130\1\u02d7\2\130\1\u02da\1"+
-        "\130\1\u02dc\3\130\2\uffff\1\130\2\uffff\1\u02e1\1\130\1\uffff\1"+
-        "\130\1\u02e4\1\uffff\1\130\1\uffff\1\130\1\uffff\1\u02e7\1\130\1"+
-        "\uffff\1\130\1\u02ea\1\uffff\2\130\1\uffff\1\u02ed\1\130\1\uffff"+
-        "\1\130\1\u02f0\1\uffff\2\130\1\uffff\14\130\1\u02ff\1\u0300\2\uffff";
-    static final String DFA21_eofS =
-        "\u0301\uffff";
-    static final String DFA21_minS =
-        "\1\0\1\75\1\174\1\46\1\53\1\55\2\52\3\75\1\76\2\56\1\141\1\144"+
-        "\2\143\1\141\1\153\3\141\1\145\1\160\3\145\1\141\1\162\1\141\2\uffff"+
-        "\1\145\10\uffff\1\72\1\145\2\60\1\44\5\uffff\1\75\26\uffff\1\75"+
-        "\5\uffff\1\74\4\uffff\1\154\1\141\1\uffff\1\143\1\144\1\151\1\145"+
-        "\1\163\1\141\1\160\1\156\1\141\1\162\1\151\1\141\1\143\1\44\1\157"+
-        "\1\154\1\141\1\154\2\156\1\145\1\44\1\145\1\162\1\44\1\147\1\141"+
-        "\1\44\1\160\1\165\1\156\1\145\1\143\1\156\1\163\1\151\1\142\1\146"+
-        "\1\143\1\156\1\44\1\145\1\147\1\160\1\156\1\44\1\157\1\146\1\155"+
-        "\1\141\1\147\1\154\1\44\1\141\1\157\1\164\1\162\1\44\1\143\1\154"+
-        "\1\157\1\155\2\uffff\1\162\1\142\1\145\12\uffff\1\167\1\154\1\uffff"+
-        "\1\60\12\uffff\2\44\1\162\1\145\1\150\1\157\1\145\1\164\1\44\1\145"+
-        "\1\162\1\145\1\143\1\162\1\44\1\166\1\163\1\151\1\164\1\157\1\147"+
-        "\1\157\1\154\1\164\1\uffff\1\156\1\163\1\147\1\44\1\144\1\143\1"+
-        "\141\1\156\1\uffff\1\162\1\155\1\uffff\1\157\1\uffff\1\44\1\163"+
-        "\1\44\1\145\1\uffff\1\145\1\163\1\143\1\163\1\156\1\143\1\144\1"+
-        "\153\1\165\1\151\1\154\2\151\1\164\1\141\1\147\1\153\1\142\1\157"+
-        "\1\uffff\1\162\1\156\1\150\1\154\1\165\1\151\1\44\1\156\1\44\1\uffff"+
-        "\1\44\1\141\1\143\1\145\1\162\1\160\1\44\1\155\1\143\3\145\1\143"+
-        "\1\uffff\1\162\1\143\1\141\1\157\1\156\1\uffff\1\153\1\154\1\143"+
-        "\1\156\1\153\1\163\1\156\1\154\1\44\1\154\2\uffff\1\144\1\156\1"+
-        "\141\1\165\1\162\1\40\1\166\1\44\1\uffff\1\44\1\151\1\44\1\162\1"+
-        "\150\1\143\1\uffff\1\151\1\40\1\160\1\143\1\162\1\145\1\44\1\165"+
-        "\1\141\1\44\1\145\1\44\1\141\1\uffff\1\145\1\164\1\154\1\141\1\164"+
-        "\1\151\1\141\1\151\1\167\1\uffff\1\150\1\uffff\1\44\1\157\1\44\2"+
-        "\151\1\164\2\145\1\141\1\163\1\143\1\44\1\164\1\154\1\44\1\164\1"+
-        "\44\1\151\1\44\4\uffff\1\141\1\44\1\147\1\164\1\171\1\145\1\162"+
-        "\1\172\1\uffff\1\44\2\uffff\1\165\1\162\1\44\1\164\1\44\1\uffff"+
-        "\2\145\1\156\1\101\1\162\1\44\1\150\1\164\1\153\1\156\1\143\1\167"+
-        "\1\143\2\44\1\153\1\44\1\154\1\145\1\44\1\145\1\uffff\2\44\1\144"+
-        "\1\156\1\163\1\164\1\uffff\1\145\2\uffff\1\143\1\uffff\1\145\1\uffff"+
-        "\1\44\1\162\1\150\1\143\1\uffff\1\164\1\150\1\164\1\44\2\uffff\1"+
-        "\163\1\156\1\uffff\1\44\1\uffff\2\162\1\151\1\154\1\171\1\162\2"+
-        "\164\1\156\2\44\1\uffff\1\146\2\uffff\1\154\1\163\1\44\1\163\1\146"+
-        "\1\147\2\44\1\uffff\1\157\1\145\1\142\1\uffff\1\151\2\uffff\1\156"+
-        "\1\uffff\1\144\1\uffff\1\44\1\141\1\uffff\3\44\1\145\1\156\1\145"+
-        "\1\142\1\157\1\uffff\1\154\1\151\2\uffff\1\44\2\uffff\1\156\1\154"+
-        "\1\144\1\143\1\141\1\uffff\3\44\1\164\1\150\1\163\1\150\2\uffff"+
-        "\1\44\1\uffff\1\157\1\162\1\uffff\1\44\2\uffff\1\163\1\151\1\147"+
-        "\1\151\1\44\1\156\1\44\1\166\1\uffff\1\157\1\55\1\145\1\164\2\44"+
-        "\1\uffff\1\151\1\143\1\uffff\1\144\1\44\1\157\1\171\1\44\1\171\1"+
-        "\44\1\145\1\141\2\uffff\2\44\1\164\1\uffff\1\163\1\151\1\145\3\uffff"+
-        "\1\162\1\44\4\uffff\1\157\1\147\1\44\1\uffff\1\163\1\uffff\1\142"+
-        "\2\uffff\1\164\1\44\1\55\4\uffff\1\141\1\164\1\142\2\uffff\1\164"+
-        "\1\44\1\141\1\164\1\44\4\uffff\1\151\1\44\1\55\1\162\1\uffff\1\141"+
-        "\1\166\1\uffff\1\44\1\157\1\145\1\166\1\uffff\1\164\1\uffff\1\145"+
-        "\1\156\1\uffff\1\164\1\141\2\uffff\1\166\1\145\1\44\1\uffff\1\156"+
-        "\1\44\1\uffff\1\44\1\uffff\1\163\1\164\2\uffff\1\164\1\44\1\156"+
-        "\2\44\1\uffff\1\156\1\44\2\uffff\1\153\4\uffff\1\44\1\uffff\1\146"+
-        "\1\144\1\44\1\145\1\44\1\61\1\uffff\1\162\1\151\1\uffff\1\157\2"+
-        "\uffff\1\157\1\144\1\151\1\uffff\1\156\1\44\1\145\1\44\1\156\1\44"+
-        "\1\141\1\163\1\145\1\157\1\uffff\1\44\2\uffff\1\40\1\145\1\141\1"+
-        "\uffff\1\145\2\uffff\1\44\1\uffff\1\44\3\uffff\1\44\1\uffff\1\144"+
-        "\3\uffff\1\44\1\166\2\156\1\44\1\143\1\44\1\uffff\1\163\1\uffff"+
-        "\1\164\1\172\1\uffff\1\163\1\153\1\163\1\146\1\162\2\uffff\2\163"+
-        "\1\44\3\uffff\1\40\1\uffff\1\151\1\44\1\40\1\uffff\1\145\1\uffff"+
-        "\1\160\1\44\1\145\1\153\1\44\1\160\1\44\1\157\1\40\1\153\2\uffff"+
-        "\1\164\2\uffff\1\44\1\154\1\uffff\1\144\1\44\1\uffff\1\154\1\uffff"+
-        "\1\165\1\uffff\1\44\1\171\1\uffff\1\151\1\44\1\uffff\1\151\1\160"+
-        "\1\uffff\1\44\1\164\1\uffff\1\164\1\44\1\uffff\2\147\1\uffff\2\141"+
-        "\2\164\2\145\2\167\2\141\2\171\2\44\2\uffff";
-    static final String DFA21_maxS =
-        "\1\uffff\1\76\1\174\1\46\1\75\1\76\5\75\1\76\1\56\1\72\1\143\2"+
-        "\171\1\156\1\165\1\160\1\171\1\162\1\165\1\157\1\163\1\165\1\164"+
-        "\1\157\1\167\1\164\1\160\2\uffff\1\157\10\uffff\1\72\1\165\1\170"+
-        "\1\154\1\172\5\uffff\1\75\26\uffff\1\75\5\uffff\1\74\4\uffff\1\162"+
-        "\1\141\1\uffff\1\164\1\144\1\151\1\145\1\163\1\141\1\160\1\156\1"+
-        "\164\1\162\1\151\1\160\1\163\1\172\1\157\1\154\1\141\1\162\2\156"+
-        "\1\145\1\172\1\145\1\162\1\172\1\147\1\171\1\172\1\160\1\165\1\162"+
-        "\1\157\1\143\1\156\1\163\1\151\1\156\1\146\1\147\1\156\1\172\1\151"+
-        "\1\147\1\164\1\156\1\172\1\157\1\163\1\155\1\154\1\155\1\164\1\172"+
-        "\1\141\1\157\1\164\1\162\1\172\1\143\1\154\1\157\1\155\2\uffff\1"+
-        "\162\1\142\1\151\12\uffff\1\167\1\154\1\uffff\1\154\12\uffff\2\172"+
-        "\1\162\1\145\1\154\1\157\1\163\1\164\1\172\1\145\1\164\1\145\1\143"+
-        "\1\162\1\172\1\166\1\163\1\151\1\164\1\157\1\147\1\157\1\154\1\164"+
-        "\1\uffff\1\156\1\163\1\147\1\172\1\144\1\143\1\141\1\170\1\uffff"+
-        "\1\162\1\155\1\uffff\1\157\1\uffff\1\172\1\163\1\172\1\145\1\uffff"+
-        "\1\145\1\163\1\143\1\163\1\156\1\143\1\144\1\153\1\165\1\151\1\154"+
-        "\2\151\1\164\1\153\1\147\1\153\1\164\1\157\1\uffff\1\162\1\156\1"+
-        "\150\1\154\1\167\1\151\1\172\1\156\1\172\1\uffff\1\172\1\141\1\143"+
-        "\1\145\1\162\1\160\1\172\1\155\1\143\1\154\2\145\1\143\1\uffff\1"+
-        "\162\1\143\1\145\1\157\1\156\1\uffff\1\153\1\154\1\143\1\156\1\153"+
-        "\1\163\1\156\1\154\1\172\1\154\2\uffff\1\144\1\156\1\141\1\165\1"+
-        "\162\1\40\1\166\1\172\1\uffff\1\172\1\151\1\172\1\162\1\150\1\143"+
-        "\1\uffff\1\151\1\40\1\160\1\143\1\162\1\145\1\172\1\165\1\141\1"+
-        "\172\1\145\1\172\1\141\1\uffff\1\145\1\164\1\154\1\141\1\164\1\151"+
-        "\1\141\1\151\1\167\1\uffff\1\150\1\uffff\1\172\1\157\1\172\2\151"+
-        "\1\164\2\145\1\141\1\163\1\143\1\172\1\164\1\154\1\172\1\164\1\172"+
-        "\1\151\1\172\4\uffff\1\141\1\172\1\147\1\164\1\171\1\145\1\162\1"+
-        "\172\1\uffff\1\172\2\uffff\1\165\1\162\1\172\1\164\1\172\1\uffff"+
-        "\2\145\1\156\1\101\1\162\1\172\1\150\1\164\1\153\1\156\1\143\1\167"+
-        "\1\143\2\172\1\153\1\172\1\154\1\145\1\172\1\145\1\uffff\2\172\1"+
-        "\163\1\156\1\163\1\164\1\uffff\1\145\2\uffff\1\143\1\uffff\1\145"+
-        "\1\uffff\1\172\1\162\1\150\1\143\1\uffff\1\164\1\150\1\164\1\172"+
-        "\2\uffff\1\163\1\156\1\uffff\1\172\1\uffff\2\162\1\151\1\154\1\171"+
-        "\1\162\2\164\1\156\2\172\1\uffff\1\146\2\uffff\1\154\1\163\1\172"+
-        "\1\163\1\146\1\147\2\172\1\uffff\1\157\1\145\1\164\1\uffff\1\151"+
-        "\2\uffff\1\156\1\uffff\1\144\1\uffff\1\172\1\141\1\uffff\3\172\1"+
-        "\145\1\156\1\145\1\164\1\157\1\uffff\1\154\1\151\2\uffff\1\172\2"+
-        "\uffff\1\156\1\154\1\144\1\143\1\141\1\uffff\3\172\1\164\1\150\1"+
-        "\163\1\150\2\uffff\1\172\1\uffff\1\157\1\162\1\uffff\1\172\2\uffff"+
-        "\1\163\1\151\1\147\1\151\1\172\1\156\1\172\1\166\1\uffff\1\157\1"+
-        "\55\1\145\1\164\2\172\1\uffff\1\151\1\143\1\uffff\1\144\1\172\1"+
-        "\157\1\171\1\172\1\171\1\172\1\145\1\141\2\uffff\2\172\1\164\1\uffff"+
-        "\1\163\1\151\1\145\3\uffff\1\162\1\172\4\uffff\1\157\1\147\1\172"+
-        "\1\uffff\1\163\1\uffff\1\164\2\uffff\1\164\1\172\1\55\4\uffff\1"+
-        "\141\1\164\1\142\2\uffff\1\164\1\172\1\141\1\164\1\172\4\uffff\1"+
-        "\151\1\172\1\55\1\162\1\uffff\1\141\1\166\1\uffff\1\172\1\157\1"+
-        "\145\1\166\1\uffff\1\164\1\uffff\1\145\1\156\1\uffff\1\164\1\141"+
-        "\2\uffff\1\166\1\145\1\172\1\uffff\1\156\1\172\1\uffff\1\172\1\uffff"+
-        "\1\163\1\164\2\uffff\1\164\1\172\1\156\2\172\1\uffff\1\156\1\172"+
-        "\2\uffff\1\153\4\uffff\1\172\1\uffff\1\163\1\144\1\172\1\145\1\172"+
-        "\1\143\1\uffff\1\162\1\151\1\uffff\1\157\2\uffff\1\157\1\144\1\151"+
-        "\1\uffff\1\156\1\172\1\145\1\172\1\156\1\172\1\141\1\163\1\145\1"+
-        "\157\1\uffff\1\172\2\uffff\1\40\1\145\1\141\1\uffff\1\145\2\uffff"+
-        "\1\172\1\uffff\1\172\3\uffff\1\172\1\uffff\1\144\3\uffff\1\172\1"+
-        "\166\2\156\1\172\1\143\1\172\1\uffff\1\163\1\uffff\1\164\1\172\1"+
-        "\uffff\1\163\1\153\1\163\1\146\1\162\2\uffff\2\163\1\172\3\uffff"+
-        "\1\40\1\uffff\1\151\1\172\1\40\1\uffff\1\145\1\uffff\1\160\1\172"+
-        "\1\145\1\153\1\172\1\160\1\172\1\157\1\40\1\153\2\uffff\1\164\2"+
-        "\uffff\1\172\1\154\1\uffff\1\144\1\172\1\uffff\1\154\1\uffff\1\165"+
-        "\1\uffff\1\172\1\171\1\uffff\1\151\1\172\1\uffff\1\151\1\160\1\uffff"+
-        "\1\172\1\164\1\uffff\1\164\1\172\1\uffff\2\147\1\uffff\2\141\2\164"+
-        "\2\145\2\167\2\141\2\171\2\172\2\uffff";
-    static final String DFA21_acceptS =
-        "\37\uffff\1\u0082\1\u0083\1\uffff\1\u00a2\1\u00a3\1\u00a4\1\u00a5"+
-        "\1\u00a6\1\u00a7\1\u00a8\1\u00a9\5\uffff\1\u00c9\2\u00ca\1\u00cd"+
-        "\1\u00ce\1\uffff\1\23\1\1\1\2\1\u00c3\1\3\1\u00bc\1\4\1\35\1\26"+
-        "\1\5\1\20\1\36\1\27\1\6\1\31\1\30\1\7\1\u00cb\1\u00cc\1\32\1\10"+
-        "\1\33\1\uffff\1\34\1\15\1\16\1\24\1\17\1\uffff\1\37\1\25\1\u00c2"+
-        "\1\u00bb\2\uffff\1\u00c9\76\uffff\1\u0082\1\u0083\3\uffff\1\u00a2"+
-        "\1\u00a3\1\u00a4\1\u00a5\1\u00a6\1\u00a7\1\u00a8\1\u00a9\1\u00c1"+
-        "\1\u00ae\2\uffff\1\u00c6\1\uffff\1\u00c7\1\u00c8\1\u00ca\1\u00cd"+
-        "\1\13\1\11\1\14\1\12\1\21\1\22\30\uffff\1\u00ab\10\uffff\1\106\2"+
-        "\uffff\1\73\1\uffff\1\77\4\uffff\1\u008b\23\uffff\1\57\11\uffff"+
-        "\1\u00b1\15\uffff\1\117\5\uffff\1\u009a\12\uffff\1\40\1\u00c4\10"+
-        "\uffff\1\133\6\uffff\1\u008a\15\uffff\1\u008e\11\uffff\1\134\1\uffff"+
-        "\1\u00b7\23\uffff\1\65\1\121\1\125\1\153\10\uffff\1\u0099\1\uffff"+
-        "\1\163\1\u008c\5\uffff\1\101\25\uffff\1\u00b2\6\uffff\1\52\1\uffff"+
-        "\1\104\1\u00ac\1\uffff\1\72\1\uffff\1\71\4\uffff\1\u009c\4\uffff"+
-        "\1\131\1\55\2\uffff\1\u00be\1\uffff\1\100\13\uffff\1\u00c5\1\uffff"+
-        "\1\113\1\53\10\uffff\1\103\3\uffff\1\56\1\uffff\1\174\1\173\1\uffff"+
-        "\1\176\1\uffff\1\127\2\uffff\1\157\10\uffff\1\61\2\uffff\1\64\1"+
-        "\63\1\uffff\1\130\1\112\5\uffff\1\u009e\7\uffff\1\132\1\175\1\uffff"+
-        "\1\u0085\2\uffff\1\u009f\1\uffff\1\u00b3\1\143\10\uffff\1\45\6\uffff"+
-        "\1\u00bd\2\uffff\1\46\11\uffff\1\u00b5\1\145\3\uffff\1\140\3\uffff"+
-        "\1\114\1\54\1\76\2\uffff\1\70\1\120\1\123\1\151\3\uffff\1\160\1"+
-        "\uffff\1\u0088\1\uffff\1\60\1\136\3\uffff\1\67\1\122\1\126\1\150"+
-        "\3\uffff\1\74\1\75\5\uffff\1\u00ba\1\155\1\165\1\177\4\uffff\1\u0080"+
-        "\2\uffff\1\u00b0\4\uffff\1\137\1\uffff\1\42\2\uffff\1\156\2\uffff"+
-        "\1\u00ad\1\43\3\uffff\1\162\2\uffff\1\50\1\uffff\1\u0093\2\uffff"+
-        "\1\u00b4\1\105\5\uffff\1\171\2\uffff\1\135\1\167\1\uffff\1\66\1"+
-        "\115\1\124\1\152\1\uffff\1\u00b6\6\uffff\1\110\2\uffff\1\172\1\uffff"+
-        "\1\166\1\154\3\uffff\1\41\12\uffff\1\116\1\uffff\1\u00b8\1\u0092"+
-        "\3\uffff\1\u0084\1\uffff\1\u0081\1\161\1\uffff\1\u00bf\1\uffff\1"+
-        "\141\1\146\1\147\1\uffff\1\u00af\1\uffff\1\142\1\107\1\111\7\uffff"+
-        "\1\62\1\uffff\1\u008f\2\uffff\1\47\5\uffff\1\u0096\1\u0091\3\uffff"+
-        "\1\144\1\u0090\1\170\1\uffff\1\164\3\uffff\1\u0086\1\uffff\1\44"+
-        "\12\uffff\1\u0089\1\u00c0\1\uffff\1\102\1\u009b\2\uffff\1\u008d"+
-        "\2\uffff\1\u0095\1\uffff\1\u00aa\1\uffff\1\51\2\uffff\1\u009d\2"+
-        "\uffff\1\u0098\2\uffff\1\u0097\2\uffff\1\u00b9\2\uffff\1\u0094\2"+
-        "\uffff\1\u0087\16\uffff\1\u00a0\1\u00a1";
-    static final String DFA21_specialS =
-        "\1\0\u0300\uffff}>";
-    static final String[] DFA21_transitionS = {
-            "\11\63\2\62\2\63\1\62\22\63\1\62\1\11\1\60\1\50\1\57\1\10\1"+
-            "\3\1\61\1\44\1\45\1\6\1\4\1\46\1\5\1\14\1\7\1\54\11\55\1\52"+
-            "\1\42\1\13\1\1\1\12\1\15\1\43\32\57\1\51\1\63\1\47\1\56\1\57"+
-            "\1\63\1\35\1\36\1\34\1\32\1\17\1\22\1\57\1\33\1\21\2\57\1\27"+
-            "\1\26\1\53\1\23\1\25\1\57\1\31\1\20\1\24\1\30\1\16\1\41\3\57"+
-            "\1\37\1\2\1\40\uff82\63",
-            "\1\64\1\65",
-            "\1\67",
-            "\1\71",
-            "\1\74\21\uffff\1\73",
-            "\1\100\17\uffff\1\76\1\77",
-            "\1\103\22\uffff\1\102",
-            "\1\106\4\uffff\1\107\15\uffff\1\105",
-            "\1\111",
-            "\1\113",
-            "\1\115",
-            "\1\117",
-            "\1\121",
-            "\1\124\13\uffff\1\123",
-            "\1\126\1\uffff\1\127",
-            "\1\133\7\uffff\1\135\1\uffff\1\132\11\uffff\1\131\1\134",
-            "\1\142\1\uffff\1\141\16\uffff\1\136\1\137\1\uffff\1\143\1"+
-            "\uffff\1\140",
-            "\1\147\2\uffff\1\146\6\uffff\1\144\1\145",
-            "\1\150\7\uffff\1\154\2\uffff\1\151\2\uffff\1\152\5\uffff\1"+
-            "\153",
-            "\1\156\2\uffff\1\155\1\uffff\1\157",
-            "\1\162\3\uffff\1\160\2\uffff\1\161\6\uffff\1\164\2\uffff\1"+
-            "\163\6\uffff\1\165",
-            "\1\171\3\uffff\1\167\6\uffff\1\166\5\uffff\1\170",
-            "\1\174\7\uffff\1\172\5\uffff\1\175\5\uffff\1\173",
-            "\1\176\3\uffff\1\u0080\5\uffff\1\177",
-            "\1\u0081\2\uffff\1\u0082",
-            "\1\u0084\3\uffff\1\u0083\13\uffff\1\u0085",
-            "\1\u0088\11\uffff\1\u0086\4\uffff\1\u0087",
-            "\1\u008a\11\uffff\1\u0089",
-            "\1\u008c\6\uffff\1\u008e\3\uffff\1\u008f\2\uffff\1\u008b\7"+
-            "\uffff\1\u008d",
-            "\1\u0091\1\u0092\1\u0090",
-            "\1\u0093\3\uffff\1\u0094\6\uffff\1\u0095\3\uffff\1\u0096",
-            "",
-            "",
-            "\1\u009a\2\uffff\1\u009b\6\uffff\1\u0099",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "\1\u00a4",
-            "\1\u00a6\17\uffff\1\u00a7",
-            "\12\u00a9\10\uffff\1\u00ab\1\uffff\3\u00ab\5\uffff\1\u00ab"+
-            "\13\uffff\1\u00a8\6\uffff\1\u00a9\2\uffff\1\u00ab\1\uffff\3"+
-            "\u00ab\5\uffff\1\u00ab\13\uffff\1\u00a8",
-            "\12\u00a9\10\uffff\1\u00ab\1\uffff\3\u00ab\5\uffff\1\u00ab"+
-            "\22\uffff\1\u00a9\2\uffff\1\u00ab\1\uffff\3\u00ab\5\uffff\1"+
-            "\u00ab",
-            "\1\130\34\uffff\32\130\4\uffff\1\130\1\uffff\32\130",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "\1\u00ae",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "\1\u00b0",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "\1\u00b2",
-            "",
-            "",
-            "",
-            "",
-            "\1\u00b4\5\uffff\1\u00b5",
-            "\1\u00b6",
-            "",
-            "\1\u00b8\14\uffff\1\u00b9\3\uffff\1\u00b7",
-            "\1\u00ba",
-            "\1\u00bb",
-            "\1\u00bc",
-            "\1\u00bd",
-            "\1\u00be",
-            "\1\u00bf",
-            "\1\u00c0",
-            "\1\u00c1\1\uffff\1\u00c4\16\uffff\1\u00c3\1\uffff\1\u00c2",
-            "\1\u00c5",
-            "\1\u00c6",
-            "\1\u00c8\16\uffff\1\u00c7",
-            "\1\u00ca\2\uffff\1\u00c9\14\uffff\1\u00cb",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u00cd",
-            "\1\u00ce",
-            "\1\u00cf",
-            "\1\u00d1\5\uffff\1\u00d0",
-            "\1\u00d2",
-            "\1\u00d3",
-            "\1\u00d4",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u00d6",
-            "\1\u00d7",
-            "\1\130\10\uffff\1\u00d8\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\21\130\1\u00d9\10\130",
-            "\1\u00db",
-            "\1\u00dc\23\uffff\1\u00de\3\uffff\1\u00dd",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u00e0",
-            "\1\u00e1",
-            "\1\u00e2\3\uffff\1\u00e3",
-            "\1\u00e6\3\uffff\1\u00e4\5\uffff\1\u00e5",
-            "\1\u00e7",
-            "\1\u00e8",
-            "\1\u00e9",
-            "\1\u00ea",
-            "\1\u00ec\13\uffff\1\u00eb",
-            "\1\u00ed",
-            "\1\u00ee\3\uffff\1\u00ef",
-            "\1\u00f0",
-            "\1\130\10\uffff\1\u00f1\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\13\130\1\u00f2\16\130",
-            "\1\u00f4\3\uffff\1\u00f5",
-            "\1\u00f6",
-            "\1\u00f7\2\uffff\1\u00f9\1\u00f8",
-            "\1\u00fa",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\2\130\1\u00fc\23\130\1\u00fb\3\130",
-            "\1\u00fe",
-            "\1\u00ff\14\uffff\1\u0100",
-            "\1\u0101",
-            "\1\u0102\12\uffff\1\u0103",
-            "\1\u0104\5\uffff\1\u0105",
-            "\1\u0107\1\u0108\1\u0106\4\uffff\1\u0109\1\u010a",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u010c",
-            "\1\u010d",
-            "\1\u010e",
-            "\1\u010f",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\30\130\1\u0110\1\130",
-            "\1\u0112",
-            "\1\u0113",
-            "\1\u0114",
-            "\1\u0115",
-            "",
-            "",
-            "\1\u0116",
-            "\1\u0117",
-            "\1\u0118\3\uffff\1\u0119",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "\1\u011a",
-            "\1\u011b",
-            "",
-            "\12\u00a9\10\uffff\1\u00ab\1\uffff\3\u00ab\5\uffff\1\u00ab"+
-            "\22\uffff\1\u00a9\2\uffff\1\u00ab\1\uffff\3\u00ab\5\uffff\1"+
-            "\u00ab",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u011e",
-            "\1\u011f",
-            "\1\u0120\3\uffff\1\u0121",
-            "\1\u0122",
-            "\1\u0124\15\uffff\1\u0123",
-            "\1\u0125",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0127",
-            "\1\u0129\1\uffff\1\u0128",
-            "\1\u012a",
-            "\1\u012b",
-            "\1\u012c",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u012e",
-            "\1\u012f",
-            "\1\u0130",
-            "\1\u0131",
-            "\1\u0132",
-            "\1\u0133",
-            "\1\u0134",
-            "\1\u0135",
-            "\1\u0136",
-            "",
-            "\1\u0137",
-            "\1\u0138",
-            "\1\u0139",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\26\130\1\u013a\3\130",
-            "\1\u013c",
-            "\1\u013d",
-            "\1\u013e",
-            "\1\u0140\10\uffff\1\u013f\1\u0141",
-            "",
-            "\1\u0142",
-            "\1\u0143",
-            "",
-            "\1\u0144",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0146",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0148",
-            "",
-            "\1\u0149",
-            "\1\u014a",
-            "\1\u014b",
-            "\1\u014c",
-            "\1\u014d",
-            "\1\u014e",
-            "\1\u014f",
-            "\1\u0150",
-            "\1\u0151",
-            "\1\u0152",
-            "\1\u0153",
-            "\1\u0154",
-            "\1\u0155",
-            "\1\u0156",
-            "\1\u0157\11\uffff\1\u0158",
-            "\1\u0159",
-            "\1\u015a",
-            "\1\u015d\1\uffff\1\u015b\12\uffff\1\u015e\4\uffff\1\u015c",
-            "\1\u015f",
-            "",
-            "\1\u0160",
-            "\1\u0161",
-            "\1\u0162",
-            "\1\u0163",
-            "\1\u0165\1\uffff\1\u0164",
-            "\1\u0166",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0168",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u016b",
-            "\1\u016c",
-            "\1\u016d",
-            "\1\u016e",
-            "\1\u016f",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0171",
-            "\1\u0172",
-            "\1\u0173\6\uffff\1\u0174",
-            "\1\u0175",
-            "\1\u0176",
-            "\1\u0177",
-            "",
-            "\1\u0178",
-            "\1\u0179",
-            "\1\u017b\3\uffff\1\u017a",
-            "\1\u017c",
-            "\1\u017d",
-            "",
-            "\1\u017e",
-            "\1\u017f",
-            "\1\u0180",
-            "\1\u0181",
-            "\1\u0182",
-            "\1\u0183",
-            "\1\u0184",
-            "\1\u0185",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0187",
-            "",
-            "",
-            "\1\u0188",
-            "\1\u0189",
-            "\1\u018a",
-            "\1\u018b",
-            "\1\u018c",
-            "\1\u018d",
-            "\1\u018e",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0191",
-            "\1\130\10\uffff\1\u0192\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\23\130\1\u0193\6\130",
-            "\1\u0195",
-            "\1\u0196",
-            "\1\u0197",
-            "",
-            "\1\u0198",
-            "\1\u0199",
-            "\1\u019a",
-            "\1\u019b",
-            "\1\u019c",
-            "\1\u019d",
-            "\1\130\10\uffff\1\u019e\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\32\130",
-            "\1\u01a0",
-            "\1\u01a1",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u01a3",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u01a5",
-            "",
-            "\1\u01a6",
-            "\1\u01a7",
-            "\1\u01a8",
-            "\1\u01a9",
-            "\1\u01aa",
-            "\1\u01ab",
-            "\1\u01ac",
-            "\1\u01ad",
-            "\1\u01ae",
-            "",
-            "\1\u01af",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u01b1",
-            "\1\130\10\uffff\1\u01b2\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\32\130",
-            "\1\u01b4",
-            "\1\u01b5",
-            "\1\u01b6",
-            "\1\u01b7",
-            "\1\u01b8",
-            "\1\u01b9",
-            "\1\u01ba",
-            "\1\u01bb",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u01bd",
-            "\1\u01be",
-            "\1\130\10\uffff\1\u01bf\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\32\130",
-            "\1\u01c1",
-            "\1\130\10\uffff\1\u01c2\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\32\130",
-            "\1\u01c4",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "",
-            "",
-            "",
-            "\1\u01c6",
-            "\1\130\10\uffff\1\u01c7\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\22\130\1\u01c8\1\u01c9\6\130",
-            "\1\u01cb",
-            "\1\u01cc",
-            "\1\u01cd",
-            "\1\u01ce",
-            "\1\u01cf",
-            "\1\u01d0",
-            "",
-            "\1\130\10\uffff\1\u01d1\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\13\130\1\u01d2\16\130",
-            "",
-            "",
-            "\1\u01d4",
-            "\1\u01d5",
-            "\1\130\10\uffff\1\u01d6\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\32\130",
-            "\1\u01d8",
-            "\1\130\10\uffff\1\u01d9\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\32\130",
-            "",
-            "\1\u01db",
-            "\1\u01dc",
-            "\1\u01dd",
-            "\1\u01de",
-            "\1\u01df",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u01e1",
-            "\1\u01e2",
-            "\1\u01e3",
-            "\1\u01e4",
-            "\1\u01e5",
-            "\1\u01e6",
-            "\1\u01e7",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u01ea",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u01ec",
-            "\1\u01ed",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u01ef",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u01f2\16\uffff\1\u01f3",
-            "\1\u01f4",
-            "\1\u01f5",
-            "\1\u01f6",
-            "",
-            "\1\u01f7",
-            "",
-            "",
-            "\1\u01f8",
-            "",
-            "\1\u01f9",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u01fb",
-            "\1\u01fc",
-            "\1\u01fd",
-            "",
-            "\1\u01fe",
-            "\1\u01ff",
-            "\1\u0200",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "",
-            "\1\u0202",
-            "\1\u0203",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u0205",
-            "\1\u0206",
-            "\1\u0207",
-            "\1\u0208",
-            "\1\u0209",
-            "\1\u020a",
-            "\1\u020b",
-            "\1\u020c",
-            "\1\u020d",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u0210",
-            "",
-            "",
-            "\1\u0211",
-            "\1\u0212",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0214",
-            "\1\u0215",
-            "\1\u0216",
-            "\1\130\10\uffff\1\u0217\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\32\130",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u021a",
-            "\1\u021b",
-            "\1\u021e\1\uffff\1\u021c\12\uffff\1\u021f\4\uffff\1\u021d",
-            "",
-            "\1\u0220",
-            "",
-            "",
-            "\1\u0221",
-            "",
-            "\1\u0222",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0224",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\130\10\uffff\1\u0226\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\32\130",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0229",
-            "\1\u022a",
-            "\1\u022b",
-            "\1\u022e\1\uffff\1\u022c\12\uffff\1\u022f\4\uffff\1\u022d",
-            "\1\u0230",
-            "",
-            "\1\u0231",
-            "\1\u0232",
-            "",
-            "",
-            "\1\130\10\uffff\1\u0233\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\32\130",
-            "",
-            "",
-            "\1\u0235",
-            "\1\u0236",
-            "\1\u0237",
-            "\1\u0238",
-            "\1\u0239",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\130\10\uffff\1\u023b\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\32\130",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u023e",
-            "\1\u023f",
-            "\1\u0240",
-            "\1\u0241",
-            "",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u0243",
-            "\1\u0244",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "",
-            "\1\u0246",
-            "\1\u0247",
-            "\1\u0248",
-            "\1\u0249",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u024b",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u024d",
-            "",
-            "\1\u024e",
-            "\1\u024f",
-            "\1\u0250",
-            "\1\u0251",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u0254",
-            "\1\u0255",
-            "",
-            "\1\u0256",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0258",
-            "\1\u0259",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u025b",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u025d",
-            "\1\u025e",
-            "",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0261",
-            "",
-            "\1\u0262",
-            "\1\u0263",
-            "\1\u0264",
-            "",
-            "",
-            "",
-            "\1\u0265",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "",
-            "",
-            "",
-            "\1\u0267",
-            "\1\u0268",
-            "\1\130\10\uffff\1\u0269\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\32\130",
-            "",
-            "\1\u026b",
-            "",
-            "\1\u026e\1\uffff\1\u026c\12\uffff\1\u026f\4\uffff\1\u026d",
-            "",
-            "",
-            "\1\u0270",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0272",
-            "",
-            "",
-            "",
-            "",
-            "\1\u0273",
-            "\1\u0274",
-            "\1\u0275",
-            "",
-            "",
-            "\1\u0276",
-            "\1\130\10\uffff\1\u0277\2\uffff\12\130\7\uffff\32\130\4\uffff"+
-            "\1\130\1\uffff\32\130",
-            "\1\u0279",
-            "\1\u027a",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "",
-            "",
-            "",
-            "\1\u027c",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u027e",
-            "\1\u027f",
-            "",
-            "\1\u0280",
-            "\1\u0281",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0283",
-            "\1\u0284",
-            "\1\u0285",
-            "",
-            "\1\u0286",
-            "",
-            "\1\u0287",
-            "\1\u0288",
-            "",
-            "\1\u0289",
-            "\1\u028a",
-            "",
-            "",
-            "\1\u028b",
-            "\1\u028c",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u028e",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u0291",
-            "\1\u0292",
-            "",
-            "",
-            "\1\u0293",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u0295",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u0298",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "",
-            "\1\u029a",
-            "",
-            "",
-            "",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u029c\14\uffff\1\u029d",
-            "\1\u029e",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02a0",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02a2\61\uffff\1\u02a3",
-            "",
-            "\1\u02a4",
-            "\1\u02a5",
-            "",
-            "\1\u02a6",
-            "",
-            "",
-            "\1\u02a7",
-            "\1\u02a8",
-            "\1\u02a9",
-            "",
-            "\1\u02aa",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02ac",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02ae",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\10\130\1\u02af\21\130",
-            "\1\u02b1",
-            "\1\u02b2",
-            "\1\u02b3",
-            "\1\u02b4",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\6\130\1\u02b5\23\130",
-            "",
-            "",
-            "\1\u02b7",
-            "\1\u02b8",
-            "\1\u02b9",
-            "",
-            "\1\u02ba",
-            "",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u02be",
-            "",
-            "",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02c0",
-            "\1\u02c1",
-            "\1\u02c2",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02c4",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u02c6",
-            "",
-            "\1\u02c7",
-            "\1\u02c8",
-            "",
-            "\1\u02c9",
-            "\1\u02ca",
-            "\1\u02cb",
-            "\1\u02cc",
-            "\1\u02cd",
-            "",
-            "",
-            "\1\u02ce",
-            "\1\u02cf",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "",
-            "",
-            "\1\u02d1",
-            "",
-            "\1\u02d2",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02d4",
-            "",
-            "\1\u02d5",
-            "",
-            "\1\u02d6",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02d8",
-            "\1\u02d9",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02db",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02dd",
-            "\1\u02de",
-            "\1\u02df",
-            "",
-            "",
-            "\1\u02e0",
-            "",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02e2",
-            "",
-            "\1\u02e3",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u02e5",
-            "",
-            "\1\u02e6",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02e8",
-            "",
-            "\1\u02e9",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u02eb",
-            "\1\u02ec",
-            "",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\u02ee",
-            "",
-            "\1\u02ef",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            "\1\u02f1",
-            "\1\u02f2",
-            "",
-            "\1\u02f3",
-            "\1\u02f4",
-            "\1\u02f5",
-            "\1\u02f6",
-            "\1\u02f7",
-            "\1\u02f8",
-            "\1\u02f9",
-            "\1\u02fa",
-            "\1\u02fb",
-            "\1\u02fc",
-            "\1\u02fd",
-            "\1\u02fe",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "\1\130\13\uffff\12\130\7\uffff\32\130\4\uffff\1\130\1\uffff"+
-            "\32\130",
-            "",
-            ""
-    };
-
-    static final short[] DFA21_eot = DFA.unpackEncodedString(DFA21_eotS);
-    static final short[] DFA21_eof = DFA.unpackEncodedString(DFA21_eofS);
-    static final char[] DFA21_min = DFA.unpackEncodedStringToUnsignedChars(DFA21_minS);
-    static final char[] DFA21_max = DFA.unpackEncodedStringToUnsignedChars(DFA21_maxS);
-    static final short[] DFA21_accept = DFA.unpackEncodedString(DFA21_acceptS);
-    static final short[] DFA21_special = DFA.unpackEncodedString(DFA21_specialS);
-    static final short[][] DFA21_transition;
-
-    static {
-        int numStates = DFA21_transitionS.length;
-        DFA21_transition = new short[numStates][];
-        for (int i=0; i<numStates; i++) {
-            DFA21_transition[i] = DFA.unpackEncodedString(DFA21_transitionS[i]);
-        }
-    }
-
-    class DFA21 extends DFA {
-
-        public DFA21(BaseRecognizer recognizer) {
-            this.recognizer = recognizer;
-            this.decisionNumber = 21;
-            this.eot = DFA21_eot;
-            this.eof = DFA21_eof;
-            this.min = DFA21_min;
-            this.max = DFA21_max;
-            this.accept = DFA21_accept;
-            this.special = DFA21_special;
-            this.transition = DFA21_transition;
-        }
-        public String getDescription() {
-            return "1:1: Tokens : ( T__13 | T__14 | T__15 | T__16 | T__17 | T__18 | T__19 | T__20 | T__21 | T__22 | T__23 | T__24 | T__25 | T__26 | T__27 | T__28 | T__29 | T__30 | T__31 | T__32 | T__33 | T__34 | T__35 | T__36 | T__37 | T__38 | T__39 | T__40 | T__41 | T__42 | T__43 | T__44 | T__45 | T__46 | T__47 | T__48 | T__49 | T__50 | T__51 | T__52 | T__53 | T__54 | T__55 | T__56 | T__57 | T__58 | T__59 | T__60 | T__61 | T__62 | T__63 | T__64 | T__65 | T__66 | T__67 | T__68 | T__69 | T__70 | T__71 | T__72 | T__73 | T__74 | T__75 | T__76 | T__77 | T__78 | T__79 | T__80 | T__81 | T__82 | T__83 | T__84 | T__85 | T__86 | T__87 | T__88 | T__89 | T__90 | T__91 | T__92 | T__93 | T__94 | T__95 | T__96 | T__97 | T__98 | T__99 | T__100 | T__101 | T__102 | T__103 | T__104 | T__105 | T__106 | T__107 | T__108 | T__109 | T__110 | T__111 | T__112 | T__113 | T__114 | T__115 | T__116 | T__117 | T__118 | T__119 | T__120 | T__121 | T__122 | T__123 | T__124 | T__125 | T__126 | T__127 | T__128 | T__129 | T__130 | T__131 | T__132 | T__133 | T__134 | T__135 | T__136 | T__137 | T__138 | T__139 | T__140 | T__141 | T__142 | T__143 | T__144 | T__145 | T__146 | T__147 | T__148 | T__149 | T__150 | T__151 | T__152 | T__153 | T__154 | T__155 | T__156 | T__157 | T__158 | T__159 | T__160 | T__161 | T__162 | T__163 | T__164 | T__165 | T__166 | T__167 | T__168 | T__169 | T__170 | T__171 | T__172 | T__173 | T__174 | T__175 | T__176 | T__177 | T__178 | T__179 | T__180 | T__181 | T__182 | T__183 | T__184 | T__185 | T__186 | T__187 | T__188 | T__189 | T__190 | T__191 | T__192 | T__193 | T__194 | T__195 | T__196 | T__197 | T__198 | T__199 | T__200 | T__201 | T__202 | T__203 | T__204 | T__205 | T__206 | T__207 | T__208 | T__209 | RULE_HEX | RULE_INT | RULE_DECIMAL | RULE_ID | RULE_STRING | RULE_ML_COMMENT | RULE_SL_COMMENT | RULE_WS | RULE_ANY_OTHER );";
-        }
-        public int specialStateTransition(int s, IntStream _input) throws NoViableAltException {
-            IntStream input = _input;
-        	int _s = s;
-            switch ( s ) {
-                    case 0 : 
-                        int LA21_0 = input.LA(1);
-
-                        s = -1;
-                        if ( (LA21_0=='=') ) {s = 1;}
-
-                        else if ( (LA21_0=='|') ) {s = 2;}
-
-                        else if ( (LA21_0=='&') ) {s = 3;}
-
-                        else if ( (LA21_0=='+') ) {s = 4;}
-
-                        else if ( (LA21_0=='-') ) {s = 5;}
-
-                        else if ( (LA21_0=='*') ) {s = 6;}
-
-                        else if ( (LA21_0=='/') ) {s = 7;}
-
-                        else if ( (LA21_0=='%') ) {s = 8;}
-
-                        else if ( (LA21_0=='!') ) {s = 9;}
-
-                        else if ( (LA21_0=='>') ) {s = 10;}
-
-                        else if ( (LA21_0=='<') ) {s = 11;}
-
-                        else if ( (LA21_0=='.') ) {s = 12;}
-
-                        else if ( (LA21_0=='?') ) {s = 13;}
-
-                        else if ( (LA21_0=='v') ) {s = 14;}
-
-                        else if ( (LA21_0=='e') ) {s = 15;}
-
-                        else if ( (LA21_0=='s') ) {s = 16;}
-
-                        else if ( (LA21_0=='i') ) {s = 17;}
-
-                        else if ( (LA21_0=='f') ) {s = 18;}
-
-                        else if ( (LA21_0=='o') ) {s = 19;}
-
-                        else if ( (LA21_0=='t') ) {s = 20;}
-
-                        else if ( (LA21_0=='p') ) {s = 21;}
-
-                        else if ( (LA21_0=='m') ) {s = 22;}
-
-                        else if ( (LA21_0=='l') ) {s = 23;}
-
-                        else if ( (LA21_0=='u') ) {s = 24;}
-
-                        else if ( (LA21_0=='r') ) {s = 25;}
-
-                        else if ( (LA21_0=='d') ) {s = 26;}
-
-                        else if ( (LA21_0=='h') ) {s = 27;}
-
-                        else if ( (LA21_0=='c') ) {s = 28;}
-
-                        else if ( (LA21_0=='a') ) {s = 29;}
-
-                        else if ( (LA21_0=='b') ) {s = 30;}
-
-                        else if ( (LA21_0=='{') ) {s = 31;}
-
-                        else if ( (LA21_0=='}') ) {s = 32;}
-
-                        else if ( (LA21_0=='w') ) {s = 33;}
-
-                        else if ( (LA21_0==';') ) {s = 34;}
-
-                        else if ( (LA21_0=='@') ) {s = 35;}
-
-                        else if ( (LA21_0=='(') ) {s = 36;}
-
-                        else if ( (LA21_0==')') ) {s = 37;}
-
-                        else if ( (LA21_0==',') ) {s = 38;}
-
-                        else if ( (LA21_0==']') ) {s = 39;}
-
-                        else if ( (LA21_0=='#') ) {s = 40;}
-
-                        else if ( (LA21_0=='[') ) {s = 41;}
-
-                        else if ( (LA21_0==':') ) {s = 42;}
-
-                        else if ( (LA21_0=='n') ) {s = 43;}
-
-                        else if ( (LA21_0=='0') ) {s = 44;}
-
-                        else if ( ((LA21_0>='1' && LA21_0<='9')) ) {s = 45;}
-
-                        else if ( (LA21_0=='^') ) {s = 46;}
-
-                        else if ( (LA21_0=='$'||(LA21_0>='A' && LA21_0<='Z')||LA21_0=='_'||LA21_0=='g'||(LA21_0>='j' && LA21_0<='k')||LA21_0=='q'||(LA21_0>='x' && LA21_0<='z')) ) {s = 47;}
-
-                        else if ( (LA21_0=='\"') ) {s = 48;}
-
-                        else if ( (LA21_0=='\'') ) {s = 49;}
-
-                        else if ( ((LA21_0>='\t' && LA21_0<='\n')||LA21_0=='\r'||LA21_0==' ') ) {s = 50;}
-
-                        else if ( ((LA21_0>='\u0000' && LA21_0<='\b')||(LA21_0>='\u000B' && LA21_0<='\f')||(LA21_0>='\u000E' && LA21_0<='\u001F')||LA21_0=='\\'||LA21_0=='`'||(LA21_0>='~' && LA21_0<='\uFFFF')) ) {s = 51;}
-
-                        if ( s>=0 ) return s;
-                        break;
-            }
-            NoViableAltException nvae =
-                new NoViableAltException(getDescription(), 21, _s, input);
-            error(nvae);
-            throw nvae;
-        }
-    }
- 
-
-}
diff --git a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSLParser.java b/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSLParser.java
deleted file mode 100644
index 2b9a95a..0000000
--- a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSLParser.java
+++ /dev/null
@@ -1,10015 +0,0 @@
-/**
- *                                                                            
- *  Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany) 
- *                                                                            
- *  All rights reserved. This program and the accompanying materials           
- *  are made available under the terms of the Eclipse Public License v1.0       
- *  which accompanies this distribution, and is available at                  
- *  http://www.eclipse.org/legal/epl-v10.html                                 
- *                                                                            
- *  Contributors:                                                      
- * 	   Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
- * 
- */
- 
-package org.eclipse.osbp.xtext.blip.ui.contentassist.antlr.internal; 
-
-import java.io.InputStream;
-import org.eclipse.xtext.*;
-import org.eclipse.xtext.parser.*;
-import org.eclipse.xtext.parser.impl.*;
-import org.eclipse.emf.ecore.util.EcoreUtil;
-import org.eclipse.emf.ecore.EObject;
-import org.eclipse.xtext.parser.antlr.XtextTokenStream;
-import org.eclipse.xtext.parser.antlr.XtextTokenStream.HiddenTokens;
-import org.eclipse.xtext.ui.editor.contentassist.antlr.internal.AbstractInternalContentAssistParser;
-import org.eclipse.xtext.ui.editor.contentassist.antlr.internal.DFA;
-import org.eclipse.osbp.xtext.blip.services.BlipDSLGrammarAccess;
-
-
-
-import org.antlr.runtime.*;
-import java.util.Stack;
-import java.util.List;
-import java.util.ArrayList;
-import java.util.Map;
-import java.util.HashMap;
-@SuppressWarnings("all")
-public class InternalBlipDSLParser extends AbstractInternalContentAssistParser {
-    public static final String[] tokenNames = new String[] {
-        "<invalid>", "<EOR>", "<DOWN>", "<UP>", "RULE_ID", "RULE_STRING", "RULE_HEX", "RULE_INT", "RULE_DECIMAL", "RULE_ML_COMMENT", "RULE_SL_COMMENT", "RULE_WS", "RULE_ANY_OTHER", "'='", "'||'", "'&&'", "'+='", "'-='", "'*='", "'/='", "'%='", "'=='", "'!='", "'==='", "'!=='", "'>='", "'>'", "'<'", "'->'", "'..<'", "'..'", "'=>'", "'<>'", "'?:'", "'+'", "'-'", "'*'", "'**'", "'/'", "'%'", "'!'", "'++'", "'--'", "'.'", "'val'", "'extends'", "'static'", "'import'", "'extension'", "'super'", "'false'", "'synchron'", "'oneway'", "'terminates process'", "'ends token path'", "'plus'", "'minus'", "'info'", "'left'", "'up'", "'right'", "'down'", "'exchange'", "'home'", "'home-1'", "'up-dir'", "'right-dir'", "'down-dir'", "'left-dir'", "'star'", "'star-empty'", "'th-list'", "'heart-empty'", "'heart'", "'music'", "'th'", "'flag'", "'cog'", "'attention'", "'mail'", "'edit'", "'pencil'", "'ok'", "'cancel-1'", "'cancel'", "'cancel-circle'", "'help'", "'plus-circle'", "'minus-circle'", "'right-thin'", "'forward'", "'cw'", "'left-thin'", "'up-thin'", "'down-thin'", "'left-bold'", "'right-bold'", "'up-bold'", "'down-bold'", "'user-add'", "'help-circle'", "'info-circle'", "'back'", "'eye'", "'tag'", "'upload-cloud'", "'reply'", "'export'", "'print'", "'retweet'", "'comment'", "'vcard'", "'location'", "'trash'", "'resize-full'", "'resize-small'", "'down-open'", "'left-open'", "'right-open'", "'up-open'", "'arrows-cw'", "'chart-pie'", "'search-1'", "'user'", "'users'", "'monitor'", "'folder'", "'doc'", "'calendar'", "'chart'", "'attach'", "'upload'", "'download'", "'mobile'", "'camera'", "'lock'", "'lock-open'", "'bell'", "'link'", "'clock'", "'block'", "'package'", "'{'", "'}'", "'process'", "'bpmn'", "'workload'", "'functiongroup'", "'using'", "'predefine'", "'set'", "'to'", "'dto'", "'startevent'", "'for'", "'endevent'", "'usertask'", "'operates on'", "'onentry'", "'onexit'", "'callActivity'", "'scripttask'", "'function'", "'persisttask'", "'servicetask'", "'run'", "'as'", "'asynchron with'", "'secs timeout'", "'webservice'", "'case'", "'when'", "'exclusivesplitgateway'", "'inclusivesplitgateway'", "';'", "'@'", "'('", "')'", "','", "']'", "'#'", "'['", "'instanceof'", "'if'", "'else'", "'switch'", "':'", "'default'", "'while'", "'do'", "'new'", "'null'", "'typeof'", "'throw'", "'return'", "'try'", "'finally'", "'synchronized'", "'catch'", "'?'", "'&'", "'image'", "'icon'", "'logging'", "'described by'", "'::'", "'?.'", "'|'", "'var'", "'true'"
-    };
-    public static final int T__144=144;
-    public static final int T__143=143;
-    public static final int T__146=146;
-    public static final int T__50=50;
-    public static final int T__145=145;
-    public static final int T__140=140;
-    public static final int T__142=142;
-    public static final int T__141=141;
-    public static final int T__59=59;
-    public static final int T__55=55;
-    public static final int T__56=56;
-    public static final int T__57=57;
-    public static final int T__58=58;
-    public static final int T__51=51;
-    public static final int T__137=137;
-    public static final int T__52=52;
-    public static final int T__136=136;
-    public static final int T__53=53;
-    public static final int T__139=139;
-    public static final int T__54=54;
-    public static final int T__138=138;
-    public static final int T__133=133;
-    public static final int T__132=132;
-    public static final int T__60=60;
-    public static final int T__135=135;
-    public static final int T__61=61;
-    public static final int T__134=134;
-    public static final int RULE_ID=4;
-    public static final int T__131=131;
-    public static final int T__130=130;
-    public static final int RULE_INT=7;
-    public static final int T__66=66;
-    public static final int T__67=67;
-    public static final int T__129=129;
-    public static final int T__68=68;
-    public static final int T__69=69;
-    public static final int T__62=62;
-    public static final int T__126=126;
-    public static final int T__63=63;
-    public static final int T__125=125;
-    public static final int T__64=64;
-    public static final int T__128=128;
-    public static final int T__65=65;
-    public static final int T__127=127;
-    public static final int T__166=166;
-    public static final int T__165=165;
-    public static final int T__168=168;
-    public static final int T__167=167;
-    public static final int T__162=162;
-    public static final int T__161=161;
-    public static final int T__164=164;
-    public static final int T__163=163;
-    public static final int T__160=160;
-    public static final int T__37=37;
-    public static final int T__38=38;
-    public static final int T__39=39;
-    public static final int T__33=33;
-    public static final int T__34=34;
-    public static final int T__35=35;
-    public static final int T__36=36;
-    public static final int T__159=159;
-    public static final int T__30=30;
-    public static final int T__158=158;
-    public static final int T__31=31;
-    public static final int T__32=32;
-    public static final int T__155=155;
-    public static final int T__154=154;
-    public static final int T__157=157;
-    public static final int T__156=156;
-    public static final int T__151=151;
-    public static final int T__150=150;
-    public static final int T__153=153;
-    public static final int T__152=152;
-    public static final int T__48=48;
-    public static final int T__49=49;
-    public static final int T__44=44;
-    public static final int T__45=45;
-    public static final int T__46=46;
-    public static final int T__47=47;
-    public static final int T__40=40;
-    public static final int T__148=148;
-    public static final int T__41=41;
-    public static final int T__147=147;
-    public static final int T__42=42;
-    public static final int T__43=43;
-    public static final int T__149=149;
-    public static final int T__100=100;
-    public static final int T__102=102;
-    public static final int T__101=101;
-    public static final int T__19=19;
-    public static final int T__15=15;
-    public static final int T__16=16;
-    public static final int T__17=17;
-    public static final int T__18=18;
-    public static final int T__13=13;
-    public static final int T__14=14;
-    public static final int RULE_DECIMAL=8;
-    public static final int T__26=26;
-    public static final int T__27=27;
-    public static final int T__28=28;
-    public static final int T__29=29;
-    public static final int T__22=22;
-    public static final int T__207=207;
-    public static final int T__23=23;
-    public static final int T__206=206;
-    public static final int T__24=24;
-    public static final int T__209=209;
-    public static final int T__25=25;
-    public static final int T__208=208;
-    public static final int T__203=203;
-    public static final int T__202=202;
-    public static final int T__20=20;
-    public static final int T__205=205;
-    public static final int T__21=21;
-    public static final int T__204=204;
-    public static final int T__122=122;
-    public static final int T__121=121;
-    public static final int T__124=124;
-    public static final int T__123=123;
-    public static final int T__120=120;
-    public static final int RULE_SL_COMMENT=10;
-    public static final int T__119=119;
-    public static final int T__118=118;
-    public static final int T__115=115;
-    public static final int EOF=-1;
-    public static final int T__114=114;
-    public static final int T__117=117;
-    public static final int T__116=116;
-    public static final int T__111=111;
-    public static final int T__110=110;
-    public static final int T__113=113;
-    public static final int T__112=112;
-    public static final int T__108=108;
-    public static final int T__107=107;
-    public static final int T__109=109;
-    public static final int T__104=104;
-    public static final int T__103=103;
-    public static final int T__106=106;
-    public static final int T__105=105;
-    public static final int RULE_HEX=6;
-    public static final int RULE_ML_COMMENT=9;
-    public static final int T__201=201;
-    public static final int T__200=200;
-    public static final int T__91=91;
-    public static final int T__188=188;
-    public static final int T__92=92;
-    public static final int T__187=187;
-    public static final int T__93=93;
-    public static final int T__94=94;
-    public static final int T__189=189;
-    public static final int T__184=184;
-    public static final int T__183=183;
-    public static final int T__186=186;
-    public static final int T__90=90;
-    public static final int T__185=185;
-    public static final int T__180=180;
-    public static final int T__182=182;
-    public static final int T__181=181;
-    public static final int T__99=99;
-    public static final int T__95=95;
-    public static final int T__96=96;
-    public static final int T__97=97;
-    public static final int T__98=98;
-    public static final int T__177=177;
-    public static final int T__176=176;
-    public static final int T__179=179;
-    public static final int T__178=178;
-    public static final int T__173=173;
-    public static final int T__172=172;
-    public static final int T__175=175;
-    public static final int T__174=174;
-    public static final int T__171=171;
-    public static final int T__170=170;
-    public static final int T__169=169;
-    public static final int T__70=70;
-    public static final int T__71=71;
-    public static final int T__72=72;
-    public static final int RULE_STRING=5;
-    public static final int T__77=77;
-    public static final int T__78=78;
-    public static final int T__79=79;
-    public static final int T__73=73;
-    public static final int T__74=74;
-    public static final int T__75=75;
-    public static final int T__76=76;
-    public static final int T__80=80;
-    public static final int T__199=199;
-    public static final int T__81=81;
-    public static final int T__198=198;
-    public static final int T__82=82;
-    public static final int T__83=83;
-    public static final int T__195=195;
-    public static final int T__194=194;
-    public static final int RULE_WS=11;
-    public static final int T__197=197;
-    public static final int T__196=196;
-    public static final int T__191=191;
-    public static final int T__190=190;
-    public static final int T__193=193;
-    public static final int T__192=192;
-    public static final int RULE_ANY_OTHER=12;
-    public static final int T__88=88;
-    public static final int T__89=89;
-    public static final int T__84=84;
-    public static final int T__85=85;
-    public static final int T__86=86;
-    public static final int T__87=87;
-
-    // delegates
-    // delegators
-
-
-        public InternalBlipDSLParser(TokenStream input) {
-            this(input, new RecognizerSharedState());
-        }
-        public InternalBlipDSLParser(TokenStream input, RecognizerSharedState state) {
-            super(input, state);
-             
-        }
-        
-
-    public String[] getTokenNames() { return InternalBlipDSLParser.tokenNames; }
-    public String getGrammarFileName() { return "../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g"; }
-
-
-     
-     	private BlipDSLGrammarAccess grammarAccess;
-     	
-        public void setGrammarAccess(BlipDSLGrammarAccess grammarAccess) {
-        	this.grammarAccess = grammarAccess;
-        }
-        
-        @Override
-        protected Grammar getGrammar() {
-        	return grammarAccess.getGrammar();
-        }
-        
-        @Override
-        protected String getValueForTokenName(String tokenName) {
-        	return tokenName;
-        }
-
-
-
-
-    // $ANTLR start "entryRuleBlipModel"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:61:1: entryRuleBlipModel : ruleBlipModel EOF ;
-    public final void entryRuleBlipModel() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:62:1: ( ruleBlipModel EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:63:1: ruleBlipModel EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipModelRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipModel_in_entryRuleBlipModel67);
-            ruleBlipModel();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipModelRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipModel74); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipModel"
-
-
-    // $ANTLR start "ruleBlipModel"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:70:1: ruleBlipModel : ( ( rule__BlipModel__PackagesAssignment )* ) ;
-    public final void ruleBlipModel() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:74:2: ( ( ( rule__BlipModel__PackagesAssignment )* ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:75:1: ( ( rule__BlipModel__PackagesAssignment )* )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:75:1: ( ( rule__BlipModel__PackagesAssignment )* )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:76:1: ( rule__BlipModel__PackagesAssignment )*
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipModelAccess().getPackagesAssignment()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:77:1: ( rule__BlipModel__PackagesAssignment )*
-            loop1:
-            do {
-                int alt1=2;
-                int LA1_0 = input.LA(1);
-
-                if ( (LA1_0==141) ) {
-                    alt1=1;
-                }
-
-
-                switch (alt1) {
-            	case 1 :
-            	    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:77:2: rule__BlipModel__PackagesAssignment
-            	    {
-            	    pushFollow(FOLLOW_rule__BlipModel__PackagesAssignment_in_ruleBlipModel100);
-            	    rule__BlipModel__PackagesAssignment();
-
-            	    state._fsp--;
-            	    if (state.failed) return ;
-
-            	    }
-            	    break;
-
-            	default :
-            	    break loop1;
-                }
-            } while (true);
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipModelAccess().getPackagesAssignment()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipModel"
-
-
-    // $ANTLR start "entryRuleBlipPackage"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:89:1: entryRuleBlipPackage : ruleBlipPackage EOF ;
-    public final void entryRuleBlipPackage() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:90:1: ( ruleBlipPackage EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:91:1: ruleBlipPackage EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipPackageRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipPackage_in_entryRuleBlipPackage128);
-            ruleBlipPackage();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipPackageRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipPackage135); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipPackage"
-
-
-    // $ANTLR start "ruleBlipPackage"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:98:1: ruleBlipPackage : ( ( rule__BlipPackage__Group__0 ) ) ;
-    public final void ruleBlipPackage() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:102:2: ( ( ( rule__BlipPackage__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:103:1: ( ( rule__BlipPackage__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:103:1: ( ( rule__BlipPackage__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:104:1: ( rule__BlipPackage__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipPackageAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:105:1: ( rule__BlipPackage__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:105:2: rule__BlipPackage__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipPackage__Group__0_in_ruleBlipPackage161);
-            rule__BlipPackage__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipPackageAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipPackage"
-
-
-    // $ANTLR start "entryRuleBlip"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:117:1: entryRuleBlip : ruleBlip EOF ;
-    public final void entryRuleBlip() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:118:1: ( ruleBlip EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:119:1: ruleBlip EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlip_in_entryRuleBlip188);
-            ruleBlip();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlip195); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlip"
-
-
-    // $ANTLR start "ruleBlip"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:126:1: ruleBlip : ( ( rule__Blip__Group__0 ) ) ;
-    public final void ruleBlip() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:130:2: ( ( ( rule__Blip__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:131:1: ( ( rule__Blip__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:131:1: ( ( rule__Blip__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:132:1: ( rule__Blip__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:133:1: ( rule__Blip__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:133:2: rule__Blip__Group__0
-            {
-            pushFollow(FOLLOW_rule__Blip__Group__0_in_ruleBlip221);
-            rule__Blip__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlip"
-
-
-    // $ANTLR start "entryRuleBlipWorkload"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:145:1: entryRuleBlipWorkload : ruleBlipWorkload EOF ;
-    public final void entryRuleBlipWorkload() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:146:1: ( ruleBlipWorkload EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:147:1: ruleBlipWorkload EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipWorkloadRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipWorkload_in_entryRuleBlipWorkload248);
-            ruleBlipWorkload();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipWorkloadRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipWorkload255); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipWorkload"
-
-
-    // $ANTLR start "ruleBlipWorkload"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:154:1: ruleBlipWorkload : ( ( rule__BlipWorkload__Group__0 ) ) ;
-    public final void ruleBlipWorkload() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:158:2: ( ( ( rule__BlipWorkload__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:159:1: ( ( rule__BlipWorkload__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:159:1: ( ( rule__BlipWorkload__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:160:1: ( rule__BlipWorkload__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipWorkloadAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:161:1: ( rule__BlipWorkload__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:161:2: rule__BlipWorkload__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipWorkload__Group__0_in_ruleBlipWorkload281);
-            rule__BlipWorkload__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipWorkloadAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipWorkload"
-
-
-    // $ANTLR start "entryRuleBlipFilter"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:173:1: entryRuleBlipFilter : ruleBlipFilter EOF ;
-    public final void entryRuleBlipFilter() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:174:1: ( ruleBlipFilter EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:175:1: ruleBlipFilter EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipFilterRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipFilter_in_entryRuleBlipFilter308);
-            ruleBlipFilter();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipFilterRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipFilter315); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipFilter"
-
-
-    // $ANTLR start "ruleBlipFilter"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:182:1: ruleBlipFilter : ( ( rule__BlipFilter__Group__0 ) ) ;
-    public final void ruleBlipFilter() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:186:2: ( ( ( rule__BlipFilter__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:187:1: ( ( rule__BlipFilter__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:187:1: ( ( rule__BlipFilter__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:188:1: ( rule__BlipFilter__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipFilterAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:189:1: ( rule__BlipFilter__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:189:2: rule__BlipFilter__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipFilter__Group__0_in_ruleBlipFilter341);
-            rule__BlipFilter__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipFilterAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipFilter"
-
-
-    // $ANTLR start "entryRuleBlipDto"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:201:1: entryRuleBlipDto : ruleBlipDto EOF ;
-    public final void entryRuleBlipDto() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:202:1: ( ruleBlipDto EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:203:1: ruleBlipDto EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipDtoRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipDto_in_entryRuleBlipDto368);
-            ruleBlipDto();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipDtoRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipDto375); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipDto"
-
-
-    // $ANTLR start "ruleBlipDto"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:210:1: ruleBlipDto : ( ( rule__BlipDto__Group__0 ) ) ;
-    public final void ruleBlipDto() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:214:2: ( ( ( rule__BlipDto__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:215:1: ( ( rule__BlipDto__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:215:1: ( ( rule__BlipDto__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:216:1: ( rule__BlipDto__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipDtoAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:217:1: ( rule__BlipDto__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:217:2: rule__BlipDto__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipDto__Group__0_in_ruleBlipDto401);
-            rule__BlipDto__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipDtoAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipDto"
-
-
-    // $ANTLR start "entryRuleBlipItem"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:229:1: entryRuleBlipItem : ruleBlipItem EOF ;
-    public final void entryRuleBlipItem() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:230:1: ( ruleBlipItem EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:231:1: ruleBlipItem EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipItemRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipItem_in_entryRuleBlipItem428);
-            ruleBlipItem();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipItemRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipItem435); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipItem"
-
-
-    // $ANTLR start "ruleBlipItem"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:238:1: ruleBlipItem : ( ( rule__BlipItem__Alternatives ) ) ;
-    public final void ruleBlipItem() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:242:2: ( ( ( rule__BlipItem__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:243:1: ( ( rule__BlipItem__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:243:1: ( ( rule__BlipItem__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:244:1: ( rule__BlipItem__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipItemAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:245:1: ( rule__BlipItem__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:245:2: rule__BlipItem__Alternatives
-            {
-            pushFollow(FOLLOW_rule__BlipItem__Alternatives_in_ruleBlipItem461);
-            rule__BlipItem__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipItemAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipItem"
-
-
-    // $ANTLR start "entryRuleBlipStartEvent"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:257:1: entryRuleBlipStartEvent : ruleBlipStartEvent EOF ;
-    public final void entryRuleBlipStartEvent() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:258:1: ( ruleBlipStartEvent EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:259:1: ruleBlipStartEvent EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipStartEventRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipStartEvent_in_entryRuleBlipStartEvent488);
-            ruleBlipStartEvent();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipStartEventRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipStartEvent495); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipStartEvent"
-
-
-    // $ANTLR start "ruleBlipStartEvent"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:266:1: ruleBlipStartEvent : ( ( rule__BlipStartEvent__Group__0 ) ) ;
-    public final void ruleBlipStartEvent() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:270:2: ( ( ( rule__BlipStartEvent__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:271:1: ( ( rule__BlipStartEvent__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:271:1: ( ( rule__BlipStartEvent__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:272:1: ( rule__BlipStartEvent__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipStartEventAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:273:1: ( rule__BlipStartEvent__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:273:2: rule__BlipStartEvent__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipStartEvent__Group__0_in_ruleBlipStartEvent521);
-            rule__BlipStartEvent__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipStartEventAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipStartEvent"
-
-
-    // $ANTLR start "entryRuleBlipEndEvent"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:285:1: entryRuleBlipEndEvent : ruleBlipEndEvent EOF ;
-    public final void entryRuleBlipEndEvent() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:286:1: ( ruleBlipEndEvent EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:287:1: ruleBlipEndEvent EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipEndEventRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipEndEvent_in_entryRuleBlipEndEvent548);
-            ruleBlipEndEvent();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipEndEventRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipEndEvent555); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipEndEvent"
-
-
-    // $ANTLR start "ruleBlipEndEvent"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:294:1: ruleBlipEndEvent : ( ( rule__BlipEndEvent__Group__0 ) ) ;
-    public final void ruleBlipEndEvent() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:298:2: ( ( ( rule__BlipEndEvent__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:299:1: ( ( rule__BlipEndEvent__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:299:1: ( ( rule__BlipEndEvent__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:300:1: ( rule__BlipEndEvent__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipEndEventAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:301:1: ( rule__BlipEndEvent__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:301:2: rule__BlipEndEvent__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipEndEvent__Group__0_in_ruleBlipEndEvent581);
-            rule__BlipEndEvent__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipEndEventAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipEndEvent"
-
-
-    // $ANTLR start "entryRuleBlipUserTask"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:313:1: entryRuleBlipUserTask : ruleBlipUserTask EOF ;
-    public final void entryRuleBlipUserTask() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:314:1: ( ruleBlipUserTask EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:315:1: ruleBlipUserTask EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipUserTaskRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipUserTask_in_entryRuleBlipUserTask608);
-            ruleBlipUserTask();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipUserTaskRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipUserTask615); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipUserTask"
-
-
-    // $ANTLR start "ruleBlipUserTask"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:322:1: ruleBlipUserTask : ( ( rule__BlipUserTask__Group__0 ) ) ;
-    public final void ruleBlipUserTask() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:326:2: ( ( ( rule__BlipUserTask__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:327:1: ( ( rule__BlipUserTask__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:327:1: ( ( rule__BlipUserTask__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:328:1: ( rule__BlipUserTask__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipUserTaskAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:329:1: ( rule__BlipUserTask__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:329:2: rule__BlipUserTask__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipUserTask__Group__0_in_ruleBlipUserTask641);
-            rule__BlipUserTask__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipUserTaskAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipUserTask"
-
-
-    // $ANTLR start "entryRuleBlipCallActivity"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:341:1: entryRuleBlipCallActivity : ruleBlipCallActivity EOF ;
-    public final void entryRuleBlipCallActivity() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:342:1: ( ruleBlipCallActivity EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:343:1: ruleBlipCallActivity EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipCallActivityRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipCallActivity_in_entryRuleBlipCallActivity668);
-            ruleBlipCallActivity();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipCallActivityRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipCallActivity675); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipCallActivity"
-
-
-    // $ANTLR start "ruleBlipCallActivity"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:350:1: ruleBlipCallActivity : ( ( rule__BlipCallActivity__Group__0 ) ) ;
-    public final void ruleBlipCallActivity() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:354:2: ( ( ( rule__BlipCallActivity__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:355:1: ( ( rule__BlipCallActivity__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:355:1: ( ( rule__BlipCallActivity__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:356:1: ( rule__BlipCallActivity__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipCallActivityAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:357:1: ( rule__BlipCallActivity__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:357:2: rule__BlipCallActivity__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipCallActivity__Group__0_in_ruleBlipCallActivity701);
-            rule__BlipCallActivity__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipCallActivityAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipCallActivity"
-
-
-    // $ANTLR start "entryRuleBlipScriptTask"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:369:1: entryRuleBlipScriptTask : ruleBlipScriptTask EOF ;
-    public final void entryRuleBlipScriptTask() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:370:1: ( ruleBlipScriptTask EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:371:1: ruleBlipScriptTask EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipScriptTaskRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipScriptTask_in_entryRuleBlipScriptTask728);
-            ruleBlipScriptTask();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipScriptTaskRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipScriptTask735); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipScriptTask"
-
-
-    // $ANTLR start "ruleBlipScriptTask"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:378:1: ruleBlipScriptTask : ( ( rule__BlipScriptTask__Group__0 ) ) ;
-    public final void ruleBlipScriptTask() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:382:2: ( ( ( rule__BlipScriptTask__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:383:1: ( ( rule__BlipScriptTask__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:383:1: ( ( rule__BlipScriptTask__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:384:1: ( rule__BlipScriptTask__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipScriptTaskAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:385:1: ( rule__BlipScriptTask__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:385:2: rule__BlipScriptTask__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipScriptTask__Group__0_in_ruleBlipScriptTask761);
-            rule__BlipScriptTask__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipScriptTaskAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipScriptTask"
-
-
-    // $ANTLR start "entryRuleBlipPersistTask"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:397:1: entryRuleBlipPersistTask : ruleBlipPersistTask EOF ;
-    public final void entryRuleBlipPersistTask() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:398:1: ( ruleBlipPersistTask EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:399:1: ruleBlipPersistTask EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipPersistTaskRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipPersistTask_in_entryRuleBlipPersistTask788);
-            ruleBlipPersistTask();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipPersistTaskRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipPersistTask795); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipPersistTask"
-
-
-    // $ANTLR start "ruleBlipPersistTask"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:406:1: ruleBlipPersistTask : ( ( rule__BlipPersistTask__Group__0 ) ) ;
-    public final void ruleBlipPersistTask() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:410:2: ( ( ( rule__BlipPersistTask__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:411:1: ( ( rule__BlipPersistTask__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:411:1: ( ( rule__BlipPersistTask__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:412:1: ( rule__BlipPersistTask__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipPersistTaskAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:413:1: ( rule__BlipPersistTask__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:413:2: rule__BlipPersistTask__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipPersistTask__Group__0_in_ruleBlipPersistTask821);
-            rule__BlipPersistTask__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipPersistTaskAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipPersistTask"
-
-
-    // $ANTLR start "entryRuleBlipServiceTask"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:425:1: entryRuleBlipServiceTask : ruleBlipServiceTask EOF ;
-    public final void entryRuleBlipServiceTask() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:426:1: ( ruleBlipServiceTask EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:427:1: ruleBlipServiceTask EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipServiceTaskRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipServiceTask_in_entryRuleBlipServiceTask848);
-            ruleBlipServiceTask();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipServiceTaskRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipServiceTask855); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipServiceTask"
-
-
-    // $ANTLR start "ruleBlipServiceTask"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:434:1: ruleBlipServiceTask : ( ( rule__BlipServiceTask__Group__0 ) ) ;
-    public final void ruleBlipServiceTask() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:438:2: ( ( ( rule__BlipServiceTask__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:439:1: ( ( rule__BlipServiceTask__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:439:1: ( ( rule__BlipServiceTask__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:440:1: ( rule__BlipServiceTask__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipServiceTaskAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:441:1: ( rule__BlipServiceTask__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:441:2: rule__BlipServiceTask__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipServiceTask__Group__0_in_ruleBlipServiceTask881);
-            rule__BlipServiceTask__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipServiceTaskAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipServiceTask"
-
-
-    // $ANTLR start "entryRuleBlipOutGoing"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:453:1: entryRuleBlipOutGoing : ruleBlipOutGoing EOF ;
-    public final void entryRuleBlipOutGoing() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:454:1: ( ruleBlipOutGoing EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:455:1: ruleBlipOutGoing EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipOutGoingRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipOutGoing_in_entryRuleBlipOutGoing908);
-            ruleBlipOutGoing();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipOutGoingRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipOutGoing915); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipOutGoing"
-
-
-    // $ANTLR start "ruleBlipOutGoing"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:462:1: ruleBlipOutGoing : ( ( rule__BlipOutGoing__Group__0 ) ) ;
-    public final void ruleBlipOutGoing() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:466:2: ( ( ( rule__BlipOutGoing__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:467:1: ( ( rule__BlipOutGoing__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:467:1: ( ( rule__BlipOutGoing__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:468:1: ( rule__BlipOutGoing__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipOutGoingAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:469:1: ( rule__BlipOutGoing__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:469:2: rule__BlipOutGoing__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipOutGoing__Group__0_in_ruleBlipOutGoing941);
-            rule__BlipOutGoing__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipOutGoingAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipOutGoing"
-
-
-    // $ANTLR start "entryRuleBlipOutGoingDefault"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:481:1: entryRuleBlipOutGoingDefault : ruleBlipOutGoingDefault EOF ;
-    public final void entryRuleBlipOutGoingDefault() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:482:1: ( ruleBlipOutGoingDefault EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:483:1: ruleBlipOutGoingDefault EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipOutGoingDefaultRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipOutGoingDefault_in_entryRuleBlipOutGoingDefault968);
-            ruleBlipOutGoingDefault();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipOutGoingDefaultRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipOutGoingDefault975); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipOutGoingDefault"
-
-
-    // $ANTLR start "ruleBlipOutGoingDefault"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:490:1: ruleBlipOutGoingDefault : ( ( rule__BlipOutGoingDefault__Group__0 ) ) ;
-    public final void ruleBlipOutGoingDefault() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:494:2: ( ( ( rule__BlipOutGoingDefault__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:495:1: ( ( rule__BlipOutGoingDefault__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:495:1: ( ( rule__BlipOutGoingDefault__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:496:1: ( rule__BlipOutGoingDefault__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipOutGoingDefaultAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:497:1: ( rule__BlipOutGoingDefault__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:497:2: rule__BlipOutGoingDefault__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipOutGoingDefault__Group__0_in_ruleBlipOutGoingDefault1001);
-            rule__BlipOutGoingDefault__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipOutGoingDefaultAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipOutGoingDefault"
-
-
-    // $ANTLR start "entryRuleBlipExclusiveSplitGateway"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:509:1: entryRuleBlipExclusiveSplitGateway : ruleBlipExclusiveSplitGateway EOF ;
-    public final void entryRuleBlipExclusiveSplitGateway() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:510:1: ( ruleBlipExclusiveSplitGateway EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:511:1: ruleBlipExclusiveSplitGateway EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipExclusiveSplitGatewayRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipExclusiveSplitGateway_in_entryRuleBlipExclusiveSplitGateway1028);
-            ruleBlipExclusiveSplitGateway();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipExclusiveSplitGatewayRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipExclusiveSplitGateway1035); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipExclusiveSplitGateway"
-
-
-    // $ANTLR start "ruleBlipExclusiveSplitGateway"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:518:1: ruleBlipExclusiveSplitGateway : ( ( rule__BlipExclusiveSplitGateway__Group__0 ) ) ;
-    public final void ruleBlipExclusiveSplitGateway() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:522:2: ( ( ( rule__BlipExclusiveSplitGateway__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:523:1: ( ( rule__BlipExclusiveSplitGateway__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:523:1: ( ( rule__BlipExclusiveSplitGateway__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:524:1: ( rule__BlipExclusiveSplitGateway__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipExclusiveSplitGatewayAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:525:1: ( rule__BlipExclusiveSplitGateway__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:525:2: rule__BlipExclusiveSplitGateway__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipExclusiveSplitGateway__Group__0_in_ruleBlipExclusiveSplitGateway1061);
-            rule__BlipExclusiveSplitGateway__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipExclusiveSplitGatewayAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipExclusiveSplitGateway"
-
-
-    // $ANTLR start "entryRuleBlipInclusiveSplitGateway"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:537:1: entryRuleBlipInclusiveSplitGateway : ruleBlipInclusiveSplitGateway EOF ;
-    public final void entryRuleBlipInclusiveSplitGateway() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:538:1: ( ruleBlipInclusiveSplitGateway EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:539:1: ruleBlipInclusiveSplitGateway EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipInclusiveSplitGatewayRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipInclusiveSplitGateway_in_entryRuleBlipInclusiveSplitGateway1088);
-            ruleBlipInclusiveSplitGateway();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipInclusiveSplitGatewayRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipInclusiveSplitGateway1095); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipInclusiveSplitGateway"
-
-
-    // $ANTLR start "ruleBlipInclusiveSplitGateway"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:546:1: ruleBlipInclusiveSplitGateway : ( ( rule__BlipInclusiveSplitGateway__Group__0 ) ) ;
-    public final void ruleBlipInclusiveSplitGateway() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:550:2: ( ( ( rule__BlipInclusiveSplitGateway__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:551:1: ( ( rule__BlipInclusiveSplitGateway__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:551:1: ( ( rule__BlipInclusiveSplitGateway__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:552:1: ( rule__BlipInclusiveSplitGateway__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipInclusiveSplitGatewayAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:553:1: ( rule__BlipInclusiveSplitGateway__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:553:2: rule__BlipInclusiveSplitGateway__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipInclusiveSplitGateway__Group__0_in_ruleBlipInclusiveSplitGateway1121);
-            rule__BlipInclusiveSplitGateway__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipInclusiveSplitGatewayAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipInclusiveSplitGateway"
-
-
-    // $ANTLR start "entryRuleBlipDtoPath"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:565:1: entryRuleBlipDtoPath : ruleBlipDtoPath EOF ;
-    public final void entryRuleBlipDtoPath() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:566:1: ( ruleBlipDtoPath EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:567:1: ruleBlipDtoPath EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipDtoPathRule()); 
-            }
-            pushFollow(FOLLOW_ruleBlipDtoPath_in_entryRuleBlipDtoPath1148);
-            ruleBlipDtoPath();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipDtoPathRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleBlipDtoPath1155); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleBlipDtoPath"
-
-
-    // $ANTLR start "ruleBlipDtoPath"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:574:1: ruleBlipDtoPath : ( ( rule__BlipDtoPath__Group__0 ) ) ;
-    public final void ruleBlipDtoPath() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:578:2: ( ( ( rule__BlipDtoPath__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:579:1: ( ( rule__BlipDtoPath__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:579:1: ( ( rule__BlipDtoPath__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:580:1: ( rule__BlipDtoPath__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getBlipDtoPathAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:581:1: ( rule__BlipDtoPath__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:581:2: rule__BlipDtoPath__Group__0
-            {
-            pushFollow(FOLLOW_rule__BlipDtoPath__Group__0_in_ruleBlipDtoPath1181);
-            rule__BlipDtoPath__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getBlipDtoPathAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleBlipDtoPath"
-
-
-    // $ANTLR start "entryRuleQualifiedDtoPath"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:593:1: entryRuleQualifiedDtoPath : ruleQualifiedDtoPath EOF ;
-    public final void entryRuleQualifiedDtoPath() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:594:1: ( ruleQualifiedDtoPath EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:595:1: ruleQualifiedDtoPath EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getQualifiedDtoPathRule()); 
-            }
-            pushFollow(FOLLOW_ruleQualifiedDtoPath_in_entryRuleQualifiedDtoPath1208);
-            ruleQualifiedDtoPath();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getQualifiedDtoPathRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedDtoPath1215); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleQualifiedDtoPath"
-
-
-    // $ANTLR start "ruleQualifiedDtoPath"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:602:1: ruleQualifiedDtoPath : ( ( rule__QualifiedDtoPath__Group__0 ) ) ;
-    public final void ruleQualifiedDtoPath() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:606:2: ( ( ( rule__QualifiedDtoPath__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:607:1: ( ( rule__QualifiedDtoPath__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:607:1: ( ( rule__QualifiedDtoPath__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:608:1: ( rule__QualifiedDtoPath__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getQualifiedDtoPathAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:609:1: ( rule__QualifiedDtoPath__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:609:2: rule__QualifiedDtoPath__Group__0
-            {
-            pushFollow(FOLLOW_rule__QualifiedDtoPath__Group__0_in_ruleQualifiedDtoPath1241);
-            rule__QualifiedDtoPath__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getQualifiedDtoPathAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleQualifiedDtoPath"
-
-
-    // $ANTLR start "entryRuleQualifiedName"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:621:1: entryRuleQualifiedName : ruleQualifiedName EOF ;
-    public final void entryRuleQualifiedName() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:622:1: ( ruleQualifiedName EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:623:1: ruleQualifiedName EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getQualifiedNameRule()); 
-            }
-            pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName1268);
-            ruleQualifiedName();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getQualifiedNameRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName1275); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleQualifiedName"
-
-
-    // $ANTLR start "ruleQualifiedName"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:630:1: ruleQualifiedName : ( ( rule__QualifiedName__Group__0 ) ) ;
-    public final void ruleQualifiedName() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:634:2: ( ( ( rule__QualifiedName__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:635:1: ( ( rule__QualifiedName__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:635:1: ( ( rule__QualifiedName__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:636:1: ( rule__QualifiedName__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getQualifiedNameAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:637:1: ( rule__QualifiedName__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:637:2: rule__QualifiedName__Group__0
-            {
-            pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName1301);
-            rule__QualifiedName__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getQualifiedNameAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleQualifiedName"
-
-
-    // $ANTLR start "entryRuleValidID"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:649:1: entryRuleValidID : ruleValidID EOF ;
-    public final void entryRuleValidID() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:650:1: ( ruleValidID EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:651:1: ruleValidID EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getValidIDRule()); 
-            }
-            pushFollow(FOLLOW_ruleValidID_in_entryRuleValidID1328);
-            ruleValidID();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getValidIDRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleValidID1335); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleValidID"
-
-
-    // $ANTLR start "ruleValidID"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:658:1: ruleValidID : ( RULE_ID ) ;
-    public final void ruleValidID() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:662:2: ( ( RULE_ID ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:663:1: ( RULE_ID )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:663:1: ( RULE_ID )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:664:1: RULE_ID
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); 
-            }
-            match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleValidID1361); if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleValidID"
-
-
-    // $ANTLR start "entryRuleTRANSLATABLEID"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:677:1: entryRuleTRANSLATABLEID : ruleTRANSLATABLEID EOF ;
-    public final void entryRuleTRANSLATABLEID() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:678:1: ( ruleTRANSLATABLEID EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:679:1: ruleTRANSLATABLEID EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getTRANSLATABLEIDRule()); 
-            }
-            pushFollow(FOLLOW_ruleTRANSLATABLEID_in_entryRuleTRANSLATABLEID1387);
-            ruleTRANSLATABLEID();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getTRANSLATABLEIDRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleTRANSLATABLEID1394); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleTRANSLATABLEID"
-
-
-    // $ANTLR start "ruleTRANSLATABLEID"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:686:1: ruleTRANSLATABLEID : ( RULE_ID ) ;
-    public final void ruleTRANSLATABLEID() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:690:2: ( ( RULE_ID ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:691:1: ( RULE_ID )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:691:1: ( RULE_ID )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:692:1: RULE_ID
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getTRANSLATABLEIDAccess().getIDTerminalRuleCall()); 
-            }
-            match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleTRANSLATABLEID1420); if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getTRANSLATABLEIDAccess().getIDTerminalRuleCall()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleTRANSLATABLEID"
-
-
-    // $ANTLR start "entryRuleTRANSLATABLESTRING"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:705:1: entryRuleTRANSLATABLESTRING : ruleTRANSLATABLESTRING EOF ;
-    public final void entryRuleTRANSLATABLESTRING() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:706:1: ( ruleTRANSLATABLESTRING EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:707:1: ruleTRANSLATABLESTRING EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getTRANSLATABLESTRINGRule()); 
-            }
-            pushFollow(FOLLOW_ruleTRANSLATABLESTRING_in_entryRuleTRANSLATABLESTRING1446);
-            ruleTRANSLATABLESTRING();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getTRANSLATABLESTRINGRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleTRANSLATABLESTRING1453); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleTRANSLATABLESTRING"
-
-
-    // $ANTLR start "ruleTRANSLATABLESTRING"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:714:1: ruleTRANSLATABLESTRING : ( RULE_STRING ) ;
-    public final void ruleTRANSLATABLESTRING() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:718:2: ( ( RULE_STRING ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:719:1: ( RULE_STRING )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:719:1: ( RULE_STRING )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:720:1: RULE_STRING
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getTRANSLATABLESTRINGAccess().getSTRINGTerminalRuleCall()); 
-            }
-            match(input,RULE_STRING,FOLLOW_RULE_STRING_in_ruleTRANSLATABLESTRING1479); if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getTRANSLATABLESTRINGAccess().getSTRINGTerminalRuleCall()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleTRANSLATABLESTRING"
-
-
-    // $ANTLR start "entryRuleXImportDeclaration"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:733:1: entryRuleXImportDeclaration : ruleXImportDeclaration EOF ;
-    public final void entryRuleXImportDeclaration() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:734:1: ( ruleXImportDeclaration EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:735:1: ruleXImportDeclaration EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXImportDeclarationRule()); 
-            }
-            pushFollow(FOLLOW_ruleXImportDeclaration_in_entryRuleXImportDeclaration1505);
-            ruleXImportDeclaration();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXImportDeclarationRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXImportDeclaration1512); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXImportDeclaration"
-
-
-    // $ANTLR start "ruleXImportDeclaration"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:742:1: ruleXImportDeclaration : ( ( rule__XImportDeclaration__Group__0 ) ) ;
-    public final void ruleXImportDeclaration() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:746:2: ( ( ( rule__XImportDeclaration__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:747:1: ( ( rule__XImportDeclaration__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:747:1: ( ( rule__XImportDeclaration__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:748:1: ( rule__XImportDeclaration__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXImportDeclarationAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:749:1: ( rule__XImportDeclaration__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:749:2: rule__XImportDeclaration__Group__0
-            {
-            pushFollow(FOLLOW_rule__XImportDeclaration__Group__0_in_ruleXImportDeclaration1538);
-            rule__XImportDeclaration__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXImportDeclarationAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXImportDeclaration"
-
-
-    // $ANTLR start "entryRuleXAnnotation"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:761:1: entryRuleXAnnotation : ruleXAnnotation EOF ;
-    public final void entryRuleXAnnotation() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:762:1: ( ruleXAnnotation EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:763:1: ruleXAnnotation EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAnnotationRule()); 
-            }
-            pushFollow(FOLLOW_ruleXAnnotation_in_entryRuleXAnnotation1565);
-            ruleXAnnotation();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAnnotationRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXAnnotation1572); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXAnnotation"
-
-
-    // $ANTLR start "ruleXAnnotation"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:770:1: ruleXAnnotation : ( ( rule__XAnnotation__Group__0 ) ) ;
-    public final void ruleXAnnotation() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:774:2: ( ( ( rule__XAnnotation__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:775:1: ( ( rule__XAnnotation__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:775:1: ( ( rule__XAnnotation__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:776:1: ( rule__XAnnotation__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAnnotationAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:777:1: ( rule__XAnnotation__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:777:2: rule__XAnnotation__Group__0
-            {
-            pushFollow(FOLLOW_rule__XAnnotation__Group__0_in_ruleXAnnotation1598);
-            rule__XAnnotation__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAnnotationAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXAnnotation"
-
-
-    // $ANTLR start "entryRuleXAnnotationElementValuePair"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:789:1: entryRuleXAnnotationElementValuePair : ruleXAnnotationElementValuePair EOF ;
-    public final void entryRuleXAnnotationElementValuePair() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:790:1: ( ruleXAnnotationElementValuePair EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:791:1: ruleXAnnotationElementValuePair EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAnnotationElementValuePairRule()); 
-            }
-            pushFollow(FOLLOW_ruleXAnnotationElementValuePair_in_entryRuleXAnnotationElementValuePair1625);
-            ruleXAnnotationElementValuePair();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAnnotationElementValuePairRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXAnnotationElementValuePair1632); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXAnnotationElementValuePair"
-
-
-    // $ANTLR start "ruleXAnnotationElementValuePair"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:798:1: ruleXAnnotationElementValuePair : ( ( rule__XAnnotationElementValuePair__Group__0 ) ) ;
-    public final void ruleXAnnotationElementValuePair() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:802:2: ( ( ( rule__XAnnotationElementValuePair__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:803:1: ( ( rule__XAnnotationElementValuePair__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:803:1: ( ( rule__XAnnotationElementValuePair__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:804:1: ( rule__XAnnotationElementValuePair__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAnnotationElementValuePairAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:805:1: ( rule__XAnnotationElementValuePair__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:805:2: rule__XAnnotationElementValuePair__Group__0
-            {
-            pushFollow(FOLLOW_rule__XAnnotationElementValuePair__Group__0_in_ruleXAnnotationElementValuePair1658);
-            rule__XAnnotationElementValuePair__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAnnotationElementValuePairAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXAnnotationElementValuePair"
-
-
-    // $ANTLR start "entryRuleXAnnotationElementValueOrCommaList"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:817:1: entryRuleXAnnotationElementValueOrCommaList : ruleXAnnotationElementValueOrCommaList EOF ;
-    public final void entryRuleXAnnotationElementValueOrCommaList() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:818:1: ( ruleXAnnotationElementValueOrCommaList EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:819:1: ruleXAnnotationElementValueOrCommaList EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAnnotationElementValueOrCommaListRule()); 
-            }
-            pushFollow(FOLLOW_ruleXAnnotationElementValueOrCommaList_in_entryRuleXAnnotationElementValueOrCommaList1685);
-            ruleXAnnotationElementValueOrCommaList();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAnnotationElementValueOrCommaListRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXAnnotationElementValueOrCommaList1692); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXAnnotationElementValueOrCommaList"
-
-
-    // $ANTLR start "ruleXAnnotationElementValueOrCommaList"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:826:1: ruleXAnnotationElementValueOrCommaList : ( ( rule__XAnnotationElementValueOrCommaList__Alternatives ) ) ;
-    public final void ruleXAnnotationElementValueOrCommaList() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:830:2: ( ( ( rule__XAnnotationElementValueOrCommaList__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:831:1: ( ( rule__XAnnotationElementValueOrCommaList__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:831:1: ( ( rule__XAnnotationElementValueOrCommaList__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:832:1: ( rule__XAnnotationElementValueOrCommaList__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:833:1: ( rule__XAnnotationElementValueOrCommaList__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:833:2: rule__XAnnotationElementValueOrCommaList__Alternatives
-            {
-            pushFollow(FOLLOW_rule__XAnnotationElementValueOrCommaList__Alternatives_in_ruleXAnnotationElementValueOrCommaList1718);
-            rule__XAnnotationElementValueOrCommaList__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXAnnotationElementValueOrCommaList"
-
-
-    // $ANTLR start "entryRuleXAnnotationElementValue"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:845:1: entryRuleXAnnotationElementValue : ruleXAnnotationElementValue EOF ;
-    public final void entryRuleXAnnotationElementValue() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:846:1: ( ruleXAnnotationElementValue EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:847:1: ruleXAnnotationElementValue EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAnnotationElementValueRule()); 
-            }
-            pushFollow(FOLLOW_ruleXAnnotationElementValue_in_entryRuleXAnnotationElementValue1745);
-            ruleXAnnotationElementValue();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAnnotationElementValueRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXAnnotationElementValue1752); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXAnnotationElementValue"
-
-
-    // $ANTLR start "ruleXAnnotationElementValue"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:854:1: ruleXAnnotationElementValue : ( ( rule__XAnnotationElementValue__Alternatives ) ) ;
-    public final void ruleXAnnotationElementValue() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:858:2: ( ( ( rule__XAnnotationElementValue__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:859:1: ( ( rule__XAnnotationElementValue__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:859:1: ( ( rule__XAnnotationElementValue__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:860:1: ( rule__XAnnotationElementValue__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAnnotationElementValueAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:861:1: ( rule__XAnnotationElementValue__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:861:2: rule__XAnnotationElementValue__Alternatives
-            {
-            pushFollow(FOLLOW_rule__XAnnotationElementValue__Alternatives_in_ruleXAnnotationElementValue1778);
-            rule__XAnnotationElementValue__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAnnotationElementValueAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXAnnotationElementValue"
-
-
-    // $ANTLR start "entryRuleXAnnotationOrExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:873:1: entryRuleXAnnotationOrExpression : ruleXAnnotationOrExpression EOF ;
-    public final void entryRuleXAnnotationOrExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:874:1: ( ruleXAnnotationOrExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:875:1: ruleXAnnotationOrExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAnnotationOrExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXAnnotationOrExpression_in_entryRuleXAnnotationOrExpression1805);
-            ruleXAnnotationOrExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAnnotationOrExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXAnnotationOrExpression1812); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXAnnotationOrExpression"
-
-
-    // $ANTLR start "ruleXAnnotationOrExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:882:1: ruleXAnnotationOrExpression : ( ( rule__XAnnotationOrExpression__Alternatives ) ) ;
-    public final void ruleXAnnotationOrExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:886:2: ( ( ( rule__XAnnotationOrExpression__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:887:1: ( ( rule__XAnnotationOrExpression__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:887:1: ( ( rule__XAnnotationOrExpression__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:888:1: ( rule__XAnnotationOrExpression__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAnnotationOrExpressionAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:889:1: ( rule__XAnnotationOrExpression__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:889:2: rule__XAnnotationOrExpression__Alternatives
-            {
-            pushFollow(FOLLOW_rule__XAnnotationOrExpression__Alternatives_in_ruleXAnnotationOrExpression1838);
-            rule__XAnnotationOrExpression__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAnnotationOrExpressionAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXAnnotationOrExpression"
-
-
-    // $ANTLR start "entryRuleXExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:901:1: entryRuleXExpression : ruleXExpression EOF ;
-    public final void entryRuleXExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:902:1: ( ruleXExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:903:1: ruleXExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXExpression_in_entryRuleXExpression1865);
-            ruleXExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXExpression1872); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXExpression"
-
-
-    // $ANTLR start "ruleXExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:910:1: ruleXExpression : ( ruleXAssignment ) ;
-    public final void ruleXExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:914:2: ( ( ruleXAssignment ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:915:1: ( ruleXAssignment )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:915:1: ( ruleXAssignment )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:916:1: ruleXAssignment
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXExpressionAccess().getXAssignmentParserRuleCall()); 
-            }
-            pushFollow(FOLLOW_ruleXAssignment_in_ruleXExpression1898);
-            ruleXAssignment();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXExpressionAccess().getXAssignmentParserRuleCall()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXExpression"
-
-
-    // $ANTLR start "entryRuleXAssignment"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:929:1: entryRuleXAssignment : ruleXAssignment EOF ;
-    public final void entryRuleXAssignment() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:930:1: ( ruleXAssignment EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:931:1: ruleXAssignment EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAssignmentRule()); 
-            }
-            pushFollow(FOLLOW_ruleXAssignment_in_entryRuleXAssignment1924);
-            ruleXAssignment();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAssignmentRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXAssignment1931); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXAssignment"
-
-
-    // $ANTLR start "ruleXAssignment"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:938:1: ruleXAssignment : ( ( rule__XAssignment__Alternatives ) ) ;
-    public final void ruleXAssignment() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:942:2: ( ( ( rule__XAssignment__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:943:1: ( ( rule__XAssignment__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:943:1: ( ( rule__XAssignment__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:944:1: ( rule__XAssignment__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAssignmentAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:945:1: ( rule__XAssignment__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:945:2: rule__XAssignment__Alternatives
-            {
-            pushFollow(FOLLOW_rule__XAssignment__Alternatives_in_ruleXAssignment1957);
-            rule__XAssignment__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAssignmentAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXAssignment"
-
-
-    // $ANTLR start "entryRuleOpSingleAssign"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:957:1: entryRuleOpSingleAssign : ruleOpSingleAssign EOF ;
-    public final void entryRuleOpSingleAssign() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:958:1: ( ruleOpSingleAssign EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:959:1: ruleOpSingleAssign EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpSingleAssignRule()); 
-            }
-            pushFollow(FOLLOW_ruleOpSingleAssign_in_entryRuleOpSingleAssign1984);
-            ruleOpSingleAssign();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpSingleAssignRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleOpSingleAssign1991); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleOpSingleAssign"
-
-
-    // $ANTLR start "ruleOpSingleAssign"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:966:1: ruleOpSingleAssign : ( '=' ) ;
-    public final void ruleOpSingleAssign() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:970:2: ( ( '=' ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:971:1: ( '=' )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:971:1: ( '=' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:972:1: '='
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpSingleAssignAccess().getEqualsSignKeyword()); 
-            }
-            match(input,13,FOLLOW_13_in_ruleOpSingleAssign2018); if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpSingleAssignAccess().getEqualsSignKeyword()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleOpSingleAssign"
-
-
-    // $ANTLR start "entryRuleOpMultiAssign"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:987:1: entryRuleOpMultiAssign : ruleOpMultiAssign EOF ;
-    public final void entryRuleOpMultiAssign() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:988:1: ( ruleOpMultiAssign EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:989:1: ruleOpMultiAssign EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpMultiAssignRule()); 
-            }
-            pushFollow(FOLLOW_ruleOpMultiAssign_in_entryRuleOpMultiAssign2046);
-            ruleOpMultiAssign();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpMultiAssignRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleOpMultiAssign2053); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleOpMultiAssign"
-
-
-    // $ANTLR start "ruleOpMultiAssign"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:996:1: ruleOpMultiAssign : ( ( rule__OpMultiAssign__Alternatives ) ) ;
-    public final void ruleOpMultiAssign() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1000:2: ( ( ( rule__OpMultiAssign__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1001:1: ( ( rule__OpMultiAssign__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1001:1: ( ( rule__OpMultiAssign__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1002:1: ( rule__OpMultiAssign__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpMultiAssignAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1003:1: ( rule__OpMultiAssign__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1003:2: rule__OpMultiAssign__Alternatives
-            {
-            pushFollow(FOLLOW_rule__OpMultiAssign__Alternatives_in_ruleOpMultiAssign2079);
-            rule__OpMultiAssign__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpMultiAssignAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleOpMultiAssign"
-
-
-    // $ANTLR start "entryRuleXOrExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1015:1: entryRuleXOrExpression : ruleXOrExpression EOF ;
-    public final void entryRuleXOrExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1016:1: ( ruleXOrExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1017:1: ruleXOrExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXOrExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXOrExpression_in_entryRuleXOrExpression2106);
-            ruleXOrExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXOrExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXOrExpression2113); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXOrExpression"
-
-
-    // $ANTLR start "ruleXOrExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1024:1: ruleXOrExpression : ( ( rule__XOrExpression__Group__0 ) ) ;
-    public final void ruleXOrExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1028:2: ( ( ( rule__XOrExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1029:1: ( ( rule__XOrExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1029:1: ( ( rule__XOrExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1030:1: ( rule__XOrExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXOrExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1031:1: ( rule__XOrExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1031:2: rule__XOrExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XOrExpression__Group__0_in_ruleXOrExpression2139);
-            rule__XOrExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXOrExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXOrExpression"
-
-
-    // $ANTLR start "entryRuleOpOr"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1043:1: entryRuleOpOr : ruleOpOr EOF ;
-    public final void entryRuleOpOr() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1044:1: ( ruleOpOr EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1045:1: ruleOpOr EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpOrRule()); 
-            }
-            pushFollow(FOLLOW_ruleOpOr_in_entryRuleOpOr2166);
-            ruleOpOr();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpOrRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleOpOr2173); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleOpOr"
-
-
-    // $ANTLR start "ruleOpOr"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1052:1: ruleOpOr : ( '||' ) ;
-    public final void ruleOpOr() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1056:2: ( ( '||' ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1057:1: ( '||' )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1057:1: ( '||' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1058:1: '||'
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpOrAccess().getVerticalLineVerticalLineKeyword()); 
-            }
-            match(input,14,FOLLOW_14_in_ruleOpOr2200); if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpOrAccess().getVerticalLineVerticalLineKeyword()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleOpOr"
-
-
-    // $ANTLR start "entryRuleXAndExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1073:1: entryRuleXAndExpression : ruleXAndExpression EOF ;
-    public final void entryRuleXAndExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1074:1: ( ruleXAndExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1075:1: ruleXAndExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAndExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXAndExpression_in_entryRuleXAndExpression2228);
-            ruleXAndExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAndExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXAndExpression2235); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXAndExpression"
-
-
-    // $ANTLR start "ruleXAndExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1082:1: ruleXAndExpression : ( ( rule__XAndExpression__Group__0 ) ) ;
-    public final void ruleXAndExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1086:2: ( ( ( rule__XAndExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1087:1: ( ( rule__XAndExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1087:1: ( ( rule__XAndExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1088:1: ( rule__XAndExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAndExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1089:1: ( rule__XAndExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1089:2: rule__XAndExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XAndExpression__Group__0_in_ruleXAndExpression2261);
-            rule__XAndExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAndExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXAndExpression"
-
-
-    // $ANTLR start "entryRuleOpAnd"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1101:1: entryRuleOpAnd : ruleOpAnd EOF ;
-    public final void entryRuleOpAnd() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1102:1: ( ruleOpAnd EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1103:1: ruleOpAnd EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpAndRule()); 
-            }
-            pushFollow(FOLLOW_ruleOpAnd_in_entryRuleOpAnd2288);
-            ruleOpAnd();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpAndRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleOpAnd2295); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleOpAnd"
-
-
-    // $ANTLR start "ruleOpAnd"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1110:1: ruleOpAnd : ( '&&' ) ;
-    public final void ruleOpAnd() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1114:2: ( ( '&&' ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1115:1: ( '&&' )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1115:1: ( '&&' )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1116:1: '&&'
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpAndAccess().getAmpersandAmpersandKeyword()); 
-            }
-            match(input,15,FOLLOW_15_in_ruleOpAnd2322); if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpAndAccess().getAmpersandAmpersandKeyword()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleOpAnd"
-
-
-    // $ANTLR start "entryRuleXEqualityExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1131:1: entryRuleXEqualityExpression : ruleXEqualityExpression EOF ;
-    public final void entryRuleXEqualityExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1132:1: ( ruleXEqualityExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1133:1: ruleXEqualityExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXEqualityExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXEqualityExpression_in_entryRuleXEqualityExpression2350);
-            ruleXEqualityExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXEqualityExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXEqualityExpression2357); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXEqualityExpression"
-
-
-    // $ANTLR start "ruleXEqualityExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1140:1: ruleXEqualityExpression : ( ( rule__XEqualityExpression__Group__0 ) ) ;
-    public final void ruleXEqualityExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1144:2: ( ( ( rule__XEqualityExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1145:1: ( ( rule__XEqualityExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1145:1: ( ( rule__XEqualityExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1146:1: ( rule__XEqualityExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXEqualityExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1147:1: ( rule__XEqualityExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1147:2: rule__XEqualityExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XEqualityExpression__Group__0_in_ruleXEqualityExpression2383);
-            rule__XEqualityExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXEqualityExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXEqualityExpression"
-
-
-    // $ANTLR start "entryRuleOpEquality"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1159:1: entryRuleOpEquality : ruleOpEquality EOF ;
-    public final void entryRuleOpEquality() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1160:1: ( ruleOpEquality EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1161:1: ruleOpEquality EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpEqualityRule()); 
-            }
-            pushFollow(FOLLOW_ruleOpEquality_in_entryRuleOpEquality2410);
-            ruleOpEquality();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpEqualityRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleOpEquality2417); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleOpEquality"
-
-
-    // $ANTLR start "ruleOpEquality"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1168:1: ruleOpEquality : ( ( rule__OpEquality__Alternatives ) ) ;
-    public final void ruleOpEquality() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1172:2: ( ( ( rule__OpEquality__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1173:1: ( ( rule__OpEquality__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1173:1: ( ( rule__OpEquality__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1174:1: ( rule__OpEquality__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpEqualityAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1175:1: ( rule__OpEquality__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1175:2: rule__OpEquality__Alternatives
-            {
-            pushFollow(FOLLOW_rule__OpEquality__Alternatives_in_ruleOpEquality2443);
-            rule__OpEquality__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpEqualityAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleOpEquality"
-
-
-    // $ANTLR start "entryRuleXRelationalExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1187:1: entryRuleXRelationalExpression : ruleXRelationalExpression EOF ;
-    public final void entryRuleXRelationalExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1188:1: ( ruleXRelationalExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1189:1: ruleXRelationalExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXRelationalExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXRelationalExpression_in_entryRuleXRelationalExpression2470);
-            ruleXRelationalExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXRelationalExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXRelationalExpression2477); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXRelationalExpression"
-
-
-    // $ANTLR start "ruleXRelationalExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1196:1: ruleXRelationalExpression : ( ( rule__XRelationalExpression__Group__0 ) ) ;
-    public final void ruleXRelationalExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1200:2: ( ( ( rule__XRelationalExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1201:1: ( ( rule__XRelationalExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1201:1: ( ( rule__XRelationalExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1202:1: ( rule__XRelationalExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXRelationalExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1203:1: ( rule__XRelationalExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1203:2: rule__XRelationalExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XRelationalExpression__Group__0_in_ruleXRelationalExpression2503);
-            rule__XRelationalExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXRelationalExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXRelationalExpression"
-
-
-    // $ANTLR start "entryRuleOpCompare"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1215:1: entryRuleOpCompare : ruleOpCompare EOF ;
-    public final void entryRuleOpCompare() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1216:1: ( ruleOpCompare EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1217:1: ruleOpCompare EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpCompareRule()); 
-            }
-            pushFollow(FOLLOW_ruleOpCompare_in_entryRuleOpCompare2530);
-            ruleOpCompare();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpCompareRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleOpCompare2537); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleOpCompare"
-
-
-    // $ANTLR start "ruleOpCompare"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1224:1: ruleOpCompare : ( ( rule__OpCompare__Alternatives ) ) ;
-    public final void ruleOpCompare() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1228:2: ( ( ( rule__OpCompare__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1229:1: ( ( rule__OpCompare__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1229:1: ( ( rule__OpCompare__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1230:1: ( rule__OpCompare__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpCompareAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1231:1: ( rule__OpCompare__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1231:2: rule__OpCompare__Alternatives
-            {
-            pushFollow(FOLLOW_rule__OpCompare__Alternatives_in_ruleOpCompare2563);
-            rule__OpCompare__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpCompareAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleOpCompare"
-
-
-    // $ANTLR start "entryRuleXOtherOperatorExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1243:1: entryRuleXOtherOperatorExpression : ruleXOtherOperatorExpression EOF ;
-    public final void entryRuleXOtherOperatorExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1244:1: ( ruleXOtherOperatorExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1245:1: ruleXOtherOperatorExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXOtherOperatorExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXOtherOperatorExpression_in_entryRuleXOtherOperatorExpression2590);
-            ruleXOtherOperatorExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXOtherOperatorExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXOtherOperatorExpression2597); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXOtherOperatorExpression"
-
-
-    // $ANTLR start "ruleXOtherOperatorExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1252:1: ruleXOtherOperatorExpression : ( ( rule__XOtherOperatorExpression__Group__0 ) ) ;
-    public final void ruleXOtherOperatorExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1256:2: ( ( ( rule__XOtherOperatorExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1257:1: ( ( rule__XOtherOperatorExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1257:1: ( ( rule__XOtherOperatorExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1258:1: ( rule__XOtherOperatorExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXOtherOperatorExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1259:1: ( rule__XOtherOperatorExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1259:2: rule__XOtherOperatorExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XOtherOperatorExpression__Group__0_in_ruleXOtherOperatorExpression2623);
-            rule__XOtherOperatorExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXOtherOperatorExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXOtherOperatorExpression"
-
-
-    // $ANTLR start "entryRuleOpOther"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1271:1: entryRuleOpOther : ruleOpOther EOF ;
-    public final void entryRuleOpOther() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1272:1: ( ruleOpOther EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1273:1: ruleOpOther EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpOtherRule()); 
-            }
-            pushFollow(FOLLOW_ruleOpOther_in_entryRuleOpOther2650);
-            ruleOpOther();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpOtherRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleOpOther2657); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleOpOther"
-
-
-    // $ANTLR start "ruleOpOther"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1280:1: ruleOpOther : ( ( rule__OpOther__Alternatives ) ) ;
-    public final void ruleOpOther() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1284:2: ( ( ( rule__OpOther__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1285:1: ( ( rule__OpOther__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1285:1: ( ( rule__OpOther__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1286:1: ( rule__OpOther__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpOtherAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1287:1: ( rule__OpOther__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1287:2: rule__OpOther__Alternatives
-            {
-            pushFollow(FOLLOW_rule__OpOther__Alternatives_in_ruleOpOther2683);
-            rule__OpOther__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpOtherAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleOpOther"
-
-
-    // $ANTLR start "entryRuleXAdditiveExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1299:1: entryRuleXAdditiveExpression : ruleXAdditiveExpression EOF ;
-    public final void entryRuleXAdditiveExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1300:1: ( ruleXAdditiveExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1301:1: ruleXAdditiveExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAdditiveExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXAdditiveExpression_in_entryRuleXAdditiveExpression2710);
-            ruleXAdditiveExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAdditiveExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXAdditiveExpression2717); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXAdditiveExpression"
-
-
-    // $ANTLR start "ruleXAdditiveExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1308:1: ruleXAdditiveExpression : ( ( rule__XAdditiveExpression__Group__0 ) ) ;
-    public final void ruleXAdditiveExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1312:2: ( ( ( rule__XAdditiveExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1313:1: ( ( rule__XAdditiveExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1313:1: ( ( rule__XAdditiveExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1314:1: ( rule__XAdditiveExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXAdditiveExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1315:1: ( rule__XAdditiveExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1315:2: rule__XAdditiveExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XAdditiveExpression__Group__0_in_ruleXAdditiveExpression2743);
-            rule__XAdditiveExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXAdditiveExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXAdditiveExpression"
-
-
-    // $ANTLR start "entryRuleOpAdd"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1327:1: entryRuleOpAdd : ruleOpAdd EOF ;
-    public final void entryRuleOpAdd() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1328:1: ( ruleOpAdd EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1329:1: ruleOpAdd EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpAddRule()); 
-            }
-            pushFollow(FOLLOW_ruleOpAdd_in_entryRuleOpAdd2770);
-            ruleOpAdd();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpAddRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleOpAdd2777); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleOpAdd"
-
-
-    // $ANTLR start "ruleOpAdd"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1336:1: ruleOpAdd : ( ( rule__OpAdd__Alternatives ) ) ;
-    public final void ruleOpAdd() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1340:2: ( ( ( rule__OpAdd__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1341:1: ( ( rule__OpAdd__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1341:1: ( ( rule__OpAdd__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1342:1: ( rule__OpAdd__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpAddAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1343:1: ( rule__OpAdd__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1343:2: rule__OpAdd__Alternatives
-            {
-            pushFollow(FOLLOW_rule__OpAdd__Alternatives_in_ruleOpAdd2803);
-            rule__OpAdd__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpAddAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleOpAdd"
-
-
-    // $ANTLR start "entryRuleXMultiplicativeExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1355:1: entryRuleXMultiplicativeExpression : ruleXMultiplicativeExpression EOF ;
-    public final void entryRuleXMultiplicativeExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1356:1: ( ruleXMultiplicativeExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1357:1: ruleXMultiplicativeExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXMultiplicativeExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXMultiplicativeExpression_in_entryRuleXMultiplicativeExpression2830);
-            ruleXMultiplicativeExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXMultiplicativeExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXMultiplicativeExpression2837); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXMultiplicativeExpression"
-
-
-    // $ANTLR start "ruleXMultiplicativeExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1364:1: ruleXMultiplicativeExpression : ( ( rule__XMultiplicativeExpression__Group__0 ) ) ;
-    public final void ruleXMultiplicativeExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1368:2: ( ( ( rule__XMultiplicativeExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1369:1: ( ( rule__XMultiplicativeExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1369:1: ( ( rule__XMultiplicativeExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1370:1: ( rule__XMultiplicativeExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXMultiplicativeExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1371:1: ( rule__XMultiplicativeExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1371:2: rule__XMultiplicativeExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XMultiplicativeExpression__Group__0_in_ruleXMultiplicativeExpression2863);
-            rule__XMultiplicativeExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXMultiplicativeExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXMultiplicativeExpression"
-
-
-    // $ANTLR start "entryRuleOpMulti"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1383:1: entryRuleOpMulti : ruleOpMulti EOF ;
-    public final void entryRuleOpMulti() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1384:1: ( ruleOpMulti EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1385:1: ruleOpMulti EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpMultiRule()); 
-            }
-            pushFollow(FOLLOW_ruleOpMulti_in_entryRuleOpMulti2890);
-            ruleOpMulti();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpMultiRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleOpMulti2897); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleOpMulti"
-
-
-    // $ANTLR start "ruleOpMulti"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1392:1: ruleOpMulti : ( ( rule__OpMulti__Alternatives ) ) ;
-    public final void ruleOpMulti() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1396:2: ( ( ( rule__OpMulti__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1397:1: ( ( rule__OpMulti__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1397:1: ( ( rule__OpMulti__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1398:1: ( rule__OpMulti__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpMultiAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1399:1: ( rule__OpMulti__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1399:2: rule__OpMulti__Alternatives
-            {
-            pushFollow(FOLLOW_rule__OpMulti__Alternatives_in_ruleOpMulti2923);
-            rule__OpMulti__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpMultiAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleOpMulti"
-
-
-    // $ANTLR start "entryRuleXUnaryOperation"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1411:1: entryRuleXUnaryOperation : ruleXUnaryOperation EOF ;
-    public final void entryRuleXUnaryOperation() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1412:1: ( ruleXUnaryOperation EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1413:1: ruleXUnaryOperation EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXUnaryOperationRule()); 
-            }
-            pushFollow(FOLLOW_ruleXUnaryOperation_in_entryRuleXUnaryOperation2950);
-            ruleXUnaryOperation();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXUnaryOperationRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXUnaryOperation2957); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXUnaryOperation"
-
-
-    // $ANTLR start "ruleXUnaryOperation"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1420:1: ruleXUnaryOperation : ( ( rule__XUnaryOperation__Alternatives ) ) ;
-    public final void ruleXUnaryOperation() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1424:2: ( ( ( rule__XUnaryOperation__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1425:1: ( ( rule__XUnaryOperation__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1425:1: ( ( rule__XUnaryOperation__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1426:1: ( rule__XUnaryOperation__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXUnaryOperationAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1427:1: ( rule__XUnaryOperation__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1427:2: rule__XUnaryOperation__Alternatives
-            {
-            pushFollow(FOLLOW_rule__XUnaryOperation__Alternatives_in_ruleXUnaryOperation2983);
-            rule__XUnaryOperation__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXUnaryOperationAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXUnaryOperation"
-
-
-    // $ANTLR start "entryRuleOpUnary"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1439:1: entryRuleOpUnary : ruleOpUnary EOF ;
-    public final void entryRuleOpUnary() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1440:1: ( ruleOpUnary EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1441:1: ruleOpUnary EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpUnaryRule()); 
-            }
-            pushFollow(FOLLOW_ruleOpUnary_in_entryRuleOpUnary3010);
-            ruleOpUnary();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpUnaryRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleOpUnary3017); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleOpUnary"
-
-
-    // $ANTLR start "ruleOpUnary"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1448:1: ruleOpUnary : ( ( rule__OpUnary__Alternatives ) ) ;
-    public final void ruleOpUnary() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1452:2: ( ( ( rule__OpUnary__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1453:1: ( ( rule__OpUnary__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1453:1: ( ( rule__OpUnary__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1454:1: ( rule__OpUnary__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpUnaryAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1455:1: ( rule__OpUnary__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1455:2: rule__OpUnary__Alternatives
-            {
-            pushFollow(FOLLOW_rule__OpUnary__Alternatives_in_ruleOpUnary3043);
-            rule__OpUnary__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpUnaryAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleOpUnary"
-
-
-    // $ANTLR start "entryRuleXCastedExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1467:1: entryRuleXCastedExpression : ruleXCastedExpression EOF ;
-    public final void entryRuleXCastedExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1468:1: ( ruleXCastedExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1469:1: ruleXCastedExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXCastedExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXCastedExpression_in_entryRuleXCastedExpression3070);
-            ruleXCastedExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXCastedExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXCastedExpression3077); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXCastedExpression"
-
-
-    // $ANTLR start "ruleXCastedExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1476:1: ruleXCastedExpression : ( ( rule__XCastedExpression__Group__0 ) ) ;
-    public final void ruleXCastedExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1480:2: ( ( ( rule__XCastedExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1481:1: ( ( rule__XCastedExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1481:1: ( ( rule__XCastedExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1482:1: ( rule__XCastedExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXCastedExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1483:1: ( rule__XCastedExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1483:2: rule__XCastedExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XCastedExpression__Group__0_in_ruleXCastedExpression3103);
-            rule__XCastedExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXCastedExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXCastedExpression"
-
-
-    // $ANTLR start "entryRuleXPostfixOperation"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1495:1: entryRuleXPostfixOperation : ruleXPostfixOperation EOF ;
-    public final void entryRuleXPostfixOperation() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1496:1: ( ruleXPostfixOperation EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1497:1: ruleXPostfixOperation EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXPostfixOperationRule()); 
-            }
-            pushFollow(FOLLOW_ruleXPostfixOperation_in_entryRuleXPostfixOperation3130);
-            ruleXPostfixOperation();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXPostfixOperationRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXPostfixOperation3137); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXPostfixOperation"
-
-
-    // $ANTLR start "ruleXPostfixOperation"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1504:1: ruleXPostfixOperation : ( ( rule__XPostfixOperation__Group__0 ) ) ;
-    public final void ruleXPostfixOperation() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1508:2: ( ( ( rule__XPostfixOperation__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1509:1: ( ( rule__XPostfixOperation__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1509:1: ( ( rule__XPostfixOperation__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1510:1: ( rule__XPostfixOperation__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXPostfixOperationAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1511:1: ( rule__XPostfixOperation__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1511:2: rule__XPostfixOperation__Group__0
-            {
-            pushFollow(FOLLOW_rule__XPostfixOperation__Group__0_in_ruleXPostfixOperation3163);
-            rule__XPostfixOperation__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXPostfixOperationAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXPostfixOperation"
-
-
-    // $ANTLR start "entryRuleOpPostfix"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1523:1: entryRuleOpPostfix : ruleOpPostfix EOF ;
-    public final void entryRuleOpPostfix() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1524:1: ( ruleOpPostfix EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1525:1: ruleOpPostfix EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpPostfixRule()); 
-            }
-            pushFollow(FOLLOW_ruleOpPostfix_in_entryRuleOpPostfix3190);
-            ruleOpPostfix();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpPostfixRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleOpPostfix3197); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleOpPostfix"
-
-
-    // $ANTLR start "ruleOpPostfix"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1532:1: ruleOpPostfix : ( ( rule__OpPostfix__Alternatives ) ) ;
-    public final void ruleOpPostfix() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1536:2: ( ( ( rule__OpPostfix__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1537:1: ( ( rule__OpPostfix__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1537:1: ( ( rule__OpPostfix__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1538:1: ( rule__OpPostfix__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getOpPostfixAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1539:1: ( rule__OpPostfix__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1539:2: rule__OpPostfix__Alternatives
-            {
-            pushFollow(FOLLOW_rule__OpPostfix__Alternatives_in_ruleOpPostfix3223);
-            rule__OpPostfix__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getOpPostfixAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleOpPostfix"
-
-
-    // $ANTLR start "entryRuleXMemberFeatureCall"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1551:1: entryRuleXMemberFeatureCall : ruleXMemberFeatureCall EOF ;
-    public final void entryRuleXMemberFeatureCall() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1552:1: ( ruleXMemberFeatureCall EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1553:1: ruleXMemberFeatureCall EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXMemberFeatureCallRule()); 
-            }
-            pushFollow(FOLLOW_ruleXMemberFeatureCall_in_entryRuleXMemberFeatureCall3250);
-            ruleXMemberFeatureCall();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXMemberFeatureCallRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXMemberFeatureCall3257); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXMemberFeatureCall"
-
-
-    // $ANTLR start "ruleXMemberFeatureCall"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1560:1: ruleXMemberFeatureCall : ( ( rule__XMemberFeatureCall__Group__0 ) ) ;
-    public final void ruleXMemberFeatureCall() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1564:2: ( ( ( rule__XMemberFeatureCall__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1565:1: ( ( rule__XMemberFeatureCall__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1565:1: ( ( rule__XMemberFeatureCall__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1566:1: ( rule__XMemberFeatureCall__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXMemberFeatureCallAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1567:1: ( rule__XMemberFeatureCall__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1567:2: rule__XMemberFeatureCall__Group__0
-            {
-            pushFollow(FOLLOW_rule__XMemberFeatureCall__Group__0_in_ruleXMemberFeatureCall3283);
-            rule__XMemberFeatureCall__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXMemberFeatureCallAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXMemberFeatureCall"
-
-
-    // $ANTLR start "entryRuleXPrimaryExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1579:1: entryRuleXPrimaryExpression : ruleXPrimaryExpression EOF ;
-    public final void entryRuleXPrimaryExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1580:1: ( ruleXPrimaryExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1581:1: ruleXPrimaryExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXPrimaryExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXPrimaryExpression_in_entryRuleXPrimaryExpression3310);
-            ruleXPrimaryExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXPrimaryExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXPrimaryExpression3317); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXPrimaryExpression"
-
-
-    // $ANTLR start "ruleXPrimaryExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1588:1: ruleXPrimaryExpression : ( ( rule__XPrimaryExpression__Alternatives ) ) ;
-    public final void ruleXPrimaryExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1592:2: ( ( ( rule__XPrimaryExpression__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1593:1: ( ( rule__XPrimaryExpression__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1593:1: ( ( rule__XPrimaryExpression__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1594:1: ( rule__XPrimaryExpression__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXPrimaryExpressionAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1595:1: ( rule__XPrimaryExpression__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1595:2: rule__XPrimaryExpression__Alternatives
-            {
-            pushFollow(FOLLOW_rule__XPrimaryExpression__Alternatives_in_ruleXPrimaryExpression3343);
-            rule__XPrimaryExpression__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXPrimaryExpressionAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXPrimaryExpression"
-
-
-    // $ANTLR start "entryRuleXLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1607:1: entryRuleXLiteral : ruleXLiteral EOF ;
-    public final void entryRuleXLiteral() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1608:1: ( ruleXLiteral EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1609:1: ruleXLiteral EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXLiteralRule()); 
-            }
-            pushFollow(FOLLOW_ruleXLiteral_in_entryRuleXLiteral3370);
-            ruleXLiteral();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXLiteralRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXLiteral3377); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXLiteral"
-
-
-    // $ANTLR start "ruleXLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1616:1: ruleXLiteral : ( ( rule__XLiteral__Alternatives ) ) ;
-    public final void ruleXLiteral() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1620:2: ( ( ( rule__XLiteral__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1621:1: ( ( rule__XLiteral__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1621:1: ( ( rule__XLiteral__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1622:1: ( rule__XLiteral__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXLiteralAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1623:1: ( rule__XLiteral__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1623:2: rule__XLiteral__Alternatives
-            {
-            pushFollow(FOLLOW_rule__XLiteral__Alternatives_in_ruleXLiteral3403);
-            rule__XLiteral__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXLiteralAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXLiteral"
-
-
-    // $ANTLR start "entryRuleXCollectionLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1635:1: entryRuleXCollectionLiteral : ruleXCollectionLiteral EOF ;
-    public final void entryRuleXCollectionLiteral() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1636:1: ( ruleXCollectionLiteral EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1637:1: ruleXCollectionLiteral EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXCollectionLiteralRule()); 
-            }
-            pushFollow(FOLLOW_ruleXCollectionLiteral_in_entryRuleXCollectionLiteral3430);
-            ruleXCollectionLiteral();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXCollectionLiteralRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXCollectionLiteral3437); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXCollectionLiteral"
-
-
-    // $ANTLR start "ruleXCollectionLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1644:1: ruleXCollectionLiteral : ( ( rule__XCollectionLiteral__Alternatives ) ) ;
-    public final void ruleXCollectionLiteral() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1648:2: ( ( ( rule__XCollectionLiteral__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1649:1: ( ( rule__XCollectionLiteral__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1649:1: ( ( rule__XCollectionLiteral__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1650:1: ( rule__XCollectionLiteral__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXCollectionLiteralAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1651:1: ( rule__XCollectionLiteral__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1651:2: rule__XCollectionLiteral__Alternatives
-            {
-            pushFollow(FOLLOW_rule__XCollectionLiteral__Alternatives_in_ruleXCollectionLiteral3463);
-            rule__XCollectionLiteral__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXCollectionLiteralAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXCollectionLiteral"
-
-
-    // $ANTLR start "entryRuleXSetLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1663:1: entryRuleXSetLiteral : ruleXSetLiteral EOF ;
-    public final void entryRuleXSetLiteral() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1664:1: ( ruleXSetLiteral EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1665:1: ruleXSetLiteral EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXSetLiteralRule()); 
-            }
-            pushFollow(FOLLOW_ruleXSetLiteral_in_entryRuleXSetLiteral3490);
-            ruleXSetLiteral();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXSetLiteralRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXSetLiteral3497); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXSetLiteral"
-
-
-    // $ANTLR start "ruleXSetLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1672:1: ruleXSetLiteral : ( ( rule__XSetLiteral__Group__0 ) ) ;
-    public final void ruleXSetLiteral() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1676:2: ( ( ( rule__XSetLiteral__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1677:1: ( ( rule__XSetLiteral__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1677:1: ( ( rule__XSetLiteral__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1678:1: ( rule__XSetLiteral__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXSetLiteralAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1679:1: ( rule__XSetLiteral__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1679:2: rule__XSetLiteral__Group__0
-            {
-            pushFollow(FOLLOW_rule__XSetLiteral__Group__0_in_ruleXSetLiteral3523);
-            rule__XSetLiteral__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXSetLiteralAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXSetLiteral"
-
-
-    // $ANTLR start "entryRuleXListLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1691:1: entryRuleXListLiteral : ruleXListLiteral EOF ;
-    public final void entryRuleXListLiteral() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1692:1: ( ruleXListLiteral EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1693:1: ruleXListLiteral EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXListLiteralRule()); 
-            }
-            pushFollow(FOLLOW_ruleXListLiteral_in_entryRuleXListLiteral3550);
-            ruleXListLiteral();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXListLiteralRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXListLiteral3557); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXListLiteral"
-
-
-    // $ANTLR start "ruleXListLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1700:1: ruleXListLiteral : ( ( rule__XListLiteral__Group__0 ) ) ;
-    public final void ruleXListLiteral() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1704:2: ( ( ( rule__XListLiteral__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1705:1: ( ( rule__XListLiteral__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1705:1: ( ( rule__XListLiteral__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1706:1: ( rule__XListLiteral__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXListLiteralAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1707:1: ( rule__XListLiteral__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1707:2: rule__XListLiteral__Group__0
-            {
-            pushFollow(FOLLOW_rule__XListLiteral__Group__0_in_ruleXListLiteral3583);
-            rule__XListLiteral__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXListLiteralAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXListLiteral"
-
-
-    // $ANTLR start "entryRuleXClosure"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1719:1: entryRuleXClosure : ruleXClosure EOF ;
-    public final void entryRuleXClosure() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1720:1: ( ruleXClosure EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1721:1: ruleXClosure EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXClosureRule()); 
-            }
-            pushFollow(FOLLOW_ruleXClosure_in_entryRuleXClosure3610);
-            ruleXClosure();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXClosureRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXClosure3617); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXClosure"
-
-
-    // $ANTLR start "ruleXClosure"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1728:1: ruleXClosure : ( ( rule__XClosure__Group__0 ) ) ;
-    public final void ruleXClosure() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1732:2: ( ( ( rule__XClosure__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1733:1: ( ( rule__XClosure__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1733:1: ( ( rule__XClosure__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1734:1: ( rule__XClosure__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXClosureAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1735:1: ( rule__XClosure__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1735:2: rule__XClosure__Group__0
-            {
-            pushFollow(FOLLOW_rule__XClosure__Group__0_in_ruleXClosure3643);
-            rule__XClosure__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXClosureAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXClosure"
-
-
-    // $ANTLR start "entryRuleXExpressionInClosure"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1747:1: entryRuleXExpressionInClosure : ruleXExpressionInClosure EOF ;
-    public final void entryRuleXExpressionInClosure() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1748:1: ( ruleXExpressionInClosure EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1749:1: ruleXExpressionInClosure EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXExpressionInClosureRule()); 
-            }
-            pushFollow(FOLLOW_ruleXExpressionInClosure_in_entryRuleXExpressionInClosure3670);
-            ruleXExpressionInClosure();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXExpressionInClosureRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXExpressionInClosure3677); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXExpressionInClosure"
-
-
-    // $ANTLR start "ruleXExpressionInClosure"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1756:1: ruleXExpressionInClosure : ( ( rule__XExpressionInClosure__Group__0 ) ) ;
-    public final void ruleXExpressionInClosure() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1760:2: ( ( ( rule__XExpressionInClosure__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1761:1: ( ( rule__XExpressionInClosure__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1761:1: ( ( rule__XExpressionInClosure__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1762:1: ( rule__XExpressionInClosure__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXExpressionInClosureAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1763:1: ( rule__XExpressionInClosure__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1763:2: rule__XExpressionInClosure__Group__0
-            {
-            pushFollow(FOLLOW_rule__XExpressionInClosure__Group__0_in_ruleXExpressionInClosure3703);
-            rule__XExpressionInClosure__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXExpressionInClosureAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXExpressionInClosure"
-
-
-    // $ANTLR start "entryRuleXShortClosure"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1775:1: entryRuleXShortClosure : ruleXShortClosure EOF ;
-    public final void entryRuleXShortClosure() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1776:1: ( ruleXShortClosure EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1777:1: ruleXShortClosure EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXShortClosureRule()); 
-            }
-            pushFollow(FOLLOW_ruleXShortClosure_in_entryRuleXShortClosure3730);
-            ruleXShortClosure();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXShortClosureRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXShortClosure3737); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXShortClosure"
-
-
-    // $ANTLR start "ruleXShortClosure"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1784:1: ruleXShortClosure : ( ( rule__XShortClosure__Group__0 ) ) ;
-    public final void ruleXShortClosure() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1788:2: ( ( ( rule__XShortClosure__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1789:1: ( ( rule__XShortClosure__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1789:1: ( ( rule__XShortClosure__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1790:1: ( rule__XShortClosure__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXShortClosureAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1791:1: ( rule__XShortClosure__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1791:2: rule__XShortClosure__Group__0
-            {
-            pushFollow(FOLLOW_rule__XShortClosure__Group__0_in_ruleXShortClosure3763);
-            rule__XShortClosure__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXShortClosureAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXShortClosure"
-
-
-    // $ANTLR start "entryRuleXParenthesizedExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1803:1: entryRuleXParenthesizedExpression : ruleXParenthesizedExpression EOF ;
-    public final void entryRuleXParenthesizedExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1804:1: ( ruleXParenthesizedExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1805:1: ruleXParenthesizedExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXParenthesizedExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXParenthesizedExpression_in_entryRuleXParenthesizedExpression3790);
-            ruleXParenthesizedExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXParenthesizedExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXParenthesizedExpression3797); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXParenthesizedExpression"
-
-
-    // $ANTLR start "ruleXParenthesizedExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1812:1: ruleXParenthesizedExpression : ( ( rule__XParenthesizedExpression__Group__0 ) ) ;
-    public final void ruleXParenthesizedExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1816:2: ( ( ( rule__XParenthesizedExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1817:1: ( ( rule__XParenthesizedExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1817:1: ( ( rule__XParenthesizedExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1818:1: ( rule__XParenthesizedExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXParenthesizedExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1819:1: ( rule__XParenthesizedExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1819:2: rule__XParenthesizedExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XParenthesizedExpression__Group__0_in_ruleXParenthesizedExpression3823);
-            rule__XParenthesizedExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXParenthesizedExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXParenthesizedExpression"
-
-
-    // $ANTLR start "entryRuleXIfExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1831:1: entryRuleXIfExpression : ruleXIfExpression EOF ;
-    public final void entryRuleXIfExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1832:1: ( ruleXIfExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1833:1: ruleXIfExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXIfExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXIfExpression_in_entryRuleXIfExpression3850);
-            ruleXIfExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXIfExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXIfExpression3857); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXIfExpression"
-
-
-    // $ANTLR start "ruleXIfExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1840:1: ruleXIfExpression : ( ( rule__XIfExpression__Group__0 ) ) ;
-    public final void ruleXIfExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1844:2: ( ( ( rule__XIfExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1845:1: ( ( rule__XIfExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1845:1: ( ( rule__XIfExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1846:1: ( rule__XIfExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXIfExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1847:1: ( rule__XIfExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1847:2: rule__XIfExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XIfExpression__Group__0_in_ruleXIfExpression3883);
-            rule__XIfExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXIfExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXIfExpression"
-
-
-    // $ANTLR start "entryRuleXSwitchExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1859:1: entryRuleXSwitchExpression : ruleXSwitchExpression EOF ;
-    public final void entryRuleXSwitchExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1860:1: ( ruleXSwitchExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1861:1: ruleXSwitchExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXSwitchExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXSwitchExpression_in_entryRuleXSwitchExpression3910);
-            ruleXSwitchExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXSwitchExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXSwitchExpression3917); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXSwitchExpression"
-
-
-    // $ANTLR start "ruleXSwitchExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1868:1: ruleXSwitchExpression : ( ( rule__XSwitchExpression__Group__0 ) ) ;
-    public final void ruleXSwitchExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1872:2: ( ( ( rule__XSwitchExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1873:1: ( ( rule__XSwitchExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1873:1: ( ( rule__XSwitchExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1874:1: ( rule__XSwitchExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXSwitchExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1875:1: ( rule__XSwitchExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1875:2: rule__XSwitchExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XSwitchExpression__Group__0_in_ruleXSwitchExpression3943);
-            rule__XSwitchExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXSwitchExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXSwitchExpression"
-
-
-    // $ANTLR start "entryRuleXCasePart"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1887:1: entryRuleXCasePart : ruleXCasePart EOF ;
-    public final void entryRuleXCasePart() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1888:1: ( ruleXCasePart EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1889:1: ruleXCasePart EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXCasePartRule()); 
-            }
-            pushFollow(FOLLOW_ruleXCasePart_in_entryRuleXCasePart3970);
-            ruleXCasePart();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXCasePartRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXCasePart3977); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXCasePart"
-
-
-    // $ANTLR start "ruleXCasePart"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1896:1: ruleXCasePart : ( ( rule__XCasePart__Group__0 ) ) ;
-    public final void ruleXCasePart() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1900:2: ( ( ( rule__XCasePart__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1901:1: ( ( rule__XCasePart__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1901:1: ( ( rule__XCasePart__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1902:1: ( rule__XCasePart__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXCasePartAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1903:1: ( rule__XCasePart__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1903:2: rule__XCasePart__Group__0
-            {
-            pushFollow(FOLLOW_rule__XCasePart__Group__0_in_ruleXCasePart4003);
-            rule__XCasePart__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXCasePartAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXCasePart"
-
-
-    // $ANTLR start "entryRuleXForLoopExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1915:1: entryRuleXForLoopExpression : ruleXForLoopExpression EOF ;
-    public final void entryRuleXForLoopExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1916:1: ( ruleXForLoopExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1917:1: ruleXForLoopExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXForLoopExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXForLoopExpression_in_entryRuleXForLoopExpression4030);
-            ruleXForLoopExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXForLoopExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXForLoopExpression4037); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXForLoopExpression"
-
-
-    // $ANTLR start "ruleXForLoopExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1924:1: ruleXForLoopExpression : ( ( rule__XForLoopExpression__Group__0 ) ) ;
-    public final void ruleXForLoopExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1928:2: ( ( ( rule__XForLoopExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1929:1: ( ( rule__XForLoopExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1929:1: ( ( rule__XForLoopExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1930:1: ( rule__XForLoopExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXForLoopExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1931:1: ( rule__XForLoopExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1931:2: rule__XForLoopExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XForLoopExpression__Group__0_in_ruleXForLoopExpression4063);
-            rule__XForLoopExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXForLoopExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXForLoopExpression"
-
-
-    // $ANTLR start "entryRuleXBasicForLoopExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1943:1: entryRuleXBasicForLoopExpression : ruleXBasicForLoopExpression EOF ;
-    public final void entryRuleXBasicForLoopExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1944:1: ( ruleXBasicForLoopExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1945:1: ruleXBasicForLoopExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXBasicForLoopExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXBasicForLoopExpression_in_entryRuleXBasicForLoopExpression4090);
-            ruleXBasicForLoopExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXBasicForLoopExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXBasicForLoopExpression4097); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXBasicForLoopExpression"
-
-
-    // $ANTLR start "ruleXBasicForLoopExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1952:1: ruleXBasicForLoopExpression : ( ( rule__XBasicForLoopExpression__Group__0 ) ) ;
-    public final void ruleXBasicForLoopExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1956:2: ( ( ( rule__XBasicForLoopExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1957:1: ( ( rule__XBasicForLoopExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1957:1: ( ( rule__XBasicForLoopExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1958:1: ( rule__XBasicForLoopExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXBasicForLoopExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1959:1: ( rule__XBasicForLoopExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1959:2: rule__XBasicForLoopExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XBasicForLoopExpression__Group__0_in_ruleXBasicForLoopExpression4123);
-            rule__XBasicForLoopExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXBasicForLoopExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXBasicForLoopExpression"
-
-
-    // $ANTLR start "entryRuleXWhileExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1971:1: entryRuleXWhileExpression : ruleXWhileExpression EOF ;
-    public final void entryRuleXWhileExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1972:1: ( ruleXWhileExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1973:1: ruleXWhileExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXWhileExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXWhileExpression_in_entryRuleXWhileExpression4150);
-            ruleXWhileExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXWhileExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXWhileExpression4157); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXWhileExpression"
-
-
-    // $ANTLR start "ruleXWhileExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1980:1: ruleXWhileExpression : ( ( rule__XWhileExpression__Group__0 ) ) ;
-    public final void ruleXWhileExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1984:2: ( ( ( rule__XWhileExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1985:1: ( ( rule__XWhileExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1985:1: ( ( rule__XWhileExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1986:1: ( rule__XWhileExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXWhileExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1987:1: ( rule__XWhileExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1987:2: rule__XWhileExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XWhileExpression__Group__0_in_ruleXWhileExpression4183);
-            rule__XWhileExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXWhileExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXWhileExpression"
-
-
-    // $ANTLR start "entryRuleXDoWhileExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:1999:1: entryRuleXDoWhileExpression : ruleXDoWhileExpression EOF ;
-    public final void entryRuleXDoWhileExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2000:1: ( ruleXDoWhileExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2001:1: ruleXDoWhileExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXDoWhileExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXDoWhileExpression_in_entryRuleXDoWhileExpression4210);
-            ruleXDoWhileExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXDoWhileExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXDoWhileExpression4217); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXDoWhileExpression"
-
-
-    // $ANTLR start "ruleXDoWhileExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2008:1: ruleXDoWhileExpression : ( ( rule__XDoWhileExpression__Group__0 ) ) ;
-    public final void ruleXDoWhileExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2012:2: ( ( ( rule__XDoWhileExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2013:1: ( ( rule__XDoWhileExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2013:1: ( ( rule__XDoWhileExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2014:1: ( rule__XDoWhileExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXDoWhileExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2015:1: ( rule__XDoWhileExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2015:2: rule__XDoWhileExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XDoWhileExpression__Group__0_in_ruleXDoWhileExpression4243);
-            rule__XDoWhileExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXDoWhileExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXDoWhileExpression"
-
-
-    // $ANTLR start "entryRuleXBlockExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2027:1: entryRuleXBlockExpression : ruleXBlockExpression EOF ;
-    public final void entryRuleXBlockExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2028:1: ( ruleXBlockExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2029:1: ruleXBlockExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXBlockExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXBlockExpression_in_entryRuleXBlockExpression4270);
-            ruleXBlockExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXBlockExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXBlockExpression4277); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXBlockExpression"
-
-
-    // $ANTLR start "ruleXBlockExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2036:1: ruleXBlockExpression : ( ( rule__XBlockExpression__Group__0 ) ) ;
-    public final void ruleXBlockExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2040:2: ( ( ( rule__XBlockExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2041:1: ( ( rule__XBlockExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2041:1: ( ( rule__XBlockExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2042:1: ( rule__XBlockExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXBlockExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2043:1: ( rule__XBlockExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2043:2: rule__XBlockExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XBlockExpression__Group__0_in_ruleXBlockExpression4303);
-            rule__XBlockExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXBlockExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXBlockExpression"
-
-
-    // $ANTLR start "entryRuleXExpressionOrVarDeclaration"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2055:1: entryRuleXExpressionOrVarDeclaration : ruleXExpressionOrVarDeclaration EOF ;
-    public final void entryRuleXExpressionOrVarDeclaration() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2056:1: ( ruleXExpressionOrVarDeclaration EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2057:1: ruleXExpressionOrVarDeclaration EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXExpressionOrVarDeclarationRule()); 
-            }
-            pushFollow(FOLLOW_ruleXExpressionOrVarDeclaration_in_entryRuleXExpressionOrVarDeclaration4330);
-            ruleXExpressionOrVarDeclaration();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXExpressionOrVarDeclarationRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXExpressionOrVarDeclaration4337); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXExpressionOrVarDeclaration"
-
-
-    // $ANTLR start "ruleXExpressionOrVarDeclaration"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2064:1: ruleXExpressionOrVarDeclaration : ( ( rule__XExpressionOrVarDeclaration__Alternatives ) ) ;
-    public final void ruleXExpressionOrVarDeclaration() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2068:2: ( ( ( rule__XExpressionOrVarDeclaration__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2069:1: ( ( rule__XExpressionOrVarDeclaration__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2069:1: ( ( rule__XExpressionOrVarDeclaration__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2070:1: ( rule__XExpressionOrVarDeclaration__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXExpressionOrVarDeclarationAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2071:1: ( rule__XExpressionOrVarDeclaration__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2071:2: rule__XExpressionOrVarDeclaration__Alternatives
-            {
-            pushFollow(FOLLOW_rule__XExpressionOrVarDeclaration__Alternatives_in_ruleXExpressionOrVarDeclaration4363);
-            rule__XExpressionOrVarDeclaration__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXExpressionOrVarDeclarationAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXExpressionOrVarDeclaration"
-
-
-    // $ANTLR start "entryRuleXVariableDeclaration"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2083:1: entryRuleXVariableDeclaration : ruleXVariableDeclaration EOF ;
-    public final void entryRuleXVariableDeclaration() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2084:1: ( ruleXVariableDeclaration EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2085:1: ruleXVariableDeclaration EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXVariableDeclarationRule()); 
-            }
-            pushFollow(FOLLOW_ruleXVariableDeclaration_in_entryRuleXVariableDeclaration4390);
-            ruleXVariableDeclaration();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXVariableDeclarationRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXVariableDeclaration4397); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXVariableDeclaration"
-
-
-    // $ANTLR start "ruleXVariableDeclaration"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2092:1: ruleXVariableDeclaration : ( ( rule__XVariableDeclaration__Group__0 ) ) ;
-    public final void ruleXVariableDeclaration() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2096:2: ( ( ( rule__XVariableDeclaration__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2097:1: ( ( rule__XVariableDeclaration__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2097:1: ( ( rule__XVariableDeclaration__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2098:1: ( rule__XVariableDeclaration__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXVariableDeclarationAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2099:1: ( rule__XVariableDeclaration__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2099:2: rule__XVariableDeclaration__Group__0
-            {
-            pushFollow(FOLLOW_rule__XVariableDeclaration__Group__0_in_ruleXVariableDeclaration4423);
-            rule__XVariableDeclaration__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXVariableDeclarationAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXVariableDeclaration"
-
-
-    // $ANTLR start "entryRuleJvmFormalParameter"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2111:1: entryRuleJvmFormalParameter : ruleJvmFormalParameter EOF ;
-    public final void entryRuleJvmFormalParameter() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2112:1: ( ruleJvmFormalParameter EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2113:1: ruleJvmFormalParameter EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmFormalParameterRule()); 
-            }
-            pushFollow(FOLLOW_ruleJvmFormalParameter_in_entryRuleJvmFormalParameter4450);
-            ruleJvmFormalParameter();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmFormalParameterRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleJvmFormalParameter4457); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleJvmFormalParameter"
-
-
-    // $ANTLR start "ruleJvmFormalParameter"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2120:1: ruleJvmFormalParameter : ( ( rule__JvmFormalParameter__Group__0 ) ) ;
-    public final void ruleJvmFormalParameter() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2124:2: ( ( ( rule__JvmFormalParameter__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2125:1: ( ( rule__JvmFormalParameter__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2125:1: ( ( rule__JvmFormalParameter__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2126:1: ( rule__JvmFormalParameter__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmFormalParameterAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2127:1: ( rule__JvmFormalParameter__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2127:2: rule__JvmFormalParameter__Group__0
-            {
-            pushFollow(FOLLOW_rule__JvmFormalParameter__Group__0_in_ruleJvmFormalParameter4483);
-            rule__JvmFormalParameter__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmFormalParameterAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleJvmFormalParameter"
-
-
-    // $ANTLR start "entryRuleFullJvmFormalParameter"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2139:1: entryRuleFullJvmFormalParameter : ruleFullJvmFormalParameter EOF ;
-    public final void entryRuleFullJvmFormalParameter() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2140:1: ( ruleFullJvmFormalParameter EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2141:1: ruleFullJvmFormalParameter EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getFullJvmFormalParameterRule()); 
-            }
-            pushFollow(FOLLOW_ruleFullJvmFormalParameter_in_entryRuleFullJvmFormalParameter4510);
-            ruleFullJvmFormalParameter();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getFullJvmFormalParameterRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleFullJvmFormalParameter4517); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleFullJvmFormalParameter"
-
-
-    // $ANTLR start "ruleFullJvmFormalParameter"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2148:1: ruleFullJvmFormalParameter : ( ( rule__FullJvmFormalParameter__Group__0 ) ) ;
-    public final void ruleFullJvmFormalParameter() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2152:2: ( ( ( rule__FullJvmFormalParameter__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2153:1: ( ( rule__FullJvmFormalParameter__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2153:1: ( ( rule__FullJvmFormalParameter__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2154:1: ( rule__FullJvmFormalParameter__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getFullJvmFormalParameterAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2155:1: ( rule__FullJvmFormalParameter__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2155:2: rule__FullJvmFormalParameter__Group__0
-            {
-            pushFollow(FOLLOW_rule__FullJvmFormalParameter__Group__0_in_ruleFullJvmFormalParameter4543);
-            rule__FullJvmFormalParameter__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getFullJvmFormalParameterAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleFullJvmFormalParameter"
-
-
-    // $ANTLR start "entryRuleXFeatureCall"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2167:1: entryRuleXFeatureCall : ruleXFeatureCall EOF ;
-    public final void entryRuleXFeatureCall() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2168:1: ( ruleXFeatureCall EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2169:1: ruleXFeatureCall EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXFeatureCallRule()); 
-            }
-            pushFollow(FOLLOW_ruleXFeatureCall_in_entryRuleXFeatureCall4570);
-            ruleXFeatureCall();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXFeatureCallRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXFeatureCall4577); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXFeatureCall"
-
-
-    // $ANTLR start "ruleXFeatureCall"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2176:1: ruleXFeatureCall : ( ( rule__XFeatureCall__Group__0 ) ) ;
-    public final void ruleXFeatureCall() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2180:2: ( ( ( rule__XFeatureCall__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2181:1: ( ( rule__XFeatureCall__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2181:1: ( ( rule__XFeatureCall__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2182:1: ( rule__XFeatureCall__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXFeatureCallAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2183:1: ( rule__XFeatureCall__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2183:2: rule__XFeatureCall__Group__0
-            {
-            pushFollow(FOLLOW_rule__XFeatureCall__Group__0_in_ruleXFeatureCall4603);
-            rule__XFeatureCall__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXFeatureCallAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXFeatureCall"
-
-
-    // $ANTLR start "entryRuleFeatureCallID"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2195:1: entryRuleFeatureCallID : ruleFeatureCallID EOF ;
-    public final void entryRuleFeatureCallID() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2196:1: ( ruleFeatureCallID EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2197:1: ruleFeatureCallID EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getFeatureCallIDRule()); 
-            }
-            pushFollow(FOLLOW_ruleFeatureCallID_in_entryRuleFeatureCallID4630);
-            ruleFeatureCallID();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getFeatureCallIDRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleFeatureCallID4637); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleFeatureCallID"
-
-
-    // $ANTLR start "ruleFeatureCallID"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2204:1: ruleFeatureCallID : ( ( rule__FeatureCallID__Alternatives ) ) ;
-    public final void ruleFeatureCallID() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2208:2: ( ( ( rule__FeatureCallID__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2209:1: ( ( rule__FeatureCallID__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2209:1: ( ( rule__FeatureCallID__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2210:1: ( rule__FeatureCallID__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getFeatureCallIDAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2211:1: ( rule__FeatureCallID__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2211:2: rule__FeatureCallID__Alternatives
-            {
-            pushFollow(FOLLOW_rule__FeatureCallID__Alternatives_in_ruleFeatureCallID4663);
-            rule__FeatureCallID__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getFeatureCallIDAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleFeatureCallID"
-
-
-    // $ANTLR start "entryRuleIdOrSuper"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2223:1: entryRuleIdOrSuper : ruleIdOrSuper EOF ;
-    public final void entryRuleIdOrSuper() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2224:1: ( ruleIdOrSuper EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2225:1: ruleIdOrSuper EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getIdOrSuperRule()); 
-            }
-            pushFollow(FOLLOW_ruleIdOrSuper_in_entryRuleIdOrSuper4690);
-            ruleIdOrSuper();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getIdOrSuperRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleIdOrSuper4697); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleIdOrSuper"
-
-
-    // $ANTLR start "ruleIdOrSuper"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2232:1: ruleIdOrSuper : ( ( rule__IdOrSuper__Alternatives ) ) ;
-    public final void ruleIdOrSuper() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2236:2: ( ( ( rule__IdOrSuper__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2237:1: ( ( rule__IdOrSuper__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2237:1: ( ( rule__IdOrSuper__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2238:1: ( rule__IdOrSuper__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getIdOrSuperAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2239:1: ( rule__IdOrSuper__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2239:2: rule__IdOrSuper__Alternatives
-            {
-            pushFollow(FOLLOW_rule__IdOrSuper__Alternatives_in_ruleIdOrSuper4723);
-            rule__IdOrSuper__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getIdOrSuperAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleIdOrSuper"
-
-
-    // $ANTLR start "entryRuleXConstructorCall"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2251:1: entryRuleXConstructorCall : ruleXConstructorCall EOF ;
-    public final void entryRuleXConstructorCall() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2252:1: ( ruleXConstructorCall EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2253:1: ruleXConstructorCall EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXConstructorCallRule()); 
-            }
-            pushFollow(FOLLOW_ruleXConstructorCall_in_entryRuleXConstructorCall4750);
-            ruleXConstructorCall();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXConstructorCallRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXConstructorCall4757); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXConstructorCall"
-
-
-    // $ANTLR start "ruleXConstructorCall"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2260:1: ruleXConstructorCall : ( ( rule__XConstructorCall__Group__0 ) ) ;
-    public final void ruleXConstructorCall() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2264:2: ( ( ( rule__XConstructorCall__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2265:1: ( ( rule__XConstructorCall__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2265:1: ( ( rule__XConstructorCall__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2266:1: ( rule__XConstructorCall__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXConstructorCallAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2267:1: ( rule__XConstructorCall__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2267:2: rule__XConstructorCall__Group__0
-            {
-            pushFollow(FOLLOW_rule__XConstructorCall__Group__0_in_ruleXConstructorCall4783);
-            rule__XConstructorCall__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXConstructorCallAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXConstructorCall"
-
-
-    // $ANTLR start "entryRuleXBooleanLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2279:1: entryRuleXBooleanLiteral : ruleXBooleanLiteral EOF ;
-    public final void entryRuleXBooleanLiteral() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2280:1: ( ruleXBooleanLiteral EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2281:1: ruleXBooleanLiteral EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXBooleanLiteralRule()); 
-            }
-            pushFollow(FOLLOW_ruleXBooleanLiteral_in_entryRuleXBooleanLiteral4810);
-            ruleXBooleanLiteral();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXBooleanLiteralRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXBooleanLiteral4817); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXBooleanLiteral"
-
-
-    // $ANTLR start "ruleXBooleanLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2288:1: ruleXBooleanLiteral : ( ( rule__XBooleanLiteral__Group__0 ) ) ;
-    public final void ruleXBooleanLiteral() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2292:2: ( ( ( rule__XBooleanLiteral__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2293:1: ( ( rule__XBooleanLiteral__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2293:1: ( ( rule__XBooleanLiteral__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2294:1: ( rule__XBooleanLiteral__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXBooleanLiteralAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2295:1: ( rule__XBooleanLiteral__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2295:2: rule__XBooleanLiteral__Group__0
-            {
-            pushFollow(FOLLOW_rule__XBooleanLiteral__Group__0_in_ruleXBooleanLiteral4843);
-            rule__XBooleanLiteral__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXBooleanLiteralAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXBooleanLiteral"
-
-
-    // $ANTLR start "entryRuleXNullLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2307:1: entryRuleXNullLiteral : ruleXNullLiteral EOF ;
-    public final void entryRuleXNullLiteral() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2308:1: ( ruleXNullLiteral EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2309:1: ruleXNullLiteral EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXNullLiteralRule()); 
-            }
-            pushFollow(FOLLOW_ruleXNullLiteral_in_entryRuleXNullLiteral4870);
-            ruleXNullLiteral();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXNullLiteralRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXNullLiteral4877); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXNullLiteral"
-
-
-    // $ANTLR start "ruleXNullLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2316:1: ruleXNullLiteral : ( ( rule__XNullLiteral__Group__0 ) ) ;
-    public final void ruleXNullLiteral() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2320:2: ( ( ( rule__XNullLiteral__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2321:1: ( ( rule__XNullLiteral__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2321:1: ( ( rule__XNullLiteral__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2322:1: ( rule__XNullLiteral__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXNullLiteralAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2323:1: ( rule__XNullLiteral__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2323:2: rule__XNullLiteral__Group__0
-            {
-            pushFollow(FOLLOW_rule__XNullLiteral__Group__0_in_ruleXNullLiteral4903);
-            rule__XNullLiteral__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXNullLiteralAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXNullLiteral"
-
-
-    // $ANTLR start "entryRuleXNumberLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2335:1: entryRuleXNumberLiteral : ruleXNumberLiteral EOF ;
-    public final void entryRuleXNumberLiteral() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2336:1: ( ruleXNumberLiteral EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2337:1: ruleXNumberLiteral EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXNumberLiteralRule()); 
-            }
-            pushFollow(FOLLOW_ruleXNumberLiteral_in_entryRuleXNumberLiteral4930);
-            ruleXNumberLiteral();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXNumberLiteralRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXNumberLiteral4937); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXNumberLiteral"
-
-
-    // $ANTLR start "ruleXNumberLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2344:1: ruleXNumberLiteral : ( ( rule__XNumberLiteral__Group__0 ) ) ;
-    public final void ruleXNumberLiteral() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2348:2: ( ( ( rule__XNumberLiteral__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2349:1: ( ( rule__XNumberLiteral__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2349:1: ( ( rule__XNumberLiteral__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2350:1: ( rule__XNumberLiteral__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXNumberLiteralAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2351:1: ( rule__XNumberLiteral__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2351:2: rule__XNumberLiteral__Group__0
-            {
-            pushFollow(FOLLOW_rule__XNumberLiteral__Group__0_in_ruleXNumberLiteral4963);
-            rule__XNumberLiteral__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXNumberLiteralAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXNumberLiteral"
-
-
-    // $ANTLR start "entryRuleXStringLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2363:1: entryRuleXStringLiteral : ruleXStringLiteral EOF ;
-    public final void entryRuleXStringLiteral() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2364:1: ( ruleXStringLiteral EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2365:1: ruleXStringLiteral EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXStringLiteralRule()); 
-            }
-            pushFollow(FOLLOW_ruleXStringLiteral_in_entryRuleXStringLiteral4990);
-            ruleXStringLiteral();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXStringLiteralRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXStringLiteral4997); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXStringLiteral"
-
-
-    // $ANTLR start "ruleXStringLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2372:1: ruleXStringLiteral : ( ( rule__XStringLiteral__Group__0 ) ) ;
-    public final void ruleXStringLiteral() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2376:2: ( ( ( rule__XStringLiteral__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2377:1: ( ( rule__XStringLiteral__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2377:1: ( ( rule__XStringLiteral__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2378:1: ( rule__XStringLiteral__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXStringLiteralAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2379:1: ( rule__XStringLiteral__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2379:2: rule__XStringLiteral__Group__0
-            {
-            pushFollow(FOLLOW_rule__XStringLiteral__Group__0_in_ruleXStringLiteral5023);
-            rule__XStringLiteral__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXStringLiteralAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXStringLiteral"
-
-
-    // $ANTLR start "entryRuleXTypeLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2391:1: entryRuleXTypeLiteral : ruleXTypeLiteral EOF ;
-    public final void entryRuleXTypeLiteral() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2392:1: ( ruleXTypeLiteral EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2393:1: ruleXTypeLiteral EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXTypeLiteralRule()); 
-            }
-            pushFollow(FOLLOW_ruleXTypeLiteral_in_entryRuleXTypeLiteral5050);
-            ruleXTypeLiteral();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXTypeLiteralRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXTypeLiteral5057); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXTypeLiteral"
-
-
-    // $ANTLR start "ruleXTypeLiteral"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2400:1: ruleXTypeLiteral : ( ( rule__XTypeLiteral__Group__0 ) ) ;
-    public final void ruleXTypeLiteral() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2404:2: ( ( ( rule__XTypeLiteral__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2405:1: ( ( rule__XTypeLiteral__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2405:1: ( ( rule__XTypeLiteral__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2406:1: ( rule__XTypeLiteral__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXTypeLiteralAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2407:1: ( rule__XTypeLiteral__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2407:2: rule__XTypeLiteral__Group__0
-            {
-            pushFollow(FOLLOW_rule__XTypeLiteral__Group__0_in_ruleXTypeLiteral5083);
-            rule__XTypeLiteral__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXTypeLiteralAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXTypeLiteral"
-
-
-    // $ANTLR start "entryRuleXThrowExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2419:1: entryRuleXThrowExpression : ruleXThrowExpression EOF ;
-    public final void entryRuleXThrowExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2420:1: ( ruleXThrowExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2421:1: ruleXThrowExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXThrowExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXThrowExpression_in_entryRuleXThrowExpression5110);
-            ruleXThrowExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXThrowExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXThrowExpression5117); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXThrowExpression"
-
-
-    // $ANTLR start "ruleXThrowExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2428:1: ruleXThrowExpression : ( ( rule__XThrowExpression__Group__0 ) ) ;
-    public final void ruleXThrowExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2432:2: ( ( ( rule__XThrowExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2433:1: ( ( rule__XThrowExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2433:1: ( ( rule__XThrowExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2434:1: ( rule__XThrowExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXThrowExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2435:1: ( rule__XThrowExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2435:2: rule__XThrowExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XThrowExpression__Group__0_in_ruleXThrowExpression5143);
-            rule__XThrowExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXThrowExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXThrowExpression"
-
-
-    // $ANTLR start "entryRuleXReturnExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2447:1: entryRuleXReturnExpression : ruleXReturnExpression EOF ;
-    public final void entryRuleXReturnExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2448:1: ( ruleXReturnExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2449:1: ruleXReturnExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXReturnExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXReturnExpression_in_entryRuleXReturnExpression5170);
-            ruleXReturnExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXReturnExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXReturnExpression5177); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXReturnExpression"
-
-
-    // $ANTLR start "ruleXReturnExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2456:1: ruleXReturnExpression : ( ( rule__XReturnExpression__Group__0 ) ) ;
-    public final void ruleXReturnExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2460:2: ( ( ( rule__XReturnExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2461:1: ( ( rule__XReturnExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2461:1: ( ( rule__XReturnExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2462:1: ( rule__XReturnExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXReturnExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2463:1: ( rule__XReturnExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2463:2: rule__XReturnExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XReturnExpression__Group__0_in_ruleXReturnExpression5203);
-            rule__XReturnExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXReturnExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXReturnExpression"
-
-
-    // $ANTLR start "entryRuleXTryCatchFinallyExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2475:1: entryRuleXTryCatchFinallyExpression : ruleXTryCatchFinallyExpression EOF ;
-    public final void entryRuleXTryCatchFinallyExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2476:1: ( ruleXTryCatchFinallyExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2477:1: ruleXTryCatchFinallyExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXTryCatchFinallyExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXTryCatchFinallyExpression_in_entryRuleXTryCatchFinallyExpression5230);
-            ruleXTryCatchFinallyExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXTryCatchFinallyExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXTryCatchFinallyExpression5237); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXTryCatchFinallyExpression"
-
-
-    // $ANTLR start "ruleXTryCatchFinallyExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2484:1: ruleXTryCatchFinallyExpression : ( ( rule__XTryCatchFinallyExpression__Group__0 ) ) ;
-    public final void ruleXTryCatchFinallyExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2488:2: ( ( ( rule__XTryCatchFinallyExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2489:1: ( ( rule__XTryCatchFinallyExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2489:1: ( ( rule__XTryCatchFinallyExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2490:1: ( rule__XTryCatchFinallyExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2491:1: ( rule__XTryCatchFinallyExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2491:2: rule__XTryCatchFinallyExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XTryCatchFinallyExpression__Group__0_in_ruleXTryCatchFinallyExpression5263);
-            rule__XTryCatchFinallyExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXTryCatchFinallyExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXTryCatchFinallyExpression"
-
-
-    // $ANTLR start "entryRuleXSynchronizedExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2503:1: entryRuleXSynchronizedExpression : ruleXSynchronizedExpression EOF ;
-    public final void entryRuleXSynchronizedExpression() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2504:1: ( ruleXSynchronizedExpression EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2505:1: ruleXSynchronizedExpression EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXSynchronizedExpressionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXSynchronizedExpression_in_entryRuleXSynchronizedExpression5290);
-            ruleXSynchronizedExpression();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXSynchronizedExpressionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXSynchronizedExpression5297); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXSynchronizedExpression"
-
-
-    // $ANTLR start "ruleXSynchronizedExpression"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2512:1: ruleXSynchronizedExpression : ( ( rule__XSynchronizedExpression__Group__0 ) ) ;
-    public final void ruleXSynchronizedExpression() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2516:2: ( ( ( rule__XSynchronizedExpression__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2517:1: ( ( rule__XSynchronizedExpression__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2517:1: ( ( rule__XSynchronizedExpression__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2518:1: ( rule__XSynchronizedExpression__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXSynchronizedExpressionAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2519:1: ( rule__XSynchronizedExpression__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2519:2: rule__XSynchronizedExpression__Group__0
-            {
-            pushFollow(FOLLOW_rule__XSynchronizedExpression__Group__0_in_ruleXSynchronizedExpression5323);
-            rule__XSynchronizedExpression__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXSynchronizedExpressionAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXSynchronizedExpression"
-
-
-    // $ANTLR start "entryRuleXCatchClause"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2531:1: entryRuleXCatchClause : ruleXCatchClause EOF ;
-    public final void entryRuleXCatchClause() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2532:1: ( ruleXCatchClause EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2533:1: ruleXCatchClause EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXCatchClauseRule()); 
-            }
-            pushFollow(FOLLOW_ruleXCatchClause_in_entryRuleXCatchClause5350);
-            ruleXCatchClause();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXCatchClauseRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXCatchClause5357); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXCatchClause"
-
-
-    // $ANTLR start "ruleXCatchClause"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2540:1: ruleXCatchClause : ( ( rule__XCatchClause__Group__0 ) ) ;
-    public final void ruleXCatchClause() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2544:2: ( ( ( rule__XCatchClause__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2545:1: ( ( rule__XCatchClause__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2545:1: ( ( rule__XCatchClause__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2546:1: ( rule__XCatchClause__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXCatchClauseAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2547:1: ( rule__XCatchClause__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2547:2: rule__XCatchClause__Group__0
-            {
-            pushFollow(FOLLOW_rule__XCatchClause__Group__0_in_ruleXCatchClause5383);
-            rule__XCatchClause__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXCatchClauseAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXCatchClause"
-
-
-    // $ANTLR start "entryRuleNumber"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2559:1: entryRuleNumber : ruleNumber EOF ;
-    public final void entryRuleNumber() throws RecognitionException {
-
-        	HiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();
-
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2563:1: ( ruleNumber EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2564:1: ruleNumber EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getNumberRule()); 
-            }
-            pushFollow(FOLLOW_ruleNumber_in_entryRuleNumber5415);
-            ruleNumber();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getNumberRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleNumber5422); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	myHiddenTokenState.restore();
-
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleNumber"
-
-
-    // $ANTLR start "ruleNumber"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2574:1: ruleNumber : ( ( rule__Number__Alternatives ) ) ;
-    public final void ruleNumber() throws RecognitionException {
-
-        		HiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2579:2: ( ( ( rule__Number__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2580:1: ( ( rule__Number__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2580:1: ( ( rule__Number__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2581:1: ( rule__Number__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getNumberAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2582:1: ( rule__Number__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2582:2: rule__Number__Alternatives
-            {
-            pushFollow(FOLLOW_rule__Number__Alternatives_in_ruleNumber5452);
-            rule__Number__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getNumberAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-            	myHiddenTokenState.restore();
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleNumber"
-
-
-    // $ANTLR start "entryRuleJvmTypeReference"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2597:1: entryRuleJvmTypeReference : ruleJvmTypeReference EOF ;
-    public final void entryRuleJvmTypeReference() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2598:1: ( ruleJvmTypeReference EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2599:1: ruleJvmTypeReference EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmTypeReferenceRule()); 
-            }
-            pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference5481);
-            ruleJvmTypeReference();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmTypeReferenceRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference5488); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleJvmTypeReference"
-
-
-    // $ANTLR start "ruleJvmTypeReference"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2606:1: ruleJvmTypeReference : ( ( rule__JvmTypeReference__Alternatives ) ) ;
-    public final void ruleJvmTypeReference() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2610:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2611:1: ( ( rule__JvmTypeReference__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2611:1: ( ( rule__JvmTypeReference__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2612:1: ( rule__JvmTypeReference__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2613:1: ( rule__JvmTypeReference__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2613:2: rule__JvmTypeReference__Alternatives
-            {
-            pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference5514);
-            rule__JvmTypeReference__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleJvmTypeReference"
-
-
-    // $ANTLR start "entryRuleArrayBrackets"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2625:1: entryRuleArrayBrackets : ruleArrayBrackets EOF ;
-    public final void entryRuleArrayBrackets() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2626:1: ( ruleArrayBrackets EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2627:1: ruleArrayBrackets EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getArrayBracketsRule()); 
-            }
-            pushFollow(FOLLOW_ruleArrayBrackets_in_entryRuleArrayBrackets5541);
-            ruleArrayBrackets();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getArrayBracketsRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleArrayBrackets5548); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleArrayBrackets"
-
-
-    // $ANTLR start "ruleArrayBrackets"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2634:1: ruleArrayBrackets : ( ( rule__ArrayBrackets__Group__0 ) ) ;
-    public final void ruleArrayBrackets() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2638:2: ( ( ( rule__ArrayBrackets__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2639:1: ( ( rule__ArrayBrackets__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2639:1: ( ( rule__ArrayBrackets__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2640:1: ( rule__ArrayBrackets__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getArrayBracketsAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2641:1: ( rule__ArrayBrackets__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2641:2: rule__ArrayBrackets__Group__0
-            {
-            pushFollow(FOLLOW_rule__ArrayBrackets__Group__0_in_ruleArrayBrackets5574);
-            rule__ArrayBrackets__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getArrayBracketsAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleArrayBrackets"
-
-
-    // $ANTLR start "entryRuleXFunctionTypeRef"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2653:1: entryRuleXFunctionTypeRef : ruleXFunctionTypeRef EOF ;
-    public final void entryRuleXFunctionTypeRef() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2654:1: ( ruleXFunctionTypeRef EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2655:1: ruleXFunctionTypeRef EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXFunctionTypeRefRule()); 
-            }
-            pushFollow(FOLLOW_ruleXFunctionTypeRef_in_entryRuleXFunctionTypeRef5601);
-            ruleXFunctionTypeRef();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXFunctionTypeRefRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXFunctionTypeRef5608); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXFunctionTypeRef"
-
-
-    // $ANTLR start "ruleXFunctionTypeRef"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2662:1: ruleXFunctionTypeRef : ( ( rule__XFunctionTypeRef__Group__0 ) ) ;
-    public final void ruleXFunctionTypeRef() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2666:2: ( ( ( rule__XFunctionTypeRef__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2667:1: ( ( rule__XFunctionTypeRef__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2667:1: ( ( rule__XFunctionTypeRef__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2668:1: ( rule__XFunctionTypeRef__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXFunctionTypeRefAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2669:1: ( rule__XFunctionTypeRef__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2669:2: rule__XFunctionTypeRef__Group__0
-            {
-            pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__0_in_ruleXFunctionTypeRef5634);
-            rule__XFunctionTypeRef__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXFunctionTypeRefAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXFunctionTypeRef"
-
-
-    // $ANTLR start "entryRuleJvmParameterizedTypeReference"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2681:1: entryRuleJvmParameterizedTypeReference : ruleJvmParameterizedTypeReference EOF ;
-    public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2682:1: ( ruleJvmParameterizedTypeReference EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2683:1: ruleJvmParameterizedTypeReference EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmParameterizedTypeReferenceRule()); 
-            }
-            pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference5661);
-            ruleJvmParameterizedTypeReference();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmParameterizedTypeReferenceRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference5668); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleJvmParameterizedTypeReference"
-
-
-    // $ANTLR start "ruleJvmParameterizedTypeReference"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2690:1: ruleJvmParameterizedTypeReference : ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) ;
-    public final void ruleJvmParameterizedTypeReference() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2694:2: ( ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2695:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2695:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2696:1: ( rule__JvmParameterizedTypeReference__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2697:1: ( rule__JvmParameterizedTypeReference__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2697:2: rule__JvmParameterizedTypeReference__Group__0
-            {
-            pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__0_in_ruleJvmParameterizedTypeReference5694);
-            rule__JvmParameterizedTypeReference__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleJvmParameterizedTypeReference"
-
-
-    // $ANTLR start "entryRuleJvmArgumentTypeReference"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2709:1: entryRuleJvmArgumentTypeReference : ruleJvmArgumentTypeReference EOF ;
-    public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2710:1: ( ruleJvmArgumentTypeReference EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2711:1: ruleJvmArgumentTypeReference EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmArgumentTypeReferenceRule()); 
-            }
-            pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference5721);
-            ruleJvmArgumentTypeReference();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmArgumentTypeReferenceRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference5728); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleJvmArgumentTypeReference"
-
-
-    // $ANTLR start "ruleJvmArgumentTypeReference"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2718:1: ruleJvmArgumentTypeReference : ( ( rule__JvmArgumentTypeReference__Alternatives ) ) ;
-    public final void ruleJvmArgumentTypeReference() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2722:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2723:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2723:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2724:1: ( rule__JvmArgumentTypeReference__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2725:1: ( rule__JvmArgumentTypeReference__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2725:2: rule__JvmArgumentTypeReference__Alternatives
-            {
-            pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference5754);
-            rule__JvmArgumentTypeReference__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleJvmArgumentTypeReference"
-
-
-    // $ANTLR start "entryRuleJvmWildcardTypeReference"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2737:1: entryRuleJvmWildcardTypeReference : ruleJvmWildcardTypeReference EOF ;
-    public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2738:1: ( ruleJvmWildcardTypeReference EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2739:1: ruleJvmWildcardTypeReference EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmWildcardTypeReferenceRule()); 
-            }
-            pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference5781);
-            ruleJvmWildcardTypeReference();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmWildcardTypeReferenceRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference5788); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleJvmWildcardTypeReference"
-
-
-    // $ANTLR start "ruleJvmWildcardTypeReference"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2746:1: ruleJvmWildcardTypeReference : ( ( rule__JvmWildcardTypeReference__Group__0 ) ) ;
-    public final void ruleJvmWildcardTypeReference() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2750:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2751:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2751:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2752:1: ( rule__JvmWildcardTypeReference__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2753:1: ( rule__JvmWildcardTypeReference__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2753:2: rule__JvmWildcardTypeReference__Group__0
-            {
-            pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0_in_ruleJvmWildcardTypeReference5814);
-            rule__JvmWildcardTypeReference__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleJvmWildcardTypeReference"
-
-
-    // $ANTLR start "entryRuleJvmUpperBound"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2765:1: entryRuleJvmUpperBound : ruleJvmUpperBound EOF ;
-    public final void entryRuleJvmUpperBound() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2766:1: ( ruleJvmUpperBound EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2767:1: ruleJvmUpperBound EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmUpperBoundRule()); 
-            }
-            pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound5841);
-            ruleJvmUpperBound();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmUpperBoundRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound5848); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleJvmUpperBound"
-
-
-    // $ANTLR start "ruleJvmUpperBound"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2774:1: ruleJvmUpperBound : ( ( rule__JvmUpperBound__Group__0 ) ) ;
-    public final void ruleJvmUpperBound() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2778:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2779:1: ( ( rule__JvmUpperBound__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2779:1: ( ( rule__JvmUpperBound__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2780:1: ( rule__JvmUpperBound__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmUpperBoundAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2781:1: ( rule__JvmUpperBound__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2781:2: rule__JvmUpperBound__Group__0
-            {
-            pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound5874);
-            rule__JvmUpperBound__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmUpperBoundAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleJvmUpperBound"
-
-
-    // $ANTLR start "entryRuleJvmUpperBoundAnded"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2793:1: entryRuleJvmUpperBoundAnded : ruleJvmUpperBoundAnded EOF ;
-    public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2794:1: ( ruleJvmUpperBoundAnded EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2795:1: ruleJvmUpperBoundAnded EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmUpperBoundAndedRule()); 
-            }
-            pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded5901);
-            ruleJvmUpperBoundAnded();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmUpperBoundAndedRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded5908); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleJvmUpperBoundAnded"
-
-
-    // $ANTLR start "ruleJvmUpperBoundAnded"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2802:1: ruleJvmUpperBoundAnded : ( ( rule__JvmUpperBoundAnded__Group__0 ) ) ;
-    public final void ruleJvmUpperBoundAnded() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2806:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2807:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2807:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2808:1: ( rule__JvmUpperBoundAnded__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2809:1: ( rule__JvmUpperBoundAnded__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2809:2: rule__JvmUpperBoundAnded__Group__0
-            {
-            pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded5934);
-            rule__JvmUpperBoundAnded__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleJvmUpperBoundAnded"
-
-
-    // $ANTLR start "entryRuleJvmLowerBound"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2821:1: entryRuleJvmLowerBound : ruleJvmLowerBound EOF ;
-    public final void entryRuleJvmLowerBound() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2822:1: ( ruleJvmLowerBound EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2823:1: ruleJvmLowerBound EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmLowerBoundRule()); 
-            }
-            pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound5961);
-            ruleJvmLowerBound();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmLowerBoundRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound5968); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleJvmLowerBound"
-
-
-    // $ANTLR start "ruleJvmLowerBound"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2830:1: ruleJvmLowerBound : ( ( rule__JvmLowerBound__Group__0 ) ) ;
-    public final void ruleJvmLowerBound() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2834:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2835:1: ( ( rule__JvmLowerBound__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2835:1: ( ( rule__JvmLowerBound__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2836:1: ( rule__JvmLowerBound__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmLowerBoundAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2837:1: ( rule__JvmLowerBound__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2837:2: rule__JvmLowerBound__Group__0
-            {
-            pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound5994);
-            rule__JvmLowerBound__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmLowerBoundAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleJvmLowerBound"
-
-
-    // $ANTLR start "entryRuleJvmLowerBoundAnded"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2849:1: entryRuleJvmLowerBoundAnded : ruleJvmLowerBoundAnded EOF ;
-    public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2850:1: ( ruleJvmLowerBoundAnded EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2851:1: ruleJvmLowerBoundAnded EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmLowerBoundAndedRule()); 
-            }
-            pushFollow(FOLLOW_ruleJvmLowerBoundAnded_in_entryRuleJvmLowerBoundAnded6021);
-            ruleJvmLowerBoundAnded();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmLowerBoundAndedRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBoundAnded6028); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleJvmLowerBoundAnded"
-
-
-    // $ANTLR start "ruleJvmLowerBoundAnded"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2858:1: ruleJvmLowerBoundAnded : ( ( rule__JvmLowerBoundAnded__Group__0 ) ) ;
-    public final void ruleJvmLowerBoundAnded() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2862:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2863:1: ( ( rule__JvmLowerBoundAnded__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2863:1: ( ( rule__JvmLowerBoundAnded__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2864:1: ( rule__JvmLowerBoundAnded__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2865:1: ( rule__JvmLowerBoundAnded__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2865:2: rule__JvmLowerBoundAnded__Group__0
-            {
-            pushFollow(FOLLOW_rule__JvmLowerBoundAnded__Group__0_in_ruleJvmLowerBoundAnded6054);
-            rule__JvmLowerBoundAnded__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleJvmLowerBoundAnded"
-
-
-    // $ANTLR start "entryRuleQualifiedNameWithWildcard"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2879:1: entryRuleQualifiedNameWithWildcard : ruleQualifiedNameWithWildcard EOF ;
-    public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2880:1: ( ruleQualifiedNameWithWildcard EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2881:1: ruleQualifiedNameWithWildcard EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getQualifiedNameWithWildcardRule()); 
-            }
-            pushFollow(FOLLOW_ruleQualifiedNameWithWildcard_in_entryRuleQualifiedNameWithWildcard6083);
-            ruleQualifiedNameWithWildcard();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getQualifiedNameWithWildcardRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildcard6090); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleQualifiedNameWithWildcard"
-
-
-    // $ANTLR start "ruleQualifiedNameWithWildcard"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2888:1: ruleQualifiedNameWithWildcard : ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) ;
-    public final void ruleQualifiedNameWithWildcard() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2892:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2893:1: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2893:1: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2894:1: ( rule__QualifiedNameWithWildcard__Group__0 )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2895:1: ( rule__QualifiedNameWithWildcard__Group__0 )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2895:2: rule__QualifiedNameWithWildcard__Group__0
-            {
-            pushFollow(FOLLOW_rule__QualifiedNameWithWildcard__Group__0_in_ruleQualifiedNameWithWildcard6116);
-            rule__QualifiedNameWithWildcard__Group__0();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleQualifiedNameWithWildcard"
-
-
-    // $ANTLR start "entryRuleXImportSection"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2907:1: entryRuleXImportSection : ruleXImportSection EOF ;
-    public final void entryRuleXImportSection() throws RecognitionException {
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2908:1: ( ruleXImportSection EOF )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2909:1: ruleXImportSection EOF
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXImportSectionRule()); 
-            }
-            pushFollow(FOLLOW_ruleXImportSection_in_entryRuleXImportSection6143);
-            ruleXImportSection();
-
-            state._fsp--;
-            if (state.failed) return ;
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXImportSectionRule()); 
-            }
-            match(input,EOF,FOLLOW_EOF_in_entryRuleXImportSection6150); if (state.failed) return ;
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-        }
-        return ;
-    }
-    // $ANTLR end "entryRuleXImportSection"
-
-
-    // $ANTLR start "ruleXImportSection"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2916:1: ruleXImportSection : ( ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* ) ) ;
-    public final void ruleXImportSection() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2920:2: ( ( ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2921:1: ( ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2921:1: ( ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2922:1: ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2922:1: ( ( rule__XImportSection__ImportDeclarationsAssignment ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2923:1: ( rule__XImportSection__ImportDeclarationsAssignment )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2924:1: ( rule__XImportSection__ImportDeclarationsAssignment )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2924:2: rule__XImportSection__ImportDeclarationsAssignment
-            {
-            pushFollow(FOLLOW_rule__XImportSection__ImportDeclarationsAssignment_in_ruleXImportSection6178);
-            rule__XImportSection__ImportDeclarationsAssignment();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); 
-            }
-
-            }
-
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2927:1: ( ( rule__XImportSection__ImportDeclarationsAssignment )* )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2928:1: ( rule__XImportSection__ImportDeclarationsAssignment )*
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2929:1: ( rule__XImportSection__ImportDeclarationsAssignment )*
-            loop2:
-            do {
-                int alt2=2;
-                int LA2_0 = input.LA(1);
-
-                if ( (LA2_0==47) ) {
-                    alt2=1;
-                }
-
-
-                switch (alt2) {
-            	case 1 :
-            	    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2929:2: rule__XImportSection__ImportDeclarationsAssignment
-            	    {
-            	    pushFollow(FOLLOW_rule__XImportSection__ImportDeclarationsAssignment_in_ruleXImportSection6190);
-            	    rule__XImportSection__ImportDeclarationsAssignment();
-
-            	    state._fsp--;
-            	    if (state.failed) return ;
-
-            	    }
-            	    break;
-
-            	default :
-            	    break loop2;
-                }
-            } while (true);
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); 
-            }
-
-            }
-
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleXImportSection"
-
-
-    // $ANTLR start "ruleServiceExecutionModeEnum"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2945:1: ruleServiceExecutionModeEnum : ( ( rule__ServiceExecutionModeEnum__Alternatives ) ) ;
-    public final void ruleServiceExecutionModeEnum() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2949:1: ( ( ( rule__ServiceExecutionModeEnum__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2950:1: ( ( rule__ServiceExecutionModeEnum__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2950:1: ( ( rule__ServiceExecutionModeEnum__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2951:1: ( rule__ServiceExecutionModeEnum__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getServiceExecutionModeEnumAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2952:1: ( rule__ServiceExecutionModeEnum__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2952:2: rule__ServiceExecutionModeEnum__Alternatives
-            {
-            pushFollow(FOLLOW_rule__ServiceExecutionModeEnum__Alternatives_in_ruleServiceExecutionModeEnum6232);
-            rule__ServiceExecutionModeEnum__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getServiceExecutionModeEnumAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleServiceExecutionModeEnum"
-
-
-    // $ANTLR start "ruleEndEventHandlingEnum"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2964:1: ruleEndEventHandlingEnum : ( ( rule__EndEventHandlingEnum__Alternatives ) ) ;
-    public final void ruleEndEventHandlingEnum() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2968:1: ( ( ( rule__EndEventHandlingEnum__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2969:1: ( ( rule__EndEventHandlingEnum__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2969:1: ( ( rule__EndEventHandlingEnum__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2970:1: ( rule__EndEventHandlingEnum__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getEndEventHandlingEnumAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2971:1: ( rule__EndEventHandlingEnum__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2971:2: rule__EndEventHandlingEnum__Alternatives
-            {
-            pushFollow(FOLLOW_rule__EndEventHandlingEnum__Alternatives_in_ruleEndEventHandlingEnum6268);
-            rule__EndEventHandlingEnum__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getEndEventHandlingEnumAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleEndEventHandlingEnum"
-
-
-    // $ANTLR start "ruleIconsEnum"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2983:1: ruleIconsEnum : ( ( rule__IconsEnum__Alternatives ) ) ;
-    public final void ruleIconsEnum() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2987:1: ( ( ( rule__IconsEnum__Alternatives ) ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2988:1: ( ( rule__IconsEnum__Alternatives ) )
-            {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2988:1: ( ( rule__IconsEnum__Alternatives ) )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2989:1: ( rule__IconsEnum__Alternatives )
-            {
-            if ( state.backtracking==0 ) {
-               before(grammarAccess.getIconsEnumAccess().getAlternatives()); 
-            }
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2990:1: ( rule__IconsEnum__Alternatives )
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:2990:2: rule__IconsEnum__Alternatives
-            {
-            pushFollow(FOLLOW_rule__IconsEnum__Alternatives_in_ruleIconsEnum6304);
-            rule__IconsEnum__Alternatives();
-
-            state._fsp--;
-            if (state.failed) return ;
-
-            }
-
-            if ( state.backtracking==0 ) {
-               after(grammarAccess.getIconsEnumAccess().getAlternatives()); 
-            }
-
-            }
-
-
-            }
-
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "ruleIconsEnum"
-
-
-    // $ANTLR start "rule__BlipItem__Alternatives"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3001:1: rule__BlipItem__Alternatives : ( ( ruleBlipStartEvent ) | ( ruleBlipEndEvent ) | ( ruleBlipUserTask ) | ( ruleBlipCallActivity ) | ( ruleBlipScriptTask ) | ( ruleBlipServiceTask ) | ( ruleBlipPersistTask ) | ( ruleBlipExclusiveSplitGateway ) | ( ruleBlipInclusiveSplitGateway ) );
-    public final void rule__BlipItem__Alternatives() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3005:1: ( ( ruleBlipStartEvent ) | ( ruleBlipEndEvent ) | ( ruleBlipUserTask ) | ( ruleBlipCallActivity ) | ( ruleBlipScriptTask ) | ( ruleBlipServiceTask ) | ( ruleBlipPersistTask ) | ( ruleBlipExclusiveSplitGateway ) | ( ruleBlipInclusiveSplitGateway ) )
-            int alt3=9;
-            switch ( input.LA(1) ) {
-            case 153:
-                {
-                alt3=1;
-                }
-                break;
-            case 155:
-                {
-                alt3=2;
-                }
-                break;
-            case 156:
-                {
-                alt3=3;
-                }
-                break;
-            case 160:
-                {
-                alt3=4;
-                }
-                break;
-            case 161:
-                {
-                alt3=5;
-                }
-                break;
-            case 164:
-                {
-                alt3=6;
-                }
-                break;
-            case 163:
-                {
-                alt3=7;
-                }
-                break;
-            case 172:
-                {
-                alt3=8;
-                }
-                break;
-            case 173:
-                {
-                alt3=9;
-                }
-                break;
-            default:
-                if (state.backtracking>0) {state.failed=true; return ;}
-                NoViableAltException nvae =
-                    new NoViableAltException("", 3, 0, input);
-
-                throw nvae;
-            }
-
-            switch (alt3) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3006:1: ( ruleBlipStartEvent )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3006:1: ( ruleBlipStartEvent )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3007:1: ruleBlipStartEvent
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipItemAccess().getBlipStartEventParserRuleCall_0()); 
-                    }
-                    pushFollow(FOLLOW_ruleBlipStartEvent_in_rule__BlipItem__Alternatives6339);
-                    ruleBlipStartEvent();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipItemAccess().getBlipStartEventParserRuleCall_0()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 2 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3012:6: ( ruleBlipEndEvent )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3012:6: ( ruleBlipEndEvent )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3013:1: ruleBlipEndEvent
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipItemAccess().getBlipEndEventParserRuleCall_1()); 
-                    }
-                    pushFollow(FOLLOW_ruleBlipEndEvent_in_rule__BlipItem__Alternatives6356);
-                    ruleBlipEndEvent();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipItemAccess().getBlipEndEventParserRuleCall_1()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 3 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3018:6: ( ruleBlipUserTask )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3018:6: ( ruleBlipUserTask )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3019:1: ruleBlipUserTask
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipItemAccess().getBlipUserTaskParserRuleCall_2()); 
-                    }
-                    pushFollow(FOLLOW_ruleBlipUserTask_in_rule__BlipItem__Alternatives6373);
-                    ruleBlipUserTask();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipItemAccess().getBlipUserTaskParserRuleCall_2()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 4 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3024:6: ( ruleBlipCallActivity )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3024:6: ( ruleBlipCallActivity )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3025:1: ruleBlipCallActivity
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipItemAccess().getBlipCallActivityParserRuleCall_3()); 
-                    }
-                    pushFollow(FOLLOW_ruleBlipCallActivity_in_rule__BlipItem__Alternatives6390);
-                    ruleBlipCallActivity();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipItemAccess().getBlipCallActivityParserRuleCall_3()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 5 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3030:6: ( ruleBlipScriptTask )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3030:6: ( ruleBlipScriptTask )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3031:1: ruleBlipScriptTask
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipItemAccess().getBlipScriptTaskParserRuleCall_4()); 
-                    }
-                    pushFollow(FOLLOW_ruleBlipScriptTask_in_rule__BlipItem__Alternatives6407);
-                    ruleBlipScriptTask();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipItemAccess().getBlipScriptTaskParserRuleCall_4()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 6 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3036:6: ( ruleBlipServiceTask )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3036:6: ( ruleBlipServiceTask )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3037:1: ruleBlipServiceTask
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipItemAccess().getBlipServiceTaskParserRuleCall_5()); 
-                    }
-                    pushFollow(FOLLOW_ruleBlipServiceTask_in_rule__BlipItem__Alternatives6424);
-                    ruleBlipServiceTask();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipItemAccess().getBlipServiceTaskParserRuleCall_5()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 7 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3042:6: ( ruleBlipPersistTask )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3042:6: ( ruleBlipPersistTask )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3043:1: ruleBlipPersistTask
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipItemAccess().getBlipPersistTaskParserRuleCall_6()); 
-                    }
-                    pushFollow(FOLLOW_ruleBlipPersistTask_in_rule__BlipItem__Alternatives6441);
-                    ruleBlipPersistTask();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipItemAccess().getBlipPersistTaskParserRuleCall_6()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 8 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3048:6: ( ruleBlipExclusiveSplitGateway )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3048:6: ( ruleBlipExclusiveSplitGateway )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3049:1: ruleBlipExclusiveSplitGateway
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipItemAccess().getBlipExclusiveSplitGatewayParserRuleCall_7()); 
-                    }
-                    pushFollow(FOLLOW_ruleBlipExclusiveSplitGateway_in_rule__BlipItem__Alternatives6458);
-                    ruleBlipExclusiveSplitGateway();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipItemAccess().getBlipExclusiveSplitGatewayParserRuleCall_7()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 9 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3054:6: ( ruleBlipInclusiveSplitGateway )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3054:6: ( ruleBlipInclusiveSplitGateway )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3055:1: ruleBlipInclusiveSplitGateway
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipItemAccess().getBlipInclusiveSplitGatewayParserRuleCall_8()); 
-                    }
-                    pushFollow(FOLLOW_ruleBlipInclusiveSplitGateway_in_rule__BlipItem__Alternatives6475);
-                    ruleBlipInclusiveSplitGateway();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipItemAccess().getBlipInclusiveSplitGatewayParserRuleCall_8()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-
-            }
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "rule__BlipItem__Alternatives"
-
-
-    // $ANTLR start "rule__BlipServiceTask__Alternatives_7"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3065:1: rule__BlipServiceTask__Alternatives_7 : ( ( ( rule__BlipServiceTask__Group_7_0__0 ) ) | ( ( rule__BlipServiceTask__ExecutionModeAssignment_7_1 ) ) );
-    public final void rule__BlipServiceTask__Alternatives_7() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3069:1: ( ( ( rule__BlipServiceTask__Group_7_0__0 ) ) | ( ( rule__BlipServiceTask__ExecutionModeAssignment_7_1 ) ) )
-            int alt4=2;
-            int LA4_0 = input.LA(1);
-
-            if ( (LA4_0==167) ) {
-                alt4=1;
-            }
-            else if ( ((LA4_0>=51 && LA4_0<=52)) ) {
-                alt4=2;
-            }
-            else {
-                if (state.backtracking>0) {state.failed=true; return ;}
-                NoViableAltException nvae =
-                    new NoViableAltException("", 4, 0, input);
-
-                throw nvae;
-            }
-            switch (alt4) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3070:1: ( ( rule__BlipServiceTask__Group_7_0__0 ) )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3070:1: ( ( rule__BlipServiceTask__Group_7_0__0 ) )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3071:1: ( rule__BlipServiceTask__Group_7_0__0 )
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipServiceTaskAccess().getGroup_7_0()); 
-                    }
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3072:1: ( rule__BlipServiceTask__Group_7_0__0 )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3072:2: rule__BlipServiceTask__Group_7_0__0
-                    {
-                    pushFollow(FOLLOW_rule__BlipServiceTask__Group_7_0__0_in_rule__BlipServiceTask__Alternatives_76507);
-                    rule__BlipServiceTask__Group_7_0__0();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-
-                    }
-
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipServiceTaskAccess().getGroup_7_0()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 2 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3076:6: ( ( rule__BlipServiceTask__ExecutionModeAssignment_7_1 ) )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3076:6: ( ( rule__BlipServiceTask__ExecutionModeAssignment_7_1 ) )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3077:1: ( rule__BlipServiceTask__ExecutionModeAssignment_7_1 )
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipServiceTaskAccess().getExecutionModeAssignment_7_1()); 
-                    }
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3078:1: ( rule__BlipServiceTask__ExecutionModeAssignment_7_1 )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3078:2: rule__BlipServiceTask__ExecutionModeAssignment_7_1
-                    {
-                    pushFollow(FOLLOW_rule__BlipServiceTask__ExecutionModeAssignment_7_1_in_rule__BlipServiceTask__Alternatives_76525);
-                    rule__BlipServiceTask__ExecutionModeAssignment_7_1();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-
-                    }
-
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipServiceTaskAccess().getExecutionModeAssignment_7_1()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-
-            }
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "rule__BlipServiceTask__Alternatives_7"
-
-
-    // $ANTLR start "rule__BlipServiceTask__Alternatives_9"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3087:1: rule__BlipServiceTask__Alternatives_9 : ( ( ( rule__BlipServiceTask__Group_9_0__0 ) ) | ( ( rule__BlipServiceTask__Group_9_1__0 ) ) );
-    public final void rule__BlipServiceTask__Alternatives_9() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3091:1: ( ( ( rule__BlipServiceTask__Group_9_0__0 ) ) | ( ( rule__BlipServiceTask__Group_9_1__0 ) ) )
-            int alt5=2;
-            int LA5_0 = input.LA(1);
-
-            if ( (LA5_0==162) ) {
-                alt5=1;
-            }
-            else if ( (LA5_0==169) ) {
-                alt5=2;
-            }
-            else {
-                if (state.backtracking>0) {state.failed=true; return ;}
-                NoViableAltException nvae =
-                    new NoViableAltException("", 5, 0, input);
-
-                throw nvae;
-            }
-            switch (alt5) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3092:1: ( ( rule__BlipServiceTask__Group_9_0__0 ) )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3092:1: ( ( rule__BlipServiceTask__Group_9_0__0 ) )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3093:1: ( rule__BlipServiceTask__Group_9_0__0 )
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipServiceTaskAccess().getGroup_9_0()); 
-                    }
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3094:1: ( rule__BlipServiceTask__Group_9_0__0 )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3094:2: rule__BlipServiceTask__Group_9_0__0
-                    {
-                    pushFollow(FOLLOW_rule__BlipServiceTask__Group_9_0__0_in_rule__BlipServiceTask__Alternatives_96558);
-                    rule__BlipServiceTask__Group_9_0__0();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-
-                    }
-
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipServiceTaskAccess().getGroup_9_0()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 2 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3098:6: ( ( rule__BlipServiceTask__Group_9_1__0 ) )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3098:6: ( ( rule__BlipServiceTask__Group_9_1__0 ) )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3099:1: ( rule__BlipServiceTask__Group_9_1__0 )
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getBlipServiceTaskAccess().getGroup_9_1()); 
-                    }
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3100:1: ( rule__BlipServiceTask__Group_9_1__0 )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3100:2: rule__BlipServiceTask__Group_9_1__0
-                    {
-                    pushFollow(FOLLOW_rule__BlipServiceTask__Group_9_1__0_in_rule__BlipServiceTask__Alternatives_96576);
-                    rule__BlipServiceTask__Group_9_1__0();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-
-                    }
-
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getBlipServiceTaskAccess().getGroup_9_1()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-
-            }
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "rule__BlipServiceTask__Alternatives_9"
-
-
-    // $ANTLR start "rule__XAnnotation__Alternatives_3_1"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3109:1: rule__XAnnotation__Alternatives_3_1 : ( ( ( rule__XAnnotation__Group_3_1_0__0 ) ) | ( ( rule__XAnnotation__ValueAssignment_3_1_1 ) ) );
-    public final void rule__XAnnotation__Alternatives_3_1() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3113:1: ( ( ( rule__XAnnotation__Group_3_1_0__0 ) ) | ( ( rule__XAnnotation__ValueAssignment_3_1_1 ) ) )
-            int alt6=2;
-            alt6 = dfa6.predict(input);
-            switch (alt6) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3114:1: ( ( rule__XAnnotation__Group_3_1_0__0 ) )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3114:1: ( ( rule__XAnnotation__Group_3_1_0__0 ) )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3115:1: ( rule__XAnnotation__Group_3_1_0__0 )
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getXAnnotationAccess().getGroup_3_1_0()); 
-                    }
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3116:1: ( rule__XAnnotation__Group_3_1_0__0 )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3116:2: rule__XAnnotation__Group_3_1_0__0
-                    {
-                    pushFollow(FOLLOW_rule__XAnnotation__Group_3_1_0__0_in_rule__XAnnotation__Alternatives_3_16609);
-                    rule__XAnnotation__Group_3_1_0__0();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-
-                    }
-
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getXAnnotationAccess().getGroup_3_1_0()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 2 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3120:6: ( ( rule__XAnnotation__ValueAssignment_3_1_1 ) )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3120:6: ( ( rule__XAnnotation__ValueAssignment_3_1_1 ) )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3121:1: ( rule__XAnnotation__ValueAssignment_3_1_1 )
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getXAnnotationAccess().getValueAssignment_3_1_1()); 
-                    }
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3122:1: ( rule__XAnnotation__ValueAssignment_3_1_1 )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3122:2: rule__XAnnotation__ValueAssignment_3_1_1
-                    {
-                    pushFollow(FOLLOW_rule__XAnnotation__ValueAssignment_3_1_1_in_rule__XAnnotation__Alternatives_3_16627);
-                    rule__XAnnotation__ValueAssignment_3_1_1();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-
-                    }
-
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getXAnnotationAccess().getValueAssignment_3_1_1()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-
-            }
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "rule__XAnnotation__Alternatives_3_1"
-
-
-    // $ANTLR start "rule__XAnnotationElementValueOrCommaList__Alternatives"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3131:1: rule__XAnnotationElementValueOrCommaList__Alternatives : ( ( ( rule__XAnnotationElementValueOrCommaList__Group_0__0 ) ) | ( ( rule__XAnnotationElementValueOrCommaList__Group_1__0 ) ) );
-    public final void rule__XAnnotationElementValueOrCommaList__Alternatives() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3135:1: ( ( ( rule__XAnnotationElementValueOrCommaList__Group_0__0 ) ) | ( ( rule__XAnnotationElementValueOrCommaList__Group_1__0 ) ) )
-            int alt7=2;
-            alt7 = dfa7.predict(input);
-            switch (alt7) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3136:1: ( ( rule__XAnnotationElementValueOrCommaList__Group_0__0 ) )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3136:1: ( ( rule__XAnnotationElementValueOrCommaList__Group_0__0 ) )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3137:1: ( rule__XAnnotationElementValueOrCommaList__Group_0__0 )
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_0()); 
-                    }
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3138:1: ( rule__XAnnotationElementValueOrCommaList__Group_0__0 )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3138:2: rule__XAnnotationElementValueOrCommaList__Group_0__0
-                    {
-                    pushFollow(FOLLOW_rule__XAnnotationElementValueOrCommaList__Group_0__0_in_rule__XAnnotationElementValueOrCommaList__Alternatives6660);
-                    rule__XAnnotationElementValueOrCommaList__Group_0__0();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-
-                    }
-
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_0()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 2 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3142:6: ( ( rule__XAnnotationElementValueOrCommaList__Group_1__0 ) )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3142:6: ( ( rule__XAnnotationElementValueOrCommaList__Group_1__0 ) )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3143:1: ( rule__XAnnotationElementValueOrCommaList__Group_1__0 )
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_1()); 
-                    }
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3144:1: ( rule__XAnnotationElementValueOrCommaList__Group_1__0 )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3144:2: rule__XAnnotationElementValueOrCommaList__Group_1__0
-                    {
-                    pushFollow(FOLLOW_rule__XAnnotationElementValueOrCommaList__Group_1__0_in_rule__XAnnotationElementValueOrCommaList__Alternatives6678);
-                    rule__XAnnotationElementValueOrCommaList__Group_1__0();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-
-                    }
-
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getXAnnotationElementValueOrCommaListAccess().getGroup_1()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-
-            }
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "rule__XAnnotationElementValueOrCommaList__Alternatives"
-
-
-    // $ANTLR start "rule__XAnnotationElementValue__Alternatives"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3153:1: rule__XAnnotationElementValue__Alternatives : ( ( ( rule__XAnnotationElementValue__Group_0__0 ) ) | ( ruleXAnnotationOrExpression ) );
-    public final void rule__XAnnotationElementValue__Alternatives() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3157:1: ( ( ( rule__XAnnotationElementValue__Group_0__0 ) ) | ( ruleXAnnotationOrExpression ) )
-            int alt8=2;
-            alt8 = dfa8.predict(input);
-            switch (alt8) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3158:1: ( ( rule__XAnnotationElementValue__Group_0__0 ) )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3158:1: ( ( rule__XAnnotationElementValue__Group_0__0 ) )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3159:1: ( rule__XAnnotationElementValue__Group_0__0 )
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getXAnnotationElementValueAccess().getGroup_0()); 
-                    }
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3160:1: ( rule__XAnnotationElementValue__Group_0__0 )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3160:2: rule__XAnnotationElementValue__Group_0__0
-                    {
-                    pushFollow(FOLLOW_rule__XAnnotationElementValue__Group_0__0_in_rule__XAnnotationElementValue__Alternatives6711);
-                    rule__XAnnotationElementValue__Group_0__0();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-
-                    }
-
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getXAnnotationElementValueAccess().getGroup_0()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 2 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3164:6: ( ruleXAnnotationOrExpression )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3164:6: ( ruleXAnnotationOrExpression )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3165:1: ruleXAnnotationOrExpression
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getXAnnotationElementValueAccess().getXAnnotationOrExpressionParserRuleCall_1()); 
-                    }
-                    pushFollow(FOLLOW_ruleXAnnotationOrExpression_in_rule__XAnnotationElementValue__Alternatives6729);
-                    ruleXAnnotationOrExpression();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getXAnnotationElementValueAccess().getXAnnotationOrExpressionParserRuleCall_1()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-
-            }
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "rule__XAnnotationElementValue__Alternatives"
-
-
-    // $ANTLR start "rule__XAnnotationOrExpression__Alternatives"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3175:1: rule__XAnnotationOrExpression__Alternatives : ( ( ruleXAnnotation ) | ( ruleXExpression ) );
-    public final void rule__XAnnotationOrExpression__Alternatives() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3179:1: ( ( ruleXAnnotation ) | ( ruleXExpression ) )
-            int alt9=2;
-            int LA9_0 = input.LA(1);
-
-            if ( (LA9_0==175) ) {
-                alt9=1;
-            }
-            else if ( ((LA9_0>=RULE_ID && LA9_0<=RULE_DECIMAL)||LA9_0==27||(LA9_0>=34 && LA9_0<=35)||LA9_0==40||(LA9_0>=45 && LA9_0<=50)||LA9_0==142||LA9_0==154||LA9_0==176||(LA9_0>=180 && LA9_0<=181)||LA9_0==183||LA9_0==185||(LA9_0>=188 && LA9_0<=195)||LA9_0==197||LA9_0==209) ) {
-                alt9=2;
-            }
-            else {
-                if (state.backtracking>0) {state.failed=true; return ;}
-                NoViableAltException nvae =
-                    new NoViableAltException("", 9, 0, input);
-
-                throw nvae;
-            }
-            switch (alt9) {
-                case 1 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3180:1: ( ruleXAnnotation )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3180:1: ( ruleXAnnotation )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3181:1: ruleXAnnotation
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getXAnnotationOrExpressionAccess().getXAnnotationParserRuleCall_0()); 
-                    }
-                    pushFollow(FOLLOW_ruleXAnnotation_in_rule__XAnnotationOrExpression__Alternatives6761);
-                    ruleXAnnotation();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getXAnnotationOrExpressionAccess().getXAnnotationParserRuleCall_0()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-                case 2 :
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3186:6: ( ruleXExpression )
-                    {
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3186:6: ( ruleXExpression )
-                    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3187:1: ruleXExpression
-                    {
-                    if ( state.backtracking==0 ) {
-                       before(grammarAccess.getXAnnotationOrExpressionAccess().getXExpressionParserRuleCall_1()); 
-                    }
-                    pushFollow(FOLLOW_ruleXExpression_in_rule__XAnnotationOrExpression__Alternatives6778);
-                    ruleXExpression();
-
-                    state._fsp--;
-                    if (state.failed) return ;
-                    if ( state.backtracking==0 ) {
-                       after(grammarAccess.getXAnnotationOrExpressionAccess().getXExpressionParserRuleCall_1()); 
-                    }
-
-                    }
-
-
-                    }
-                    break;
-
-            }
-        }
-        catch (RecognitionException re) {
-            reportError(re);
-            recover(input,re);
-        }
-        finally {
-
-            	restoreStackSize(stackSize);
-
-        }
-        return ;
-    }
-    // $ANTLR end "rule__XAnnotationOrExpression__Alternatives"
-
-
-    // $ANTLR start "rule__XAssignment__Alternatives"
-    // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3197:1: rule__XAssignment__Alternatives : ( ( ( rule__XAssignment__Group_0__0 ) ) | ( ( rule__XAssignment__Group_1__0 ) ) );
-    public final void rule__XAssignment__Alternatives() throws RecognitionException {
-
-        		int stackSize = keepStackSize();
-            
-        try {
-            // ../org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/contentassist/antlr/internal/InternalBlipDSL.g:3201:1: ( ( ( rule__XAssignment__Group_0__0 ) ) | ( ( rule__XAssignment__Group_1__0 ) ) )
-            int alt10=2;
-            switch ( input.LA(1) ) {
-            case RULE_ID:
-                {
-                int LA10_1 = input.LA(2);
-
-                if ( (LA10_1==EOF||(LA10_1>=RULE_ID && LA10_1<=RULE_DECIMAL)||(LA10_1>=14 && LA10_1<=50)||(LA10_1>=142 && LA10_1<=143)||LA10_1==154||LA10_1==166||LA10_1==170||LA10_1==174||(LA10_1>=176 && LA10_1<=198)||(LA10_1>=205 && LA10_1<=206)||(LA10_1>=208 && LA10_1<=209)) ) {
-                    alt10=2;
-                }
-                else if ( (LA10_1==13) ) {
-                    alt10=1;
-                }
-                else {
-                    if (state.backtracking>0) {state.failed=true; return ;}
-                    NoViableAltException nvae =
-                        new NoViableAltException("", 10, 1, input);
-
-                    throw nvae;
-                }
-                }
-                break;
-            case 45:
-                {
-                int LA10_2 = input.LA(2);
-
-                if ( (LA10_2==EOF||(LA10_2>=RULE_ID && LA10_2<=RULE_DECIMAL)||(LA10_2>=14 && LA10_2<=50)||(LA10_2>=142 && LA10_2<=143)||LA10_2==154||LA10_2==166||LA10_2==170||LA10_2==174||(LA10_2>=176 && LA10_2<=198)||(LA10_2>=205 && LA10_2<=206)||(LA10_2>=208 && LA10_2<=209)) ) {
-                    alt10=2;
-                }
-                else if ( (LA10_2==13) ) {
-                    alt10=1;
-                }
-                else {
-                    if (state.backtracking>0) {state.failed=true; return ;}
-                    NoViableAltException nvae =
-                        new NoViableAltException("", 10, 2, input);
-
-                    throw nvae;
-                }
-                }
-                break;
-            case 46:
-                {
-                int LA10_3 = input.LA(2);
-
-                if ( (LA10_3==13) ) {
-                    alt10=1;
-                }
-                else if ( (LA10_3==EOF||(LA10_3>=RULE_ID && LA10_3<=RULE_DECIMAL)||(LA10_3>=14 && LA10_3<=50)||(LA10_3>=142 && LA10_3<=143)||LA10_3==154||LA10_3==166||LA10_3==170||LA10_3==174||(LA10_3>=176 && LA10_3<=198)||(LA10_3>=205 && LA10_3<=206)||(LA10_3>=208 && LA10_3<=209)) ) {
-                    alt10=2;
-                }
-                else {
-                    if (state.backtracking>0) {state.failed=true; return ;}
-                    NoViableAltException nvae =
-                        new NoViableAltException("", 10, 3, input);
-
-                    throw nvae;
-                }
-                }
-                break;
-            case 47:
-                {
-                int LA10_4 = input.LA(2);
-
diff --git a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/internal/BlipDSLActivator.java b/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/internal/BlipDSLActivator.java
deleted file mode 100644
index 2227412..0000000
--- a/org.eclipse.osbp.xtext.blip.ui/src-gen/org/eclipse/osbp/xtext/blip/ui/internal/BlipDSLActivator.java
+++ /dev/null
@@ -1,106 +0,0 @@
-/**
- *                                                                            
- *  Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany) 
- *                                                                            
- *  All rights reserved. This program and the accompanying materials           
- *  are made available under the terms of the Eclipse Public License v1.0       
- *  which accompanies this distribution, and is available at                  
- *  http://www.eclipse.org/legal/epl-v10.html                                 
- *                                                                            
- *  Contributors:                                                      
- * 	   Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
- * 
- */
- 
-package org.eclipse.osbp.xtext.blip.ui.internal;
-
-import java.util.Collections;
-import java.util.Map;
-
-import org.apache.log4j.Logger;
-import org.eclipse.ui.plugin.AbstractUIPlugin;
-import org.eclipse.xtext.ui.shared.SharedStateModule;
-import org.eclipse.xtext.util.Modules2;
-import org.osgi.framework.BundleContext;
-
-import com.google.common.collect.Maps;
-import com.google.inject.Guice;
-import com.google.inject.Injector;
-import com.google.inject.Module;
-
-/**
- * This class was generated. Customizations should only happen in a newly
- * introduced subclass. 
- */
-public class BlipDSLActivator extends AbstractUIPlugin {
-	
-	public static final String ORG_ECLIPSE_OSBP_XTEXT_BLIP_BLIPDSL = "org.eclipse.osbp.xtext.blip.BlipDSL";
-	
-	private static final Logger logger = Logger.getLogger(BlipDSLActivator.class);
-	
-	private static BlipDSLActivator INSTANCE;
-	
-	private Map<String, Injector> injectors = Collections.synchronizedMap(Maps.<String, Injector> newHashMapWithExpectedSize(1));
-	
-	@Override
-	public void start(BundleContext context) throws Exception {
-		super.start(context);
-		INSTANCE = this;
-	}
-	
-	@Override
-	public void stop(BundleContext context) throws Exception {
-		injectors.clear();
-		INSTANCE = null;
-		super.stop(context);
-	}
-	
-	public static BlipDSLActivator getInstance() {
-		return INSTANCE;
-	}
-	
-	public Injector getInjector(String language) {
-		synchronized (injectors) {
-			Injector injector = injectors.get(language);
-			if (injector == null) {
-				injectors.put(language, injector = createInjector(language));
-			}
-			return injector;
-		}
-	}
-	
-	protected Injector createInjector(String language) {
-		try {
-			Module runtimeModule = getRuntimeModule(language);
-			Module sharedStateModule = getSharedStateModule();
-			Module uiModule = getUiModule(language);
-			Module mergedModule = Modules2.mixin(runtimeModule, sharedStateModule, uiModule);
-			return Guice.createInjector(mergedModule);
-		} catch (Exception e) {
-			logger.error("Failed to create injector for " + language);
-			logger.error(e.getMessage(), e);
-			throw new RuntimeException("Failed to create injector for " + language, e);
-		}
-	}
-
-	protected Module getRuntimeModule(String grammar) {
-		if (ORG_ECLIPSE_OSBP_XTEXT_BLIP_BLIPDSL.equals(grammar)) {
-			return new org.eclipse.osbp.xtext.blip.BlipDSLRuntimeModule();
-		}
-		
-		throw new IllegalArgumentException(grammar);
-	}
-	
-	protected Module getUiModule(String grammar) {
-		if (ORG_ECLIPSE_OSBP_XTEXT_BLIP_BLIPDSL.equals(grammar)) {
-			return new org.eclipse.osbp.xtext.blip.ui.BlipDSLUiModule(this);
-		}
-		
-		throw new IllegalArgumentException(grammar);
-	}
-	
-	protected Module getSharedStateModule() {
-		return new SharedStateModule();
-	}
-	
-}
diff --git a/org.eclipse.osbp.xtext.blip/src-gen/README.txt b/org.eclipse.osbp.xtext.blip/src-gen/README.txt
deleted file mode 100644
index bbbe557..0000000
--- a/org.eclipse.osbp.xtext.blip/src-gen/README.txt
+++ /dev/null
@@ -1 +0,0 @@
-dummy file needed for git for necessary but empty directories!
\ No newline at end of file
diff --git a/org.eclipse.osbp.xtext.blip/src-gen/org/eclipse/osbp/xtext/blip/parser/antlr/internal/InternalBlipDSLLexer.java b/org.eclipse.osbp.xtext.blip/src-gen/org/eclipse/osbp/xtext/blip/parser/antlr/internal/InternalBlipDSLLexer.java
index ba4ed27..fb09463 100644
--- a/org.eclipse.osbp.xtext.blip/src-gen/org/eclipse/osbp/xtext/blip/parser/antlr/internal/InternalBlipDSLLexer.java
+++ b/org.eclipse.osbp.xtext.blip/src-gen/org/eclipse/osbp/xtext/blip/parser/antlr/internal/InternalBlipDSLLexer.java
@@ -1,17 +1,3 @@
-/**
- *                                                                            
- *  Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany) 
- *                                                                            
- *  All rights reserved. This program and the accompanying materials           
- *  are made available under the terms of the Eclipse Public License v1.0       
- *  which accompanies this distribution, and is available at                  
- *  http://www.eclipse.org/legal/epl-v10.html                                 
- *                                                                            
- *  Contributors:                                                      
- * 	   Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
- * 
- */
- 
 package org.eclipse.osbp.xtext.blip.parser.antlr.internal;
 
 // Hack: Use our own Lexer superclass by means of import. 
@@ -7635,4 +7621,4 @@
     }
  
 
-}
+}
\ No newline at end of file
diff --git a/org.eclipse.osbp.xtext.blip/src/org/eclipse/osbp/xtext/blip/common/BlipBPMStartInfo.java b/org.eclipse.osbp.xtext.blip/src/org/eclipse/osbp/xtext/blip/common/BlipBPMStartInfo.java
deleted file mode 100644
index 035fea1..0000000
--- a/org.eclipse.osbp.xtext.blip/src/org/eclipse/osbp/xtext/blip/common/BlipBPMStartInfo.java
+++ /dev/null
@@ -1,236 +0,0 @@
-/**
- *                                                                            
- *  Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany) 
- *                                                                            
- *  All rights reserved. This program and the accompanying materials           
- *  are made available under the terms of the Eclipse Public License v1.0       
- *  which accompanies this distribution, and is available at                  
- *  http://www.eclipse.org/legal/epl-v10.html                                 
- *                                                                            
- *  Contributors:                                                      
- * 	   Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
- * 
- */
-package org.eclipse.osbp.xtext.blip.common;
-
-import java.util.ArrayList;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Set;
-
-import org.eclipse.osbp.bpm.api.AbstractBPMServiceTask;
-import org.eclipse.osbp.bpm.api.AbstractBlipBPMUserTask;
-import org.eclipse.osbp.bpm.api.AbstractBlipBPMItem;
-import org.eclipse.osbp.bpm.api.BlipBaseFunctionGroup;
-import org.eclipse.osbp.bpm.api.IBlipBPMUserTask;
-import org.eclipse.osbp.bpm.api.IBlipBPMItem;
-import org.eclipse.osbp.bpm.api.IBlipBPMStartInfo;
-import org.eclipse.osbp.bpm.api.IBlipBPMWorkloadModifiableItem;
-import org.eclipse.osbp.dsl.common.datatypes.IDto;
-
-import com.vaadin.ui.Button;
-
-/**
- * Information for a blip corresponding to a BPM process.
- */
-public class BlipBPMStartInfo implements IBlipBPMStartInfo {
-	private final String processId;
-	private final String name;
-	private final String resourceName;
-	private final String image;
-	private final String iconName;
-	private Button button;
-	private Integer badge=null;
-	private boolean logging=false;
-	private Class<BlipBaseFunctionGroup> functionGroupClass;
-	/** class defining the workload, has to be an IDto */
-	private final Class<IDto> workloadDtoClass;
-	/** list of BPM items */
-	private final Set<AbstractBlipBPMItem> bpmItems = new HashSet<>();
-
-	/**
-	 * @param processId
-	 * @param name
-	 * @param resourceName
-	 * @param imageURL
-	 * @param iconName
-	 * @param logging
-	 * @param roles
-	 * @param functionGroupClass
-	 * @param workloadDtoClass class defining the workload, has to be an IDto
-	 * @param bpmItems list of BPM items
-	 */
-	public BlipBPMStartInfo(String processId, String name, String resourceName, String imageURL, String iconName, boolean logging, Class<?> functionGroupClass, Class<?> workloadDtoClass, AbstractBlipBPMItem... bpmItems) {
-		this.processId = processId;
-		this.name = name;
-		this.resourceName = resourceName;
-		this.image = imageURL;
-		this.iconName = iconName;
-		setLogging(logging);
-		if	((functionGroupClass != null) && BlipBaseFunctionGroup.class.isAssignableFrom(functionGroupClass)) {
-			this.functionGroupClass = (Class<BlipBaseFunctionGroup>)functionGroupClass;
-		}
-		else {
-			this.functionGroupClass = null;
-		}
-		//if	(workloadDtoClass.isInstance(IDto.class)) {
-		if	((workloadDtoClass != null) && IDto.class.isAssignableFrom(workloadDtoClass)) {
-			this.workloadDtoClass = (Class<IDto>)workloadDtoClass;
-		}
-		else {
-			this.workloadDtoClass = null;
-		}
-		if	(bpmItems != null) {
-			for	(AbstractBlipBPMItem bpmItem : bpmItems) {
-				this.bpmItems.add(bpmItem);
-			}
-		}
-	}
-	
-	@Override
-	public boolean isLogging() {
-		return logging;
-	}
-	public void setLogging(boolean logging) {
-		this.logging = logging;
-	}
-	
-	public String getProcessId() {
-		return processId;
-	}
-	
-	public String getName() {
-		return name;
-	}
-
-	@Override
-	public String getResourceName() {
-		return resourceName;
-	}
-	
-	/**
-	 * @return the image resource url
-	 */
-	public String getImage() {
-		return image;
-	}
-	
-	public Button getButton() {
-		return button;
-	}
-	public void setButton(Button button) {
-		this.button = button;
-	}
-	public Integer getBadge() {
-		return badge;
-	}
-	public void setBadge(Integer badge) {
-		this.badge = badge;
-	}
-	
-	/**
-	 * @return the icon name
-	 */
-	public String getIconName() {
-		return iconName;
-	}
-
-	@Override
-	public String getWorkloadDtoFqn() {
-		if	(workloadDtoClass != null) {
-			return workloadDtoClass.getCanonicalName();
-		}
-		return null;
-	}
-	
-	@Override
-	public IDto createWorkloadDto() {
-		try {
-			if	(workloadDtoClass != null) {
-				return workloadDtoClass.newInstance();
-			}
-		}
-		catch (InstantiationException | IllegalAccessException e) {
-		}
-		return null;
-	}
-
-	@Override
-	public IBlipBPMUserTask getBpmHumanTaskForBlipId(String blipId) {
-		IBlipBPMItem bpmItem = getBpmItemForBlipId(blipId);
-		if	(bpmItem instanceof AbstractBlipBPMUserTask) {
-			return (IBlipBPMUserTask) bpmItem;
-		}
-		return null;
-	}
-
-	@Override
-	public IBlipBPMUserTask getBpmHumanTaskForBpmId(String bpmId) {
-		IBlipBPMItem bpmItem = getBpmItemForBpmId(bpmId);
-		if	(bpmItem instanceof AbstractBlipBPMUserTask) {
-			return (IBlipBPMUserTask) bpmItem;
-		}
-		return null;
-	}
-
-	@Override
-	public IBlipBPMWorkloadModifiableItem getWorkloadMofifiableBpmItemForBlipId(String blipId) {
-		IBlipBPMItem bpmItem = getBpmItemForBlipId(blipId);
-		if	(bpmItem instanceof IBlipBPMWorkloadModifiableItem) {
-			return (IBlipBPMWorkloadModifiableItem) bpmItem;
-		}
-		return null;
-	}
-
-	@Override
-	public IBlipBPMWorkloadModifiableItem getWorkloadMofifiableBpmItemForBpmId(String bpmId) {
-		IBlipBPMItem bpmItem = getBpmItemForBpmId(bpmId);
-		if	(bpmItem instanceof IBlipBPMWorkloadModifiableItem) {
-			return (IBlipBPMWorkloadModifiableItem) bpmItem;
-		}
-		return null;
-	}
-	
-	@Override
-	public IBlipBPMItem getBpmItemForBlipId(String blipId) {
-		if	(blipId != null) {
-			for	(AbstractBlipBPMItem bpmItem : bpmItems) {
-				if	(blipId.equals(bpmItem.getBlipId())) {
-					return bpmItem;
-				}
-			}
-		}
-		return null;
-	}
-	
-	@Override
-	public IBlipBPMItem getBpmItemForBpmId(String bpmId) {
-		if	(bpmId != null) {
-			for	(AbstractBlipBPMItem bpmItem : bpmItems) {
-				if	(bpmId.equals(bpmItem.getBlipId())) {
-					return bpmItem;
-				}
-			}
-		}
-		return null;
-	}
-
-	@Override
-	public String getFunctionGroupFqn() {
-		if	(functionGroupClass != null) {
-			return functionGroupClass.getCanonicalName();
-		}
-		return null;
-	}
-
-	@Override
-	public List<AbstractBPMServiceTask> getServiceTasks() {
-		List<AbstractBPMServiceTask> serviceTasks = new ArrayList<AbstractBPMServiceTask>();
-		for	(AbstractBlipBPMItem bpmItem : bpmItems) {
-			if	(bpmItem instanceof AbstractBPMServiceTask) {
-				serviceTasks.add((AbstractBPMServiceTask) bpmItem);
-			}
-		}
-		return serviceTasks;
-	}
-}
diff --git a/org.eclipse.osbp.xtext.blip/src/org/eclipse/osbp/xtext/blip/jvmmodel/BlipDSLJvmModelInferrer.xtend b/org.eclipse.osbp.xtext.blip/src/org/eclipse/osbp/xtext/blip/jvmmodel/BlipDSLJvmModelInferrer.xtend
index 87a21cd..34d57ce 100644
--- a/org.eclipse.osbp.xtext.blip/src/org/eclipse/osbp/xtext/blip/jvmmodel/BlipDSLJvmModelInferrer.xtend
+++ b/org.eclipse.osbp.xtext.blip/src/org/eclipse/osbp/xtext/blip/jvmmodel/BlipDSLJvmModelInferrer.xtend
@@ -675,8 +675,8 @@
 						'''
 						MApplication application = context.get(MApplication.class);
 						IEclipseContext appCtx = application.getContext();
-						AbstractBlipBPMFunctionProvider provider = ContextInjectionFactory.make(«clsName».class, appCtx);
-						appCtx.set(AbstractBlipBPMFunctionProvider.class, provider);
+						IBlipBPMFunctionProvider provider = ContextInjectionFactory.make(«clsName».class, appCtx);
+						appCtx.set(IBlipBPMFunctionProvider.class, provider);
 						return provider;''')]
 			])
 	}
diff --git a/org.eclipse.osbp.xtext.blip/src/org/eclipse/osbp/xtext/blip/jvmmodel/BlipModelGenerator.xtend b/org.eclipse.osbp.xtext.blip/src/org/eclipse/osbp/xtext/blip/jvmmodel/BlipModelGenerator.xtend
index 6b8cf12..d159203 100644
--- a/org.eclipse.osbp.xtext.blip/src/org/eclipse/osbp/xtext/blip/jvmmodel/BlipModelGenerator.xtend
+++ b/org.eclipse.osbp.xtext.blip/src/org/eclipse/osbp/xtext/blip/jvmmodel/BlipModelGenerator.xtend
@@ -29,7 +29,6 @@
 import org.eclipse.emf.ecore.EObject
 import org.eclipse.emf.ecore.resource.Resource
 import org.eclipse.osbp.bpm.AbstractBPMServiceTask
-import org.eclipse.osbp.bpm.AbstractBlipBPMFunctionProvider
 import org.eclipse.osbp.bpm.AbstractBlipBPMItem
 import org.eclipse.osbp.bpm.AbstractBlipBPMUserTask
 import org.eclipse.osbp.bpm.BPMCallActivity
@@ -40,6 +39,7 @@
 import org.eclipse.osbp.bpm.BlipBPMOutgoing
 import org.eclipse.osbp.bpm.BlipBPMStartInfo
 import org.eclipse.osbp.bpm.api.IBPMEngine
+import org.eclipse.osbp.bpm.api.IBlipBPMFunctionProvider
 import org.eclipse.osbp.bpm.api.IBlipBPMWorkloadModifiableItem
 import org.eclipse.osbp.bpm.api.ServiceExecutionMode
 import org.eclipse.osbp.bpm.api.ServiceImplementation
@@ -91,7 +91,7 @@
 			, BlipBPMOutgoing
 			, IBlipBPMWorkloadModifiableItem
 			, IDto
-			, AbstractBlipBPMFunctionProvider
+			, IBlipBPMFunctionProvider
 			, MApplication
 			, ContextInjectionFactory
 			, IBlipProcessPermissions	
diff --git a/org.eclipse.osbp.xtext.blip/xtend-gen/org/eclipse/osbp/xtext/blip/jvmmodel/BlipDSLJvmModelInferrer.java b/org.eclipse.osbp.xtext.blip/xtend-gen/org/eclipse/osbp/xtext/blip/jvmmodel/BlipDSLJvmModelInferrer.java
index 7cf5213..1f471c0 100644
--- a/org.eclipse.osbp.xtext.blip/xtend-gen/org/eclipse/osbp/xtext/blip/jvmmodel/BlipDSLJvmModelInferrer.java
+++ b/org.eclipse.osbp.xtext.blip/xtend-gen/org/eclipse/osbp/xtext/blip/jvmmodel/BlipDSLJvmModelInferrer.java
@@ -1412,11 +1412,11 @@
         _builder.newLine();
         _builder.append("IEclipseContext appCtx = application.getContext();");
         _builder.newLine();
-        _builder.append("AbstractBlipBPMFunctionProvider provider = ContextInjectionFactory.make(");
+        _builder.append("IBlipBPMFunctionProvider provider = ContextInjectionFactory.make(");
         _builder.append(clsName);
         _builder.append(".class, appCtx);");
         _builder.newLineIfNotEmpty();
-        _builder.append("appCtx.set(AbstractBlipBPMFunctionProvider.class, provider);");
+        _builder.append("appCtx.set(IBlipBPMFunctionProvider.class, provider);");
         _builder.newLine();
         _builder.append("return provider;");
         it_1.append(_builder);
diff --git a/org.eclipse.osbp.xtext.blip/xtend-gen/org/eclipse/osbp/xtext/blip/jvmmodel/BlipModelGenerator.java b/org.eclipse.osbp.xtext.blip/xtend-gen/org/eclipse/osbp/xtext/blip/jvmmodel/BlipModelGenerator.java
index 7e457da..f295edb 100644
--- a/org.eclipse.osbp.xtext.blip/xtend-gen/org/eclipse/osbp/xtext/blip/jvmmodel/BlipModelGenerator.java
+++ b/org.eclipse.osbp.xtext.blip/xtend-gen/org/eclipse/osbp/xtext/blip/jvmmodel/BlipModelGenerator.java
@@ -26,7 +26,6 @@
 import org.eclipse.emf.ecore.EObject;
 import org.eclipse.emf.ecore.resource.Resource;
 import org.eclipse.osbp.bpm.AbstractBPMServiceTask;
-import org.eclipse.osbp.bpm.AbstractBlipBPMFunctionProvider;
 import org.eclipse.osbp.bpm.AbstractBlipBPMItem;
 import org.eclipse.osbp.bpm.AbstractBlipBPMUserTask;
 import org.eclipse.osbp.bpm.BPMCallActivity;
@@ -36,6 +35,7 @@
 import org.eclipse.osbp.bpm.BlipBPMOutgoing;
 import org.eclipse.osbp.bpm.BlipBPMStartInfo;
 import org.eclipse.osbp.bpm.api.IBPMEngine;
+import org.eclipse.osbp.bpm.api.IBlipBPMFunctionProvider;
 import org.eclipse.osbp.bpm.api.IBlipBPMWorkloadModifiableItem;
 import org.eclipse.osbp.bpm.api.ServiceExecutionMode;
 import org.eclipse.osbp.bpm.api.ServiceImplementation;
@@ -76,7 +76,7 @@
     TreeAppendable _xblockexpression = null;
     {
       this.setBuilder(context.eResource());
-      this._basicDslGeneratorUtils.addImportFor(this, importManager, this._typeReferenceBuilder, Arrays.class, Collections.class, HashMap.class, BlipBPMStartInfo.class, AbstractBlipBPMItem.class, AbstractBlipBPMUserTask.class, AbstractBPMServiceTask.class, ServiceExecutionMode.class, ServiceImplementation.class, BPMEndEvent.class, BPMScriptTask.class, BPMSplitGateway.class, BPMCallActivity.class, BPMSplitGateway.GatewayMode.class, BlipBPMOutgoing.class, IBlipBPMWorkloadModifiableItem.class, IDto.class, AbstractBlipBPMFunctionProvider.class, MApplication.class, ContextInjectionFactory.class, IBlipProcessPermissions.class, IBPMEngine.class, Collection.class, List.class, ArrayList.class, Logger.class, LoggerFactory.class, FrameworkUtil.class);
+      this._basicDslGeneratorUtils.addImportFor(this, importManager, this._typeReferenceBuilder, Arrays.class, Collections.class, HashMap.class, BlipBPMStartInfo.class, AbstractBlipBPMItem.class, AbstractBlipBPMUserTask.class, AbstractBPMServiceTask.class, ServiceExecutionMode.class, ServiceImplementation.class, BPMEndEvent.class, BPMScriptTask.class, BPMSplitGateway.class, BPMCallActivity.class, BPMSplitGateway.GatewayMode.class, BlipBPMOutgoing.class, IBlipBPMWorkloadModifiableItem.class, IDto.class, IBlipBPMFunctionProvider.class, MApplication.class, ContextInjectionFactory.class, IBlipProcessPermissions.class, IBPMEngine.class, Collection.class, List.class, ArrayList.class, Logger.class, LoggerFactory.class, FrameworkUtil.class);
       _xblockexpression = super.createAppendable(context, importManager, config);
     }
     return _xblockexpression;