Merge commit '7698613f7c36563430f70040457a7601e3bc9955' into
OT_BETA_JAVA8

Conflicts:
	org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodVerifier.java
	org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodVerifier15.java
	releng/build-scripts/build/otdt_prerequisites.sh
	releng/map/otdt.map.in
diff --git a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/MethodVerifyTest.java b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/MethodVerifyTest.java
index 591ca07..6cccd27 100644
--- a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/MethodVerifyTest.java
+++ b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/MethodVerifyTest.java
@@ -17,6 +17,7 @@
  *								bug 388739 - [1.8][compiler] consider default methods when detecting whether a class needs to be declared abstract
  *								bug 402237 - [1.8][compiler] investigate differences between compilers re MethodVerifyTest
  *								bug 395681 - [compiler] Improve simulation of javac6 behavior from bug 317719 after fixing bug 388795
+ *								bug 409473 - [compiler] JDT cannot compile against JRE 1.8
  *	   Andy Clement - Contribution for
  *								bug 406928 - computation of inherited methods seems damaged (affecting @Overrides)
  *******************************************************************************/
@@ -13933,4 +13934,13 @@
 		},
 		"");
 }
+// https://bugs.eclipse.org/409473 - [compiler] JDT cannot compile against JRE 1.8
+// Test failed when running on a JRE 1.8 b90
+public void testBug409473() {
+    this.runConformTest(
+        new String[] {
+            "Foo.java",
+            "public abstract class Foo<E> implements java.util.List<E> { } "
+        });
+}
 }
diff --git a/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties b/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties
index 756d274..3505f2c 100644
--- a/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties
+++ b/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2000, 2012 IBM Corporation and others.
+# Copyright (c) 2000, 2013 IBM Corporation and others.
 # 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
@@ -24,7 +24,7 @@
 compiler.name = Eclipse Compiler for Java(TM)
 #Format: compiler.version = (The placeholder 'bundle_qualifier' will be automatically filled. Do not remove or alter it)
 compiler.version = bundle_qualifier, 3.9.0
-compiler.copyright = Copyright IBM Corp 2000, 2012. All rights reserved.
+compiler.copyright = Copyright IBM Corp 2000, 2013. All rights reserved.
 
 ###{ObjectTeams:
 otdtc.name = Extension for Object Teams
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/TypeDeclaration.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/TypeDeclaration.java
index 3817dab..41a2655 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/TypeDeclaration.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/TypeDeclaration.java
@@ -2154,17 +2154,14 @@
 				for (int i = 0; i < length; i++)
 					this.methods[i].traverse(visitor, this.scope);
 			}
-		}
 //{ObjectTeams
-		if(this.callinCallouts != null)
-		{
-			int methodBindingsLength = this.callinCallouts.length;
-			for(int idx = 0; idx < methodBindingsLength; idx++)
-			{
-				this.callinCallouts[idx].traverse(visitor,  this.scope);
+			if(this.callinCallouts != null) {
+				int methodBindingsLength = this.callinCallouts.length;
+				for(int idx = 0; idx < methodBindingsLength; idx++)
+					this.callinCallouts[idx].traverse(visitor,  this.scope);
 			}
-		}
 // Joachim Haensel}
+		}
 		visitor.endVisit(this, unitScope);
 	} catch (AbortType e) {
 		// silent abort
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodVerifier.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodVerifier.java
index f45fdc2..43a7912 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodVerifier.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodVerifier.java
@@ -15,14 +15,15 @@
  *     Fraunhofer FIRST - extended API and implementation
  *     Technical University Berlin - extended API and implementation
  *     Stephan Herrmann - Contribution for
- *     								bug 382347 - [1.8][compiler] Compiler accepts incorrect default method inheritance
- *									bug 388954 - [1.8][compiler] detect default methods in class files
- *									bug 388281 - [compiler][null] inheritance of null annotations as an option
- *									bug 388739 - [1.8][compiler] consider default methods when detecting whether a class needs to be declared abstract
- *									bug 390883 - [1.8][compiler] Unable to override default method
- *									bug 401796 - [1.8][compiler] don't treat default methods as overriding an independent inherited abstract method
- *									bug 395681 - [compiler] Improve simulation of javac6 behavior from bug 317719 after fixing bug 388795
- *									bug 406928 - computation of inherited methods seems damaged (affecting @Overrides)
+ *     							bug 382347 - [1.8][compiler] Compiler accepts incorrect default method inheritance
+ *								bug 388954 - [1.8][compiler] detect default methods in class files
+ *								bug 388281 - [compiler][null] inheritance of null annotations as an option
+ *								bug 388739 - [1.8][compiler] consider default methods when detecting whether a class needs to be declared abstract
+ *								bug 390883 - [1.8][compiler] Unable to override default method
+ *								bug 401796 - [1.8][compiler] don't treat default methods as overriding an independent inherited abstract method
+ *								bug 395681 - [compiler] Improve simulation of javac6 behavior from bug 317719 after fixing bug 388795
+ *								bug 406928 - computation of inherited methods seems damaged (affecting @Overrides)
+ *								bug 409473 - [compiler] JDT cannot compile against JRE 1.8
  *******************************************************************************/
 package org.eclipse.jdt.internal.compiler.lookup;
 
@@ -1000,6 +1001,9 @@
 	findMethod : for (int i = 0; i < length; i++) {
 		MethodBinding method = methods[i];
 		if (!(method.isAbstract() || method.isDefaultMethod())) continue findMethod;
+// from master:
+//		// when unexpectedly seeing a non-abstract interface method regard it as abstract, too, for this check:
+//		if (!(method.isAbstract() || method.declaringClass.isInterface())) continue findMethod;
 		for (int j = 0; j < length; j++) {
 			if (i == j) continue;
 			if (!checkInheritedReturnTypes(method, methods[j])) {
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodVerifier15.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodVerifier15.java
index 707e89c..e0fbbac 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodVerifier15.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/MethodVerifier15.java
@@ -27,6 +27,7 @@
  *								bug 403867 - [1.8][compiler] Suspect error about duplicate default methods
  *								bug 391376 - [1.8] check interaction of default methods with bridge methods and generics
  *								bug 395681 - [compiler] Improve simulation of javac6 behavior from bug 317719 after fixing bug 388795
+ *								bug 409473 - [compiler] JDT cannot compile against JRE 1.8
  *******************************************************************************/
 package org.eclipse.jdt.internal.compiler.lookup;
 
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/problem/messages.properties b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/problem/messages.properties
index 0f6adc6..3f86b5c 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/problem/messages.properties
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/problem/messages.properties
@@ -961,7 +961,7 @@
 1204209 = Access restriction of constructor {0} is overridden by this base constructor call (OTJLD 2.4.2(b)).
 1204210 = Base constructor call not allowed in this position, must be first statement or argument to another constructor call (OTJLD 2.4.2(c)).
 1204211 = This constructor conflicts with the lifting constructor (using argument lowering).\nDue to lower visibility external allocations will use the lifting constructor instead (OTJLD 2.4.2(d)).
-1204301 = Dangerous instantitation. To avoid a WrongRoleException at runtime role {0} should be used instead (OTJLD 2.4.3).
+1204301 = Dangerous instantiation. To avoid a WrongRoleException at runtime role {0} should be used instead (OTJLD 2.4.3).
 
 1205001 = Team {0} may need to be declared abstract, because irrelevance for abstract role {1} could not be shown (OTJLD 2.5(b)).
 1205002 = Team {0} must be declared abstract, because abstract role {1} is relevant (OTJLD 2.5(b)).
@@ -1043,7 +1043,7 @@
 1401009 = Duplicate callin name "{0}" (OTJLD 4.1(e)).
 1401010 = Trying to bind final method {0} from class {1} via class {2}; must bind directly to {1} (OTJLD 4.1(f).
 1401011 = Base method does not declare {0} which is thrown by the bound role method (OTJLD 4.1(g)).
-1401012 = Callin binding to constructor ''{0}'' must use the callin modifier "after" (OTJLD 4.1(h)). 
+1401012 = Callin binding to constructor ''{0}'' must use the callin modifier "after" (OTJLD 4.1(i)). 
 
 1401099 = Bound base method {0} is deprecated.
 
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/objectteams/otdt/internal/core/compiler/ast/BaseAllocationExpression.java b/org.eclipse.jdt.core/compiler/org/eclipse/objectteams/otdt/internal/core/compiler/ast/BaseAllocationExpression.java
index b432684..aedfb7d 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/objectteams/otdt/internal/core/compiler/ast/BaseAllocationExpression.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/objectteams/otdt/internal/core/compiler/ast/BaseAllocationExpression.java
@@ -159,10 +159,15 @@
 		        	receiver = gen.qualifiedNameReference(tokens);
 	        	}
         	} else {
-        		if (this.enclosingInstance != null)
-        			receiver= this.enclosingInstance;
-        		else
-        			receiver = gen.thisReference(); // creating a role of the same team as base instance??
+        		if (this.enclosingInstance != null) {
+					receiver= this.enclosingInstance;
+				}
+				else {
+					if (baseclass.enclosingType() == enclType.enclosingType())
+						receiver = gen.thisReference(); // creating a role of the same team as base instance??
+					else
+						receiver = gen.qualifiedThisReference(gen.typeReference(baseclass.enclosingType()));
+				}
         	}
             char[] selector = CharOperation.concat(CREATOR_PREFIX_NAME, baseclass.sourceName());
 
diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTConverter.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTConverter.java
index d10a185..6936e19 100644
--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTConverter.java
+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTConverter.java
@@ -63,6 +63,7 @@
 import org.eclipse.jdt.internal.compiler.ast.TypeReference;
 import org.eclipse.jdt.internal.compiler.ast.UnionTypeReference;
 import org.eclipse.jdt.internal.compiler.ast.Wildcard;
+import org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration.WrapperKind;
 import org.eclipse.jdt.internal.compiler.classfmt.ClassFileConstants;
 import org.eclipse.jdt.internal.compiler.impl.CompilerOptions;
 import org.eclipse.jdt.internal.compiler.lookup.BlockScope;
@@ -225,6 +226,14 @@
 
 			int position = Integer.MAX_VALUE;
 			int nextDeclarationType = -1;
+//{ObjectTeams: skip generated / synthetic elements:
+			while (fieldsIndex < fieldsLength && shouldIgnore(fields[fieldsIndex]))
+				fieldsIndex++;
+			while (methodsIndex < methodsLength && shouldIgnore(methods[methodsIndex]))
+				methodsIndex++;
+			while (membersIndex < membersLength && shouldIgnore(members[membersIndex]))
+				membersIndex++;
+// SH}
 			if (fieldsIndex < fieldsLength) {
 				nextFieldDeclaration = fields[fieldsIndex];
 				if (nextFieldDeclaration.declarationSourceStart < position) {
@@ -259,12 +268,6 @@
 //gbr}
 			switch (nextDeclarationType) {
 				case 0 :
-//{ObjectTeams: skip generated:
-					if (nextFieldDeclaration.isGenerated) {
-						fieldsIndex++;
-						continue;
-					}
-// SH}
 					if (nextFieldDeclaration.getKind() == AbstractVariableDeclaration.ENUM_CONSTANT) {
 						typeDecl.bodyDeclarations().add(convert(nextFieldDeclaration));
 					} else {
@@ -274,17 +277,7 @@
 					break;
 				case 1 :
 					methodsIndex++;
-//{ObjectTeams: skip guard predicates which come as methods (are converted via field TypeDeclaration.predicate)
-					if (nextMethodDeclaration instanceof org.eclipse.objectteams.otdt.internal.core.compiler.ast.GuardPredicateDeclaration) {
-						break;
-					}
-// SH}
-					if (!nextMethodDeclaration.isDefaultConstructor() && !nextMethodDeclaration.isClinit()
-//{ObjectTeams: ignore generated and copied method declarations
-                            && !nextMethodDeclaration.isGenerated
-                            && !nextMethodDeclaration.isCopied)
-//jwl}
-					{
+					if (!nextMethodDeclaration.isDefaultConstructor() && !nextMethodDeclaration.isClinit()) {
 						typeDecl.bodyDeclarations().add(convert(isInterface, nextMethodDeclaration));
 					}
 //{ObjectTeams: convert reused abstract method declaration
@@ -296,13 +289,6 @@
 					break;
 				case 2 :
 					membersIndex++;
-//{ObjectTeams: skip generated members and role files when visited via enclosing team - conditionally:
-					if (   nextMemberDeclaration.isGenerated
-                        || Flags.isSynthetic(nextMemberDeclaration.modifiers))
-						continue;
-					if (!this.includeRoleFiles && nextMemberDeclaration.isRoleFile())
-						continue;
-// SH, jwl}
 					ASTNode node = convert(nextMemberDeclaration);
 					if (node == null) {
 						typeDecl.setFlags(typeDecl.getFlags() | ASTNode.MALFORMED);
@@ -413,6 +399,14 @@
 
 			int position = Integer.MAX_VALUE;
 			int nextDeclarationType = -1;
+//{ObjectTeams: skip generated / synthetic elements:
+			while (fieldsIndex < fieldsLength && shouldIgnore(fields[fieldsIndex]))
+				fieldsIndex++;
+			while (methodsIndex < methodsLength && shouldIgnore(methods[methodsIndex]))
+				methodsIndex++;
+			while (membersIndex < membersLength && shouldIgnore(members[membersIndex]))
+				membersIndex++;
+// SH}
 			if (fieldsIndex < fieldsLength) {
 				nextFieldDeclaration = fields[fieldsIndex];
 				if (nextFieldDeclaration.declarationSourceStart < position) {
@@ -445,12 +439,7 @@
 					break;
 				case 1 :
 					methodsIndex++;
-					if (!nextMethodDeclaration.isDefaultConstructor() && !nextMethodDeclaration.isClinit()
-//{ObjectTeams: ignore generated and copied method declarations
-                            && !nextMethodDeclaration.isGenerated
-                            && !nextMethodDeclaration.isCopied)
-					{
-//jwl})
+					if (!nextMethodDeclaration.isDefaultConstructor() && !nextMethodDeclaration.isClinit()) {
 						anonymousClassDeclaration.bodyDeclarations().add(convert(false, nextMethodDeclaration));
 					}
 //{ObjectTeams: convert reused abstract method declaration
@@ -466,9 +455,6 @@
 					if (node == null) {
 						anonymousClassDeclaration.setFlags(anonymousClassDeclaration.getFlags() | ASTNode.MALFORMED);
 					} else {
-//{ObjectTeams: ignore generated role interfaces
-					  if (!Flags.isSynthetic(nextMemberDeclaration.modifiers))
-//	jwl}
 						anonymousClassDeclaration.bodyDeclarations().add(node);
 					}
 			}
@@ -514,6 +500,28 @@
 		return node.thrownExceptions();
 	}
 
+//{ObjectTeams: detect synthetic elements to ignore:
+	private boolean shouldIgnore(org.eclipse.jdt.internal.compiler.ast.FieldDeclaration field) {
+		return field.isGenerated || field.copyInheritanceSrc != null || Flags.isSynthetic(field.modifiers);
+	}
+
+	private boolean shouldIgnore(org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration method) {
+		// always skip guard predicates which come as methods (are converted via field TypeDeclaration.predicate):
+		if (method instanceof org.eclipse.objectteams.otdt.internal.core.compiler.ast.GuardPredicateDeclaration)
+			return true;
+		// other than predicates do not skip abstract methods reused for a callout:
+		if (method.isReusingSourceMethod && method.isMappingWrapper == WrapperKind.CALLOUT)
+			return false;
+		return method.isGenerated || method.isCopied;
+	}
+
+	private boolean shouldIgnore(org.eclipse.jdt.internal.compiler.ast.TypeDeclaration type) {
+		return type.isGenerated || Flags.isSynthetic(type.modifiers)
+				// also skip generated members and role files when visited via enclosing team - conditionally:
+				|| (!this.includeRoleFiles && type.isRoleFile());
+	}
+// SH}
+
 	/**
 	 * @param compilationUnit
 	 * @param comments
diff --git a/org.eclipse.jdt.core/forceQualifierUpdate.txt b/org.eclipse.jdt.core/forceQualifierUpdate.txt
index a5d41af..13bf69d 100644
--- a/org.eclipse.jdt.core/forceQualifierUpdate.txt
+++ b/org.eclipse.jdt.core/forceQualifierUpdate.txt
@@ -1,4 +1,5 @@
-# To force a version qualifier update add the bug here
+# To force a version qualifier update, add the bug here
 Bug 403352 - Update all parent versions to match our build stream
 Bug 407853 - ECJ download misses legal file (about.html)
 Bug 407852 - ECJ source download is not correct
+Bug 408447 - compiler (log message) needs updating for copyright and bundle_qualifier
diff --git a/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java b/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
index b06128b..168323b 100644
--- a/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
+++ b/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
@@ -6578,7 +6578,11 @@
 		}
 		return false;
 	}
-	
+
+	public boolean visit(SingleNameReference singleNameReference, ClassScope scope) {
+		return visit(singleNameReference, (BlockScope)null);
+	}
+
 	public boolean visit(TypeAnchorReference anchorRef, ClassScope scope) {
 		this.scribe.printNextToken(TerminalTokens.TokenNameAT);
 		return true;
diff --git a/org.eclipse.jdt.core/pom.xml b/org.eclipse.jdt.core/pom.xml
index 0a873c9..5b035b5 100644
--- a/org.eclipse.jdt.core/pom.xml
+++ b/org.eclipse.jdt.core/pom.xml
@@ -23,6 +23,24 @@
 
   <build>
     <plugins>
+    <plugin>
+		<artifactId>maven-antrun-plugin</artifactId>
+		<executions>
+			<execution>
+				<phase>prepare-package</phase>
+				<configuration>
+					<tasks>
+						<replace token="bundle_qualifier," value="${buildQualifier}," dir="${project.build.directory}/classes">
+							<include name="org/eclipse/jdt/internal/compiler/batch/messages.properties" />
+						</replace>
+					</tasks>
+				</configuration>
+				<goals>
+					<goal>run</goal>
+				</goals>
+			</execution>
+		</executions>
+	  </plugin>
       <plugin>
         <groupId>org.eclipse.tycho.extras</groupId>
         <artifactId>tycho-custom-bundle-plugin</artifactId>
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/META-INF/MANIFEST.MF b/plugins/org.eclipse.objectteams.otdt.doc/META-INF/MANIFEST.MF
index e0e7928..5c10247 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.objectteams.otdt.doc/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.objectteams.otdt.doc;singleton:=true
-Bundle-Version: 2.1.0.qualifier
+Bundle-Version: 2.2.0.qualifier
 Bundle-Vendor: %providerName
 Bundle-Localization: plugin
 Require-Bundle:  org.eclipse.help;bundle-version="[3.5.100,4.0.0)"
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/features.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/features.html
index 141efe0..a157be1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/features.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/features.html
@@ -12,12 +12,12 @@
     </head>
     <body>
         <div id="head">
-            <h1>Features of the OTDT (version 2.1)</h1>
+            <h1>Features of the OTDT (version 2.2)</h1>
         </div>
 		<div style="margin:10px;margin-top:100px;">
 		 <div style="margin-left:40px;padding:2px;float:left;background-color:#D0D0D0;">
           <div style="padding:4px;background-color:#def4fe;">
-			The release 2.1 is based on Eclipse SDK 3.8 / 4.2.<br/>
+			The release 2.2 is based on Eclipse SDK 4.3.<br/>
 			The OTDT contains a modified version of the JDT core and several added plugins.
           </div>
          </div>
@@ -50,14 +50,14 @@
 			<dl>
 			<dt><strong>Language Definition</strong></dt>
 			<dd>The compiler implements the language as defined in the OT/J
-				<a href="otjld/def/index.html">language definition</a> version 1.3 (OTJLD).
+				<a href="otjld/def/index.html">language definition</a> version 1.3.1 (OTJLD).
 				The language definition has continuously been revised to precisely specify the language 
 				including various corner cases and combinations of features.
 			</dd>
 			<dt><strong>Language Implementation</strong></dt>
 			<dd>
 				The compiler supports all features of OT/J according to the 
-				<a href="otjld/def/index.html"><img alt="otjld" src="../images/ot_paragraph.png"/> OTJLD v1.3</a>
+				<a href="otjld/def/index.html"><img alt="otjld" src="../images/ot_paragraph.png"/> OTJLD v1.3.1</a>
 				&sect;&sect;1-7,9.
 				Support for the join point sub-language (<a href="http://www.objectteams.org/def/0.9/joinpoints.html"><img alt="otjld"  src="../images/ot_paragraph.png"/> OTJLD &#167; 8</a>) is not included.
 				<p></p>
@@ -162,6 +162,7 @@
 			<ul>
 			<li><b>Extract Callin</b></li>
 			<li><b>Inline Callin</b></li>
+			<li><b>Move to Role File</b></li>
 			</ul>
 			<p></p>
 
@@ -200,6 +201,11 @@
 			    <em>Hierarchy View</em>.
 			    </li>
 			</ul></dd>
+			<dt><strong>Java Structure Compare</strong></dt>
+			<dd><ul>
+				<li>When comparing versions of an OT/J file, the Java Structure Compare will correctly render
+					Object Teams elements, too.
+			</ul></dd>
 			</dl>
 			
 			
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/images/screenshots/NN22/ot-elements-in-structure-compare.png b/plugins/org.eclipse.objectteams.otdt.doc/guide/images/screenshots/NN22/ot-elements-in-structure-compare.png
new file mode 100644
index 0000000..cc584ee
--- /dev/null
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/images/screenshots/NN22/ot-elements-in-structure-compare.png
Binary files differ
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/news/new_in_2.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/news/new_in_2.2.html
new file mode 100644
index 0000000..ee26b38
--- /dev/null
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/news/new_in_2.2.html
@@ -0,0 +1,228 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html>
+<head>
+    <link rel=stylesheet type="text/css" href="../css/style.css">
+    <link rel=stylesheet type="text/css" href="../css/nn.css">
+	<title>OTDT 2.2 - New and Noteworthy</title>
+</head>
+<body>
+<h1>OTDT 2.2 - New and Noteworthy</h1>
+<div class="navigation">On this page:
+<!--a href="#metrics">&bull; Metrics Plug-in</a-->
+<!--a href="#configuration">&bull; Configuration</a-->
+<a href="#views">&bull; Views/Dialogs</a> 
+<!--a href="#assist">&bull; Content Assist</a-->  
+<a href="#refactor">&bull; Refactoring</a>  
+<!--a href="#formatting">&bull; Formatting</a-->
+<!--a href="#debug">&bull; Run/Debug</a-->
+<a href="#language">&bull; Language</a>
+<!--a href="#api">&bull; API</a-->
+<!--a href="#compiler">&bull; Compiler</a-->
+<!--a href="#otre">&bull; Runtime</a-->  
+<!--a href="#otequinox">&bull; OT/Equinox</a-->
+<!--a href="#releng">&bull; Release Engineering</a-->  
+</div>
+<table cellpadding="10" cellspacing="0" width="100%">
+  <colgroup>
+  <col width="20%">
+  <col width="80%">
+  </colgroup>
+  <tbody>
+<!--
+  <tr><td colspan="2" id="NAME"><h2>HEADING</h2></td></tr>
+  <tr>
+    <td><p align="right"><b>DESC</b><br>
+        <span class="since">since&nbsp;0.7.1</span><br>
+        <a class="buglink" title="TITLE" href="https://bugs.eclipse.org/308029">308029</a></p></td>
+    <td><p>
+    		
+    	</p>
+    	<p><img alt="TEXT" src="../images/screenshots/NN07/.png"></p>
+    	<p></p>
+    </td>
+  </tr>
+  <div class="listbox"><div class="listing"><pre><code class="keyword">public team class</code> <font color="blue">MyTeam</font> {
+}</pre></div></div>
+-->
+  <tr><td colspan="2" id="views"><h2>Views & Dialogs</h2></td></tr>
+  <tr>
+    <td><p align="right"><b>OT elements in structure compare</b><br>
+        <span class="since">since&nbsp;2.2</span><br>
+        <a class="buglink" title="[compare] show callin / callout elements in structure compare" href="https://bugs.eclipse.org/408460">408460</a></p></td>
+    <td>
+    	<p>Object Teams elements are now properly displayed in structure comparisons of any compare editors.</p>
+    	<img src="../images/screenshots/NN22/ot-elements-in-structure-compare.png"/>
+    </td>
+  </tr>
+<!--
+  <tr><td colspan="2" id="assist"><h2>Content assist</h2></td></tr>
+  <tr>
+    <td><p align="right"><b>HEADING</b><br>
+        <span class="since">since&nbsp;2.1M6</span><br>
+        <a class="buglink" title="TITLE" href="https://bugs.eclipse.org/301314">301314</a></p></td>
+    <td><p>PARA</p>
+    </td>
+  </tr>
+  <tr><td colspan="2" id="formatting"><h2>Formatting</h2></td></tr>
+  <tr>
+    <td><p align="right"><b>HEADING</b><br>
+        <span class="since">since&nbsp;2.1M6</span><br>
+        <a class="buglink" title="TITLE" href="https://bugs.eclipse.org/301314">301314</a></p></td>
+    <td><p>PARA</p>
+    </td>
+  </tr>
+-->
+  <tr><td colspan="2" id="refactor"><h2>Refactoring</h2></td></tr>
+  <tr>
+    <td><p align="right"><b>Pull-up callout bindings</b><br>
+        <span class="since">since&nbsp;2.2M1</span><br>
+        <a class="buglink" title="[refactoring] pull-up refactoring cannot handle callout bindings" href="https://bugs.eclipse.org/386587">386587</a><br>
+        <a class="buglink" title="[refactoring] pull-up should distinguish callouts that can be pull-up vs. abstract decl." href="https://bugs.eclipse.org/386814">386814</a></p></td>
+    <td><p>The pull-up refactoring has been made smarter so that it can correctly handle callout method bindings, too.</p>
+    	<p>A callout binding can either be pulled-up as such or a corresponding abstract method can be created in ths super-role.</p>
+    	<p>When choosing among the above strategies in the wizard, pull-up will only be accepted if a super-role has a compatible <code class="keyword">playedBy</code> binding.</p>
+    	<p>This is particularly interesting when pulling up a method that calls a callout:</p>
+    	<p><b><u>Pull-up:</u></b></p>
+    	<p><div style="position:relative;"><div class="listbox" style="width:45%;margin-right:2px;margin-bottom:30px;float:left;"><div class="listing"><pre><code class="keyword">public team class</code> T {
+  <code class="keyword">protected class</code> R0 <code class="keyword">playedBy</code> B {
+  }
+  <code class="keyword">protected class</code> R1 <code class="keyword">extends</code> R0 {
+    <code class="keyword">void</code> foo() -> <code class="keyword">void</code> bar();
+    <code class="keyword">void</code> test() {
+      foo();
+    }
+  }
+}</pre></div></div><div style="margin-top:80px;float:left;">=></div><div class="listbox" style="width:45%;margin-right:2px;float:left;"><div class="listing"><pre><code class="keyword">public team class</code> T {
+  <code class="keyword">protected class</code> R0 <code class="keyword">playedBy</code> B {
+    <code class="keyword">void</code> foo() -> <code class="keyword">void</code> bar();
+    <code class="keyword">void</code> test() {
+      foo();
+    }
+  }
+  <code class="keyword">protected class</code> R1 <code class="keyword">extends</code> R0 {
+  }
+}</pre></div></div></div></p>
+    	<p style="clear:both;"><b><u>Declare abstract:</u></b></p>
+    	<p><div style="position:relative;"><div class="listbox" style="width:45%;margin-right:2px;margin-bottom:30px;float:left;"><div class="listing"><pre><code class="keyword">public team class</code> T {
+  <code class="keyword">protected class</code> R0 {
+  }
+  <code class="keyword">protected class</code> R1 <code class="keyword">extends</code> R0
+                     <code class="keyword">playedBy</code> B {
+    <code class="keyword">void</code> foo() -> <code class="keyword">void</code> bar();
+    <code class="keyword">void</code> test() {
+      foo();
+    }
+  }
+}</pre></div></div><div style="margin-top:80px;float:left;">=></div><div class="listbox" style="width:45%;margin-right:2px;float:left;"><div class="listing"><pre><code class="keyword">public team class</code> T {
+  <code class="keyword">protected abstract class</code> R0 {
+    <code class="keyword">abstract void</code> foo();
+    <code class="keyword">void</code> test() {
+      foo();
+    }
+  }
+  <code class="keyword">protected class</code> R1 <code class="keyword">extends</code> R0
+                     <code class="keyword">playedBy</code> B {
+    <code class="keyword">void</code> foo() -> <code class="keyword">void</code> bar();
+  }
+}</pre></div></div></div></p>
+	<p style="clear:both;">
+		In the latter example you see that <code>test()</code> can be successfully pulled up, although no implementation for <code>foo()</code> is available in the super role <code>R0</code>.
+	</p>
+    </td>
+  </tr>
+  <tr>
+    <td><p align="right"><b>Move to role file</b><br>
+        <span class="since">since&nbsp;2.2M7</span><br>
+        <a class="buglink" title="[refactoring] change inline role to role file and vice versa" href="https://bugs.eclipse.org/382186">382186</a></p></td>
+    <td><p>A new refactoring has been added to move an inline role to a new role file (see <a class="otjldlink" href="http://www.objectteams.org/def/1.3/s1.html#s1.2.5">OTJLD &sect;1.2.5</a>).</p>
+    	<p>This refactoring is relevant when a team with inline roles grows to a size where maintainability suffers from a lack of decomposition.
+    		Since teams typically start with only a few, small roles, it is natural that this issue arises only during evolution.
+    		Re-organizing the file structure using this new refactoring is the natural answer to such issues.</p>
+    	<p>By definition this refactoring does not change the semantics of a program. Still the following items are considered by the refactoring:</p>
+    	<ul>
+    	<li>Create the folder representing the team package, if necessary.</li>
+    	<li>Insert a <code>@role</code> javadoc tag into the team class. This serves as an index of role files logically contained in a team,
+    		and thus facilitates navigation (F3) and helps the compiler during incremental compilation.</li>
+    	<li>Try to identify comments before and after the role class which likely belong to the role class and thus should be moved to the new file, too.</li>
+    	</ul>
+    	<p>The refactoring is invoked via the <b>Refactor</b> menu or context menu as <b>Move to Role File</b>. No further input is needed.</p>
+    </td>
+  </tr>
+  <tr><td colspan="2" id="language"><h2>Language</h2></td></tr>
+  <tr>
+    <td><p align="right"><b>Callin to Constructor</b><br>
+        <span class="since">since&nbsp;2.2</span><br>
+        <a class="buglink" title="[compiler][otre] OT/J: support for callin-interception of constructor-calls" href="https://bugs.eclipse.org/316616">316616</a></p></td>
+    <td>
+    	<p>It is now possible to define a callin-after binding to a constructor of a role's base class:</p>
+    	<p><div class="listbox" style="margin-right:2px;float:left;"><div class="listing"><pre><code class="keyword">class</code> SomeBase {
+  SomeBase() {
+    <em class="comment">// ... body omitted</em>
+  }
+}
+<code class="keyword">public team class</code> T {
+  <code class="keyword">protected class</code> R <code class="keyword">playedBy</code> SomeBase {
+    <code class="keyword">void</code> test() <code class="keyword">&lt;- after</code> SomeBase();
+    <code class="keyword">void</code> test() {
+      <em class="comment">// ... body omitted</em>
+    }
+  }
+}</pre></div></div></p>
+	<p style="clear:both;">
+		Within the intercepting role method the base instance can be assumed to be fully initialized, and thus the role is fully
+		operational, e.g., in terms of calling callout-bound methods. It is for these reasons that <code class="keyword">before</code>
+		and <code class="keyword">replace</code> bindings are not allowed for constructors: the base instance wouldn't be accessible
+		and thus the role cannot yet be created at this point.
+	</p>
+    </td>
+  </tr>
+<!--
+
+  <tr><td colspan="2" id="debug"><h2>Run / Debug</h2></td></tr>
+  <tr>
+    <td><p align="right"><b>HEADING</b><br>
+        <span class="since">since&nbsp;2.1M6</span><br>
+        <a class="buglink" title="TITLE" href="https://bugs.eclipse.org/301314">301314</a></p></td>
+    <td><p>PARA</p>
+    </td>
+  </tr>
+
+  <tr><td colspan="2" id="api"><h2>API</h2></td></tr>
+  <tr>
+    <td><p align="right"><b>HEADING</b><br>
+        <span class="since">since&nbsp;2.1M6</span><br>
+        <a class="buglink" title="TITLE" href="https://bugs.eclipse.org/301314">301314</a></p></td>
+    <td><p>PARA</p>
+    </td>
+  </tr>
+
+  <tr><td colspan="2" id="compiler"><h2>Compiler</h2></td></tr>
+  <tr>
+    <td><p align="right"><b>HEADING</b><br>
+        <span class="since">since&nbsp;2.1M6</span><br>
+        <a class="buglink" title="TITLE" href="https://bugs.eclipse.org/301314">301314</a></p></td>
+    <td><p>PARA</p>
+    </td>
+  </tr>
+
+
+  <tr><td colspan="2" id="otre"><h2>Object Teams Runtime Environment</h2></td></tr>
+  <tr>
+    <td><p align="right"><b>HEADING</b><br>
+        <span class="since">since&nbsp;2.1M6</span><br>
+        <a class="buglink" title="TITLE" href="https://bugs.eclipse.org/301314">301314</a></p></td>
+    <td><p>PARA</p>
+    </td>
+  </tr>
+  
+  <tr><td colspan="2" id="releng"><h2>Release Engineering</h2></td></tr>
+  <tr>
+    <td><p align="right"><b>HEADING</b><br>
+        <span class="since">since&nbsp;2.1M6</span><br>
+        <a class="buglink" title="TITLE" href="https://bugs.eclipse.org/301314">301314</a></p></td>
+    <td><p>PARA</p>
+    </td>
+  </tr>
+-->  
+</table>
+</body>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/index.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/index.html
index db92afc..8ec1a3a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/index.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/index.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -122,7 +122,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s0.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s0.html
index 74ed532..43bf918 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s0.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s0.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -141,16 +141,39 @@
                <h2 class="sect">&sect;0.4&nbsp;Versions<a class="img" href="s0.html#s0.4"
                      title="PermaLink to &sect;0.4&nbsp;Versions"><img style="vertical-align:text-top;margin-left:5px;" src="../images/permalink.png"
                           alt="" /></a><span class="toplink"><a href="#top">&uarr;&nbsp;&sect;0</a></span></h2>
-               <div style="border: 4px solid #9090B0; float:left;margin-bottom:10px;">
-               <table>
-               <tr style="background-color:#e0e0f0;" ><th>OTJLD version</th><th>Release date</th><th>Matching OTDT version</th></tr>
-			   <tr class="line even"><td>1.0.0		</td><td>July 2007   </td><td>1.0.0</td></tr>
-			   <tr class="line odd" ><td>1.1.0		</td><td>June 2008   </td><td>1.1.9</td></tr>
-			   <tr class="line even"><td>1.2.0		</td><td>June 2009   </td><td>1.2.8 - 1.4.0</td></tr>
-			   <tr class="line odd "><td>1.3.0		</td><td>June 2011   </td><td>2.0.0 and greater</td></tr>
-			   </table> 
-			   </div>
-               <p style="clear:left;"><strong>Changes</strong> between the current and previous versions are listed in appendix <a href="sB.html" title="&sect;B&nbsp;Changes between versions" class="sect">&sect;B</a>.
+               <table class="bordered">
+                  <tr class="head">
+                     <th rowspan="1" colspan="1">OTJLD version</th>
+                     <th rowspan="1" colspan="1">Release date</th>
+                     <th rowspan="1" colspan="1">Matching OTDT version</th>
+                  </tr>
+                  <tr class="line even">
+                     <td rowspan="1" colspan="1">1.0.0		</td>
+                     <td rowspan="1" colspan="1">July 2007   </td>
+                     <td rowspan="1" colspan="1">1.0.0</td>
+                  </tr>
+                  <tr class="line odd">
+                     <td rowspan="1" colspan="1">1.1.0		</td>
+                     <td rowspan="1" colspan="1">June 2008   </td>
+                     <td rowspan="1" colspan="1">1.1.9</td>
+                  </tr>
+                  <tr class="line even">
+                     <td rowspan="1" colspan="1">1.2.0		</td>
+                     <td rowspan="1" colspan="1">June 2009   </td>
+                     <td rowspan="1" colspan="1">1.2.8 - 1.4.0</td>
+                  </tr>
+                  <tr class="line odd">
+                     <td rowspan="1" colspan="1">1.3.0		</td>
+                     <td rowspan="1" colspan="1">June 2011   </td>
+                     <td rowspan="1" colspan="1">2.0.0 - 2.1.2</td>
+                  </tr>
+                  <tr class="line even">
+                     <td rowspan="1" colspan="1">1.3.1		</td>
+                     <td rowspan="1" colspan="1">June 2013   </td>
+                     <td rowspan="1" colspan="1">2.2.0 and greater</td>
+                  </tr>
+               </table>
+               <p><strong>Changes</strong> between the current and previous versions are listed in appendix <a href="sB.html" title="&sect;B&nbsp;Changes between versions" class="sect">&sect;B</a>.
                   		
                </p>
             </div>
@@ -181,7 +204,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s1.html
index d2d5ae0..02440e4 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -1851,7 +1851,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s2.html
index 344fc2b..fa5fe2f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -2144,7 +2144,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s3.html
index d3c5b6f..b693c3b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -1034,7 +1034,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s4.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s4.html
index 27bf493..bb29855 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s4.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s4.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -187,6 +187,16 @@
                      			
                   </p>
                </div>
+               <div class="subsect depth3" id="s4.1.i">
+                  <h4 class="subsect">(i)&nbsp;<span class="title">Callin to constructor</span><a class="img" href="s4.html#s4.1.i"
+                        title="PermaLink to (i)&nbsp;Callin to constructor"><img style="vertical-align:text-top;margin-left:5px;" src="../images/permalink.png"
+                             alt="" /></a></h4>
+                  <p>A callin binding may refer to a constructor of the bound base class by using the
+                     				constructor's source name (identical to the name of the base class). 
+                     				In this case only an <strong>after</strong>	binding (<a href="#s4.2.a" title="&sect;4.2.(a)&nbsp;Method composition" class="sect">&sect;4.2.(a)</a>) is allowed.
+                     			
+                  </p>
+               </div>
             </div>
             <div class="sect depth2" id="s4.2">
                <h2 class="sect">&sect;4.2&nbsp;Callin modifiers (before, after, replace)<a class="img" href="s4.html#s4.2"
@@ -1526,7 +1536,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s5.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s5.html
index 357fd97..ea88fb5 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s5.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s5.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -720,7 +720,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s6.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s6.html
index 78df691..aabedfb 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s6.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s6.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -460,7 +460,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s7.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s7.html
index 80cdeda..c1a3022 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s7.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s7.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -254,7 +254,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s8.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s8.html
index f4d3680..4c93260 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s8.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s8.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -85,7 +85,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s9.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s9.html
index f5a7874..7ac584c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s9.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/s9.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -234,7 +234,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/sA.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/sA.html
index 7952b2c..a50ec93 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/sA.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/sA.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -190,14 +190,16 @@
                <table class="syntaxrule" id="sA.3.4">
                   <tr>
                      <td class="sect">&sect;&nbsp;A.3.4</td>
-                     <td class="rule"><span class="title">MethodSpec</span><br /><em>Identifier</em><br /><em>ResultType MethodDeclarator</em></td>
+                     <td class="rule"><span class="title">MethodSpec</span><br /><em>Identifier</em><br /><em>ResultType MethodDeclarator</em><br /><em>ConstructorDeclarator</em></td>
                   </tr>
                </table>
                <div class="note">
-                  			Note, that <em>ResultType</em> and <em>MethodDeclarator</em> are not explicit in the 
+                  			Note, that <em>ResultType</em>, <em>MethodDeclarator</em> and <em>ConstructorDeclarator</em> are not explicit in the 
                   			overall syntax of the Java language specification. For convenience we refer to the definition in 
-                  			section <a href="http://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html#40420"
-                     class="ext">8.4. Method Declarations</a> 
+                  			sections <a href="http://docs.oracle.com/javase/specs/jls/se7/html/jls-8.html#jls-8.4"
+                     class="ext">8.4. Method Declarations</a>
+                  			and <a href="http://docs.oracle.com/javase/specs/jls/se7/html/jls-8.html#jls-8.8"
+                     class="ext">8.8. Constructor Declarations</a> 
                   			of the Java language specification.
                   		
                </div>
@@ -253,6 +255,10 @@
                         					A short callout binding (i.e., without signatures) must not specify 
                         					a visibility modifier.
                      </li>
+                     <li>A <code>MethodSpec</code> of the shape <code>ConstructorDeclarator</code> is
+                        					legal only on the right hand side of a callin after binding (see <a href="s4.html#s4.1.i" title="&sect;4.1.(i)&nbsp;Callin to constructor"
+                           class="sect">&sect;4.1.(i)</a>).
+                     </li>
                   </ol>
                </div>
             </div>
@@ -500,7 +506,7 @@
                <table class="syntaxrule" id="sA.10.1">
                   <tr>
                      <td class="sect">&sect;&nbsp;A.10.1</td>
-                     <td class="rule"><span class="title">PackageDeclaration</span><br />...<br /><strong class="blue">team </strong><em>QualifiedName</em> ;
+                     <td class="rule"><span class="title">PackageDeclaration</span><br />...<br /><strong class="blue">team </strong>package<em> QualifiedName</em> ;
                         		
                      </td>
                   </tr>
@@ -527,7 +533,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/sB.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/sB.html
index 857e4e4..651c948 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/sB.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/def/sB.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -488,6 +488,20 @@
                      </li>
                   </ul>
                </div>
+               <div class="subsect depth3" id="sB.2.4">
+                  <h4 class="subsect">(4)&nbsp;<span class="title">After OTJLD 1.3</span><a class="img" href="sB.html#sB.2.4"
+                        title="PermaLink to (4)&nbsp;After OTJLD 1.3"><img style="vertical-align:text-top;margin-left:5px;" src="../images/permalink.png"
+                             alt="" /></a></h4>
+                  <ul>
+                     <li><a href="s4.html#s4.1.i" title="&sect;4.1.(i)&nbsp;Callin to constructor"
+                           class="sect">&sect;4.1.(i)</a>: 
+                        					<strong>Callin to constructor</strong><p>
+                           						A callin after binding can now be applied to a constructor of the base class, too. 
+                           					
+                        </p>
+                     </li>
+                  </ul>
+               </div>
             </div>
          </div>
          <table class="nav">
@@ -502,7 +516,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/index.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/index.html
index 6bee267..1f51919 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/index.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/index.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -122,7 +122,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.1.html
index 9b81ee0..e1622ca 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.2.a.html
index ccf2b81..2157750 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -37,7 +37,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.2.b.html
index c285408..022c732 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -37,7 +37,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.2.html
index 8e02a68..054123d 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -93,7 +93,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.3.html
index aa951f4..3c29aac 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.4.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.4.html
index 05a1792..ef826ce 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.4.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.4.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -20,16 +20,39 @@
          <div class="sect depth2" id="s0.4">
             <h2 class="sect">&sect;0.4&nbsp;Versions<a class="img" href="s0.4.html" title="PermaLink to &sect;0.4&nbsp;Versions"><img style="vertical-align:text-top;margin-left:5px;" src="../images/permalink.png"
                        alt="" /></a></h2>
-               <div style="border: 4px solid #9090B0; float:left;margin-bottom:10px;">
-               <table>
-               <tr style="background-color:#e0e0f0;" ><th>OTJLD version</th><th>Release date</th><th>Matching OTDT version</th></tr>
-			   <tr class="line even"><td>1.0.0		</td><td>July 2007   </td><td>1.0.0</td></tr>
-			   <tr class="line odd" ><td>1.1.0		</td><td>June 2008   </td><td>1.1.9</td></tr>
-			   <tr class="line even"><td>1.2.0		</td><td>June 2009   </td><td>1.2.8 - 1.4.0</td></tr>
-			   <tr class="line odd "><td>1.3.0		</td><td>June 2011   </td><td>2.0.0 and greater</td></tr>
-			   </table> 
-			   </div>
-               <p style="clear:left;"><strong>Changes</strong> between the current and previous versions are listed in appendix <a href="sB.html" title="&sect;B&nbsp;Changes between versions" class="sect">&sect;B</a>.
+            <table class="bordered">
+               <tr class="head">
+                  <th rowspan="1" colspan="1">OTJLD version</th>
+                  <th rowspan="1" colspan="1">Release date</th>
+                  <th rowspan="1" colspan="1">Matching OTDT version</th>
+               </tr>
+               <tr class="line even">
+                  <td rowspan="1" colspan="1">1.0.0		</td>
+                  <td rowspan="1" colspan="1">July 2007   </td>
+                  <td rowspan="1" colspan="1">1.0.0</td>
+               </tr>
+               <tr class="line odd">
+                  <td rowspan="1" colspan="1">1.1.0		</td>
+                  <td rowspan="1" colspan="1">June 2008   </td>
+                  <td rowspan="1" colspan="1">1.1.9</td>
+               </tr>
+               <tr class="line even">
+                  <td rowspan="1" colspan="1">1.2.0		</td>
+                  <td rowspan="1" colspan="1">June 2009   </td>
+                  <td rowspan="1" colspan="1">1.2.8 - 1.4.0</td>
+               </tr>
+               <tr class="line odd">
+                  <td rowspan="1" colspan="1">1.3.0		</td>
+                  <td rowspan="1" colspan="1">June 2011   </td>
+                  <td rowspan="1" colspan="1">2.0.0 - 2.1.2</td>
+               </tr>
+               <tr class="line even">
+                  <td rowspan="1" colspan="1">1.3.1		</td>
+                  <td rowspan="1" colspan="1">June 2013   </td>
+                  <td rowspan="1" colspan="1">2.2.0 and greater</td>
+               </tr>
+            </table>
+            <p><strong>Changes</strong> between the current and previous versions are listed in appendix <a href="sB.html" title="&sect;B&nbsp;Changes between versions" class="sect">&sect;B</a>.
                		
             </p>
          </div>
@@ -46,7 +69,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.5.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.5.html
index f4fadd4..fe9fe40 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.5.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.5.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.html
index 238006b..d9e6643 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s0.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -141,16 +141,39 @@
             <div class="sect depth2" id="s0.4">
                <h2 class="sect">&sect;0.4&nbsp;Versions<a class="img" href="s0.4.html" title="PermaLink to &sect;0.4&nbsp;Versions"><img style="vertical-align:text-top;margin-left:5px;" src="../images/permalink.png"
                           alt="" /></a><span class="toplink"><a href="#top">&uarr;&nbsp;&sect;0</a></span></h2>
-               <div style="border: 4px solid #9090B0; float:left;margin-bottom:10px;">
-               <table>
-               <tr style="background-color:#e0e0f0;" ><th>OTJLD version</th><th>Release date</th><th>Matching OTDT version</th></tr>
-			   <tr class="line even"><td>1.0.0		</td><td>July 2007   </td><td>1.0.0</td></tr>
-			   <tr class="line odd" ><td>1.1.0		</td><td>June 2008   </td><td>1.1.9</td></tr>
-			   <tr class="line even"><td>1.2.0		</td><td>June 2009   </td><td>1.2.8 - 1.4.0</td></tr>
-			   <tr class="line odd "><td>1.3.0		</td><td>June 2011   </td><td>2.0.0 and greater</td></tr>
-			   </table> 
-			   </div>
-               <p style="clear:left;"><strong>Changes</strong> between the current and previous versions are listed in appendix <a href="sB.html" title="&sect;B&nbsp;Changes between versions" class="sect">&sect;B</a>.
+               <table class="bordered">
+                  <tr class="head">
+                     <th rowspan="1" colspan="1">OTJLD version</th>
+                     <th rowspan="1" colspan="1">Release date</th>
+                     <th rowspan="1" colspan="1">Matching OTDT version</th>
+                  </tr>
+                  <tr class="line even">
+                     <td rowspan="1" colspan="1">1.0.0		</td>
+                     <td rowspan="1" colspan="1">July 2007   </td>
+                     <td rowspan="1" colspan="1">1.0.0</td>
+                  </tr>
+                  <tr class="line odd">
+                     <td rowspan="1" colspan="1">1.1.0		</td>
+                     <td rowspan="1" colspan="1">June 2008   </td>
+                     <td rowspan="1" colspan="1">1.1.9</td>
+                  </tr>
+                  <tr class="line even">
+                     <td rowspan="1" colspan="1">1.2.0		</td>
+                     <td rowspan="1" colspan="1">June 2009   </td>
+                     <td rowspan="1" colspan="1">1.2.8 - 1.4.0</td>
+                  </tr>
+                  <tr class="line odd">
+                     <td rowspan="1" colspan="1">1.3.0		</td>
+                     <td rowspan="1" colspan="1">June 2011   </td>
+                     <td rowspan="1" colspan="1">2.0.0 - 2.1.2</td>
+                  </tr>
+                  <tr class="line even">
+                     <td rowspan="1" colspan="1">1.3.1		</td>
+                     <td rowspan="1" colspan="1">June 2013   </td>
+                     <td rowspan="1" colspan="1">2.2.0 and greater</td>
+                  </tr>
+               </table>
+               <p><strong>Changes</strong> between the current and previous versions are listed in appendix <a href="sB.html" title="&sect;B&nbsp;Changes between versions" class="sect">&sect;B</a>.
                   		
                </p>
             </div>
@@ -181,7 +204,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.1.html
index e29ed6c..67bbf82 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -105,7 +105,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.a.html
index f0e72ba..7deb05e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.b.html
index 47f2778..c7df4d8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.c.html
index a0555ed..2ba45ff 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.d.html
index f1b634d..600aa35 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -56,7 +56,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.e.html
index e233c99..71fad98 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -58,7 +58,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.f.html
index 15ad20e..98fdd25 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -49,7 +49,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.g.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.g.html
index dc28f22..9e13d86 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.g.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.g.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -50,7 +50,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.html
index ce650c3..2ec63e7 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -164,7 +164,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.a.html
index 43e14c5..23b254e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -37,7 +37,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.b.html
index 620f57e..f96670d 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -54,7 +54,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.c.html
index 37441da..0d79e4f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.d.html
index 6b12c0d..a718d2f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -56,7 +56,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.e.html
index 5369dc8..f8c9a56 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.f.html
index c755e7d..92cd97e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -60,7 +60,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.g.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.g.html
index 9601474..e134292 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.g.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.g.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -62,7 +62,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.h.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.h.html
index a957b1a..e3fb7de 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.h.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.h.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -46,7 +46,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.html
index ec5a940..7c34585 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -376,7 +376,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.i.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.i.html
index e60cf70..83392d1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.i.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.2.i.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -48,7 +48,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.a.html
index e64dc15..25cd91f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -36,7 +36,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.b.html
index 68d8a5f..3498550 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.c.html
index ba62b71..308c9c2 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.d.html
index 41c55f2..03a3ef4 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.html
index 4df096e..9c5a047 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -86,7 +86,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.a.html
index 89874e7..3270c2a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.b.html
index fae244b..22f2e08 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.c.html
index 48e027e..c376c1b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.html
index 9dbf03a..b21c298 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.4.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -67,7 +67,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.a.html
index 86a6f77..929d189 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.b.html
index 4493c76..db4732d 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.c.html
index 49666e6..efe2600 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.d.html
index c287baf..5290548 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.e.html
index 5e76063..4479eea 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.f.html
index 7deb03a..5f9587e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.html
index 9858a12..c1545c5 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.5.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -179,7 +179,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.html
index b6a964b..479f112 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -795,7 +795,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.a.html
index 8f06f03..d672c92 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -50,7 +50,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.b.html
index 6179328..458b1f5 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -44,7 +44,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.c.html
index 15b43f2..2cc8c58 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -63,7 +63,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.d.html
index af61595..4157ac2 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.e.html
index b6bf1c1..d5d26da 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -67,7 +67,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.f.html
index 30f0170..b0cdfba 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -63,7 +63,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.g.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.g.html
index b9a18f0..94951bd 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.g.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.g.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -53,7 +53,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.h.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.h.html
index de27738..7517fd8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.h.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.h.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.html
index 90e33b3..a92feb9 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -528,7 +528,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.i.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.i.html
index fe230bd..c095ad9 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.i.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.i.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -51,7 +51,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.j.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.j.html
index 0864650..1b3e719 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.j.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.j.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.k.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.k.html
index 5de8e32..c14139e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.k.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.1.k.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -62,7 +62,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.a.html
index 3fcdca4..6f5eacd 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -44,7 +44,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.b.html
index c76b637..6cd4768 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -45,7 +45,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.c.html
index 25eec72..10db511 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.d.html
index 344de4c..aeb7b47 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.e.html
index 4ec33af..f9bb772 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.html
index cf14a3b..462974a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -102,7 +102,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.html
index 3e0320f..d7c9533 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -617,7 +617,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.4.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.4.a.html
index e2753c8..29b35b1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.4.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.4.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.4.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.4.b.html
index 721a5aa..16d525c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.4.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.4.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -53,7 +53,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.4.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.4.html
index a78bbcb..ff28a01 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.4.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.4.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -70,7 +70,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.a.html
index 8e9c7c3..368b3b3 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -48,7 +48,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.b.html
index c55c807..7bc2b7d 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -51,7 +51,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.c.html
index 2243dc2..4e77637 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.d.html
index 403ec4b..49e428c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.e.html
index a9ffe0e..7a1ec70 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -75,7 +75,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.f.html
index d9f2224..439d68c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -54,7 +54,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.html
index 97d0f6c..d78988e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.5.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -302,7 +302,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.html
index c693e3e..4b4653b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -1843,7 +1843,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.1.html
index b63a29c..37f78c0 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -48,7 +48,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.a.html
index f7db22e..54adb7c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -47,7 +47,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.b.html
index f436ab8..54fa76f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -61,7 +61,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.c.html
index b429fad..591508a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -66,7 +66,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.d.html
index 849958f..ce93fac 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -76,7 +76,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.e.html
index 254a1df..ab8c165 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -177,7 +177,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.html
index e7f5c48..75d69d5 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -322,7 +322,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.a.html
index c2911d8..ab22f40 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -62,7 +62,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.b.html
index 0715a25..6d1d578 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.c.html
index ab87ee5..fd37446 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -45,7 +45,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.d.html
index 1971fb9..fc90415 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -44,7 +44,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.e.html
index cb3300b..8571b48 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.f.html
index 9b3f4a6..de7ed31 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -51,7 +51,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.html
index 36756fe..44ad0ed 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -452,7 +452,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.a.html
index 61a15d0..3a2d11e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.b.html
index 1108595..154dd1e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -136,7 +136,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.c.html
index 2669d15..d57237b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.d.html
index 8a49e61..21ac9fa 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -84,7 +84,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.e.html
index 9755433..3da7bbe 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -44,7 +44,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.f.html
index 3dd7e5d..654e24f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.html
index 7c82797..5c7b937 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -240,7 +240,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.a.html
index c577e04..ec4c74d 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -48,7 +48,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.b.html
index 3b3f4a1..f1ea162 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -52,7 +52,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.c.html
index 1f2bafe..962fee7 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -45,7 +45,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.d.html
index 097a4d6..749b79c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -67,7 +67,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.html
index 4fdb85f..efe94c9 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -132,7 +132,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.a.html
index f2ea60b..8fb978f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -55,7 +55,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.b.html
index f78e671..306569a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.c.html
index 5543425..223f5d4 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.d.html
index 3c6dd32..a11adeb 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -50,7 +50,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.e.html
index 55ed366..98ee300 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -60,7 +60,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.html
index 8a7e821..8d5324c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -202,7 +202,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.a.html
index 7e56b4a..f765380 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -50,7 +50,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.b.html
index e1bb834..da975aa 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -48,7 +48,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.c.html
index 5ff62e6..e08ac3f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -44,7 +44,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.d.html
index 9d46686..72e529a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.html
index 96b3050..ef68ee1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -178,7 +178,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.a.html
index e72b8ab..5e93fbb 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -96,7 +96,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.b.html
index d7634cf..534a266 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -102,7 +102,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.c.html
index d712a24..1857c09 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -96,7 +96,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.d.html
index 307ab06..539782d 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -122,7 +122,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.html
index 017744b..392bb40 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.4.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -336,7 +336,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.a.html
index 9fb89b9..3de3272 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.b.html
index 4e0fca5..d57f5c6 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.c.html
index 020d3d5..62307e7 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -49,7 +49,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.d.html
index 0f953fd..f57ac15 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -44,7 +44,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.html
index 97e8d76..dfce038 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.5.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -99,7 +99,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.a.html
index 3a106f2..2d9f3df 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -44,7 +44,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.b.html
index dd9b61c..ec69796 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -49,7 +49,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.c.html
index 03e3ed6..2ebaf9b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.d.html
index c4a103d..dcb7c31 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.html
index 9ff3625..a9ce253 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -898,7 +898,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.a.html
index 43a92a8..38ba5b8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.b.html
index 0600502..1c5015f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.c.html
index 0f77865..210ba0f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -48,7 +48,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.html
index 73b8bfd..880f4b0 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -77,7 +77,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.a.html
index 3d7f459..b62dedb 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.b.html
index 8e84663..aaafc45 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -49,7 +49,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.c.html
index 05e1395..af225c8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -70,7 +70,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.html
index cae2751..dd44961 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -135,7 +135,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.3.html
index 8f21dcd..3fc6a3c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -118,7 +118,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.html
index 433fc3b..f75d67d 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.4.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -279,7 +279,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.5.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.5.a.html
index afa15f5..6456b08 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.5.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.5.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -57,7 +57,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.5.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.5.b.html
index 9733f29..f6073b1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.5.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.5.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -64,7 +64,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.5.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.5.html
index b2a5ddd..6dd59e9 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.5.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.5.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -101,7 +101,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.a.html
index 9d1de0f..d76f5d3 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -76,7 +76,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.b.html
index 94758fc..fcc841b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.c.html
index 7386489..649be37 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.d.html
index 4790633..9409b76 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.e.html
index ea63543..a0d85cf 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.f.html
index a186546..9fad477 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.g.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.g.html
index 49de6f2..63c26da 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.g.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.g.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -45,7 +45,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.html
index d13cf53..177be59 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.6.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -160,7 +160,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.a.html
index efe4d59..66cc13b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.b.html
index a30e7c8..cc7fc9c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.c.html
index a2b92ac..852329b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -54,7 +54,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.d.html
index ef3fb51..7d4f3be 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -79,7 +79,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.html
index 332f9c0..cbbaa70 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.7.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -129,7 +129,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.html
index 46df2a8..1f3188e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -2133,7 +2133,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.a.html
index 415d176..597a88c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.b.html
index 35975c1..f51db53 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -74,7 +74,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.c.html
index eafc9df..f80fa99 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -80,7 +80,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.d.html
index dabbd66..2b2db27 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.e.html
index dd1cba1..03b41a4 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -45,7 +45,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.f.html
index 32450da..816ac52 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.g.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.g.html
index 9086e24..831b856 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.g.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.g.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.h.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.h.html
index 7e84d66..f0784d4 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.h.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.h.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.html
index 9676442..f5b761b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -297,7 +297,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.i.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.i.html
index 64077c0..4d3a3d9 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.i.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.i.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -51,7 +51,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.j.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.j.html
index cbcf46a..ad3b03c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.j.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.j.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -62,7 +62,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.k.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.k.html
index 432f29f..76d7828 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.k.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.1.k.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -62,7 +62,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.a.html
index c4f40a6..493c93b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.b.html
index 55d1cb5..025210d 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.c.html
index 5200fef..5f677c3 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -66,7 +66,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.d.html
index 7d6765a..c187148 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -53,7 +53,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.e.html
index 11fb02a..f873e0e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -60,7 +60,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.html
index 5340ad8..7deaec7 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -310,7 +310,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.a.html
index 6f8986f..835614b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.b.html
index a0d6886..0da0e74 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.c.html
index 9adf748..ea8ec71 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.d.html
index 27a7a16..75bba97 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -55,7 +55,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.e.html
index 9f0e7af..e7d60a1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.html
index 1bb95e5..d3a32c4 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -105,7 +105,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.a.html
index 438ca4b..6dde90f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.b.html
index 06d6105..f4a6cb8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.c.html
index 845e2fa..6c059e6 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -57,7 +57,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.d.html
index 095405d..3cb2397 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -103,7 +103,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.html
index 3c94292..a1183b8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.4.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -179,7 +179,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.a.html
index 1fec27e..23ee557 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -63,7 +63,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.b.html
index dd2286f..9268ff6 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -46,7 +46,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.c.html
index f2d0141..0c2bde5 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -62,7 +62,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.d.html
index e68a529..737cdde 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.e.html
index 0944a38..48a5e56 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -47,7 +47,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.f.html
index 82554e7..9bcae00 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -50,7 +50,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.g.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.g.html
index c674319..d6aa5a4 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.g.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.g.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.h.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.h.html
index 6566539..e0e3ee2 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.h.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.h.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -72,7 +72,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.html
index 536eb14..32d94b3 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.5.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -218,7 +218,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.html
index 2fab073..9cac1b7 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -1026,7 +1026,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.a.html
index 26228ab..5413668 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.b.html
index 6a48ad3..3d6cee1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -53,7 +53,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.c.html
index 3604c6f..36ebe98 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -53,7 +53,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.d.html
index 8a3e02e..02f4227 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -46,7 +46,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.e.html
index b7505dd..91df1d8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -45,7 +45,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.f.html
index 27dd98e..1b7b467 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.g.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.g.html
index 92f2bb8..8e99a7a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.g.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.g.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.h.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.h.html
index b1b7436..8b518f0 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.h.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.h.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -13,7 +13,7 @@
             <tr>
                <td class="back"><a id="top"></a><a href="s4.1.g.html" rel="prev">&lt;&lt;&nbsp;&sect;4.1.(g)&nbsp;Declared exceptions</a></td>
                <td class="top"><a href="index.html" rel="contents">&uarr;&nbsp;Table of Contents&nbsp;&uarr;</a></td>
-               <td class="next"></td>
+               <td class="next"><a href="s4.1.i.html" rel="next">&sect;4.1.(i)&nbsp;Callin to constructor&nbsp;&gt;&gt;</a></td>
             </tr>
          </table>
          <div class="breadcrumb"><a class="nav" href="s4.html" rel="section">&sect;4&nbsp;Callin Binding</a>&nbsp;&gt;&nbsp;<a class="nav" href="s4.1.html" rel="section">&sect;4.1&nbsp;Callin method binding</a></div>
@@ -30,7 +30,7 @@
             <tr>
                <td class="back"><a href="s4.1.g.html" rel="prev">&lt;&lt;&nbsp;&sect;4.1.(g)&nbsp;Declared exceptions</a></td>
                <td class="top"><a href="index.html" rel="contents">&uarr;&nbsp;Table of Contents&nbsp;&uarr;</a></td>
-               <td class="next"></td>
+               <td class="next"><a href="s4.1.i.html" rel="next">&sect;4.1.(i)&nbsp;Callin to constructor&nbsp;&gt;&gt;</a></td>
             </tr>
          </table>
          <div class="breadcrumb"><a class="nav" href="s4.html" rel="section">&sect;4&nbsp;Callin Binding</a>&nbsp;&gt;&nbsp;<a class="nav" href="s4.1.html" rel="section">&sect;4.1&nbsp;Callin method binding</a></div>
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.html
index c934a78..4272267 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -137,6 +137,17 @@
                   			
                </p>
             </div>
+            <div class="subsect depth3" id="s4.1.i">
+               <h4 class="subsect">(i)&nbsp;<span class="title">Callin to constructor</span><a class="img" href="s4.1.i.html"
+                     title="PermaLink to (i)&nbsp;Callin to constructor"><img style="vertical-align:text-top;margin-left:5px;" src="../images/permalink.png"
+                          alt="" /></a></h4>
+               <p>A callin binding may refer to a constructor of the bound base class by using the
+                  				constructor's source name (identical to the name of the base class). 
+                  				In this case only an <strong>after</strong>	binding (<a href="s4.2.a.html" title="&sect;4.2.(a)&nbsp;Method composition"
+                     class="sect">&sect;4.2.(a)</a>) is allowed.
+                  			
+               </p>
+            </div>
          </div>
          <table class="nav">
             <tr>
@@ -151,7 +162,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.i.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.i.html
new file mode 100644
index 0000000..307aad6
--- /dev/null
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.1.i.html
@@ -0,0 +1,47 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "../xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+   <head>
+      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+      <link rel="stylesheet" type="text/css" href="../css/ot.css" />
+      <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
+      <title>OT/J Language Definition v1.3.1</title>
+   </head>
+   <body class="otdt">
+      <div id="content">
+         <table class="nav">
+            <tr>
+               <td class="back"><a id="top"></a><a href="s4.1.h.html" rel="prev">&lt;&lt;&nbsp;&sect;4.1.(h)&nbsp;Method of enclosing class</a></td>
+               <td class="top"><a href="index.html" rel="contents">&uarr;&nbsp;Table of Contents&nbsp;&uarr;</a></td>
+               <td class="next"></td>
+            </tr>
+         </table>
+         <div class="breadcrumb"><a class="nav" href="s4.html" rel="section">&sect;4&nbsp;Callin Binding</a>&nbsp;&gt;&nbsp;<a class="nav" href="s4.1.html" rel="section">&sect;4.1&nbsp;Callin method binding</a></div>
+         <div class="subsect depth3" id="s4.1.i">
+            <h4 class="subsect">&sect;4.1.(i)&nbsp;<span class="title">Callin to constructor</span><a class="img" href="s4.1.i.html"
+                  title="PermaLink to (i)&nbsp;Callin to constructor"><img style="vertical-align:text-top;margin-left:5px;" src="../images/permalink.png"
+                       alt="" /></a></h4>
+            <p>A callin binding may refer to a constructor of the bound base class by using the
+               				constructor's source name (identical to the name of the base class). 
+               				In this case only an <strong>after</strong>	binding (<a href="s4.2.a.html" title="&sect;4.2.(a)&nbsp;Method composition"
+                  class="sect">&sect;4.2.(a)</a>) is allowed.
+               			
+            </p>
+         </div>
+         <table class="nav">
+            <tr>
+               <td class="back"><a href="s4.1.h.html" rel="prev">&lt;&lt;&nbsp;&sect;4.1.(h)&nbsp;Method of enclosing class</a></td>
+               <td class="top"><a href="index.html" rel="contents">&uarr;&nbsp;Table of Contents&nbsp;&uarr;</a></td>
+               <td class="next"></td>
+            </tr>
+         </table>
+         <div class="breadcrumb"><a class="nav" href="s4.html" rel="section">&sect;4&nbsp;Callin Binding</a>&nbsp;&gt;&nbsp;<a class="nav" href="s4.1.html" rel="section">&sect;4.1&nbsp;Callin method binding</a></div>
+      </div>
+      <div id="footer">
+         <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
+            shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
+                 width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
+      </div>
+   </body>
+</html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.a.html
index 4df1ca3..4c96a60 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -46,7 +46,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.b.html
index 135eea4..2b0b72e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.c.html
index 050bdd5..4af526d 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.d.html
index 4737e15..c6395d6 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.e.html
index be49730..7b6c4f9 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -91,7 +91,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.html
index ad188e6..d314992 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.10.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -252,7 +252,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.a.html
index 2732455..832f9b9 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.b.html
index de17a71..1854ed7 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -82,7 +82,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.c.html
index 5e62741..2461258 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.d.html
index c2c2a52..e599069 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -64,7 +64,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.html
index 0344e14..c931430 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -142,7 +142,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.a.html
index 83b89c2..1c08fc5 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.b.html
index cdccd56..e28a331 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -47,7 +47,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.c.html
index d55192d..ec8faaa 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.d.html
index 5962820..7abdfce 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -44,7 +44,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.e.html
index 025f275..544f96e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -53,7 +53,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.f.html
index a99c997..8af33e4 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -52,7 +52,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.html
index 2d59ee1..55e3ff2 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -205,7 +205,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.a.html
index 5fa23cb..76a62b1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -48,7 +48,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.b.html
index f687fa6..1f51479 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -75,7 +75,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.c.html
index f7ac182..dda3267 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -47,7 +47,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.d.html
index a615504..c608df8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.html
index d637dc2..feee5d1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.4.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -126,7 +126,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.a.html
index 6bd0de1..b774966 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -45,7 +45,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.b.html
index e9bedd9..7823b3e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.c.html
index 45a20bf..82c0b80 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.d.html
index bc44a0d..fef746f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -70,7 +70,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.e.html
index c767b10..7ec92c9 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.f.html
index fa4681c..027ae2e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.html
index 71b389f..9417b5a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.5.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -132,7 +132,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.6.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.6.a.html
index 5a33deb..0711d16 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.6.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.6.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -49,7 +49,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.6.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.6.html
index faacc57..1d274c1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.6.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.6.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -70,7 +70,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.a.html
index 938d31d..874d2c4 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.b.html
index e131f47..6c817a3 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.c.html
index 4986c91..6cc8fed 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.d.html
index c01132c..db059ce 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.e.html
index 31c4edf..d3c8866 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -60,7 +60,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.html
index 43a7adc..44452f2 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.7.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -130,7 +130,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.a.html
index d748414..d98ae72 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -55,7 +55,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.b.html
index 667df85..4ba4284 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -47,7 +47,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.c.html
index 803d3af..3a995d9 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.d.html
index ff534d8..53d622e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -50,7 +50,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.e.html
index 03ca2c8..7177d48 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -48,7 +48,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.html
index 0061b4b..7a7c4c7 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.8.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -200,7 +200,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.1.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.1.a.html
index 9d6e031..076ad56 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.1.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.1.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -46,7 +46,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.1.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.1.b.html
index 6e2f06a..b4f2176 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.1.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.1.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.1.html
index 98855dd..789a971 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -75,7 +75,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.2.html
index 848c34b..054f54f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.a.html
index 17c426d..1acfb2c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.b.html
index e693272..b806b50 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -48,7 +48,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.c.html
index 0c34a72..9576c02 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -195,7 +195,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.html
index 1f59af7..7cfa825 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -256,7 +256,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.html
index 8fe831e..cb2b57b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.9.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -323,7 +323,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.html
index 646b5b0..1d47f34 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s4.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -186,6 +186,16 @@
                      			
                   </p>
                </div>
+               <div class="subsect depth3" id="s4.1.i">
+                  <h4 class="subsect">(i)&nbsp;<span class="title">Callin to constructor</span><a class="img" href="s4.1.i.html"
+                        title="PermaLink to (i)&nbsp;Callin to constructor"><img style="vertical-align:text-top;margin-left:5px;" src="../images/permalink.png"
+                             alt="" /></a></h4>
+                  <p>A callin binding may refer to a constructor of the bound base class by using the
+                     				constructor's source name (identical to the name of the base class). 
+                     				In this case only an <strong>after</strong>	binding (<a href="#s4.2.a" title="&sect;4.2.(a)&nbsp;Method composition" class="sect">&sect;4.2.(a)</a>) is allowed.
+                     			
+                  </p>
+               </div>
             </div>
             <div class="sect depth2" id="s4.2">
                <h2 class="sect">&sect;4.2&nbsp;Callin modifiers (before, after, replace)<a class="img" href="s4.2.html"
@@ -1521,7 +1531,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.1.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.1.1.html
index 64ffb30..1b73036 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.1.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.1.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.1.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.1.2.html
index 51230e4..217c515 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.1.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.1.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.1.html
index b18adcc..062dd1a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -63,7 +63,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.a.html
index 74fb860..408ad30 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -51,7 +51,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.b.html
index 69316ad..b0e6edf 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -48,7 +48,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.c.html
index ba0df78..8999591 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -52,7 +52,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.html
index 935b422..9342f77 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -96,7 +96,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.a.html
index 3795142..96d120f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -44,7 +44,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.b.html
index a543689..75fe2f0 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.c.html
index 2efb80f..4f329d5 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.d.html
index 4ffcdb0..bc97f6f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -53,7 +53,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.html
index 5accd18..a8b66b0 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -115,7 +115,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.a.html
index 53864bb..9a4c252 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -64,7 +64,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.b.html
index 156667e..f3178e7 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.c.html
index 6a42206..4111b1a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -56,7 +56,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.d.html
index f2a29b2..231a426 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.html
index 531f8e0..e3121f3 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -132,7 +132,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.a.html
index 43766fd..bc2f345 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.b.html
index fd59cf9..a64e1a8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -51,7 +51,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.c.html
index 44f9a00..5af3f3f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.d.html
index 81c0721..92472cd 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -44,7 +44,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.e.html
index 89d1d00..3c19161 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.f.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.f.html
index 4b774f6..3ae3ceb 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.f.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.f.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.html
index d29e495..722eb9b 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -142,7 +142,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.3.html
index c02a28a..6882ffb 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -125,7 +125,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.a.html
index a1762fb..f6d95c1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -47,7 +47,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.b.html
index a030434..76ee2d6 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.c.html
index 0978342..5450bb8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -43,7 +43,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.html
index 6557745..c791bdc 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.4.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -398,7 +398,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.5.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.5.html
index 8b39f6a..1fca545 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.5.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.5.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -130,7 +130,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.html
index 8b48c59..8652bc9 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s5.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -715,7 +715,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.a.html
index bfc9f22..f3352a0 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -181,7 +181,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.b.html
index 695c23a..2969d01 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -55,7 +55,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.c.html
index 1a35094..7d7e02f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -52,7 +52,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.html
index 9e995c8..77b505e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -235,7 +235,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.a.html
index dda1ea6..eaf5061 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -65,7 +65,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.b.html
index 5d10efa..b4822e3 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -46,7 +46,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.c.html
index 6e48831..2a4f994 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -48,7 +48,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.d.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.d.html
index 1736a94..cbed0b8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.d.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.d.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -82,7 +82,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.e.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.e.html
index be0137c..d62ab79 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.e.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.e.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -72,7 +72,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.html
index c1af5ed..a30554c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -198,7 +198,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.3.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.3.a.html
index fb12ab6..80a9416 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.3.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.3.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -42,7 +42,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.3.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.3.b.html
index cf10bba..94015db 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.3.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.3.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -44,7 +44,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.3.html
index ae56dbd..2f9ec06 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -61,7 +61,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.html
index 08be914..a915e21 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s6.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -456,7 +456,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.1.html
index f6ed422..7887681 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -60,7 +60,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.2.a.html
index 73be4e2..f4cc2d0 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -41,7 +41,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.2.b.html
index 16fd9a1..442b986 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -45,7 +45,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.2.html
index 0420a91..d535955 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -193,7 +193,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.html
index d86b168..a0eac03 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s7.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -256,7 +256,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.1.html
index 971507e..39dd5f7 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -37,7 +37,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.2.html
index 04a9989..8256bdb 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -35,7 +35,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.3.html
index 2a62c2e..1ec3246 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -35,7 +35,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.html
index f10766d..ec02815 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s8.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -87,7 +87,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.a.html
index 1f24f3c..0a4e147 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -44,7 +44,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.b.html
index ed547d2..fffd7b1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.c.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.c.html
index 9097fe6..8627bb1 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.c.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.c.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.html
index 34aadf1..ac3a5d5 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -69,7 +69,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.1.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.1.a.html
index 8a6aedf..18a02b7 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.1.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.1.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -55,7 +55,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.1.html
index 09e4883..8dc6462 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -80,7 +80,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.2.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.2.a.html
index aa42776..3face93 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.2.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.2.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -58,7 +58,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.2.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.2.b.html
index af7c4e3..9d1408f 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.2.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.2.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.2.html
index f294258..d8272e8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -77,7 +77,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.html
index e1b2ca8..26e9eca 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -138,7 +138,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.3.a.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.3.a.html
index 44b4bda..43d692d 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.3.a.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.3.a.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -38,7 +38,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.3.b.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.3.b.html
index 2d42e7f..11f0a00 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.3.b.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.3.b.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.3.html
index 704f21f..c2b485e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -53,7 +53,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.html
index 6b37a93..2c31c4a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/s9.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -235,7 +235,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.1.html
index 61724c8..455cdba 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -45,7 +45,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.2.html
index 60b55aa..a6c73cf 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -40,7 +40,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.3.html
index daed445..065f28e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -39,7 +39,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.html
index 9717862..aaa7b71 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.0.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -74,7 +74,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.1.html
index 5a2353c..a6c046c 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -67,7 +67,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.10.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.10.html
index 1fc982a..a9a2b63 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.10.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.10.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -24,7 +24,7 @@
             <table class="syntaxrule" id="sA.10.1">
                <tr>
                   <td class="sect">&sect;&nbsp;A.10.1</td>
-                  <td class="rule"><span class="title">PackageDeclaration</span><br />...<br /><strong class="blue">team </strong><em>QualifiedName</em> ;
+                  <td class="rule"><span class="title">PackageDeclaration</span><br />...<br /><strong class="blue">team </strong>package<em> QualifiedName</em> ;
                      		
                   </td>
                </tr>
@@ -51,7 +51,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.2.html
index e8d06fa..0d7a857 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -54,7 +54,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.3.html
index be30d56..4d43204 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -47,14 +47,16 @@
             <table class="syntaxrule" id="sA.3.4">
                <tr>
                   <td class="sect">&sect;&nbsp;A.3.4</td>
-                  <td class="rule"><span class="title">MethodSpec</span><br /><em>Identifier</em><br /><em>ResultType MethodDeclarator</em></td>
+                  <td class="rule"><span class="title">MethodSpec</span><br /><em>Identifier</em><br /><em>ResultType MethodDeclarator</em><br /><em>ConstructorDeclarator</em></td>
                </tr>
             </table>
             <div class="note">
-               			Note, that <em>ResultType</em> and <em>MethodDeclarator</em> are not explicit in the 
+               			Note, that <em>ResultType</em>, <em>MethodDeclarator</em> and <em>ConstructorDeclarator</em> are not explicit in the 
                			overall syntax of the Java language specification. For convenience we refer to the definition in 
-               			section <a href="http://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html#40420"
-                  class="ext">8.4. Method Declarations</a> 
+               			sections <a href="http://docs.oracle.com/javase/specs/jls/se7/html/jls-8.html#jls-8.4"
+                  class="ext">8.4. Method Declarations</a>
+               			and <a href="http://docs.oracle.com/javase/specs/jls/se7/html/jls-8.html#jls-8.8"
+                  class="ext">8.8. Constructor Declarations</a> 
                			of the Java language specification.
                		
             </div>
@@ -110,6 +112,10 @@
                      					A short callout binding (i.e., without signatures) must not specify 
                      					a visibility modifier.
                   </li>
+                  <li>A <code>MethodSpec</code> of the shape <code>ConstructorDeclarator</code> is
+                     					legal only on the right hand side of a callin after binding (see <a href="s4.1.i.html" title="&sect;4.1.(i)&nbsp;Callin to constructor"
+                        class="sect">&sect;4.1.(i)</a>).
+                  </li>
                </ol>
             </div>
          </div>
@@ -126,7 +132,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.4.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.4.html
index 4ca6523..48052cc 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.4.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.4.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -80,7 +80,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.5.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.5.html
index 603ce78..a9adafe 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.5.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.5.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -85,7 +85,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.6.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.6.html
index 933ac88..6fea6db 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.6.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.6.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -82,7 +82,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.7.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.7.html
index 9a106f2..1d7380a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.7.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.7.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -60,7 +60,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.8.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.8.html
index 94f2688..653ec47 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.8.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.8.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -49,7 +49,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.9.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.9.html
index 6f45088..ceab6a7 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.9.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.9.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -61,7 +61,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.html
index 5e0eb65..3b07b47 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sA.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -189,14 +189,16 @@
                <table class="syntaxrule" id="sA.3.4">
                   <tr>
                      <td class="sect">&sect;&nbsp;A.3.4</td>
-                     <td class="rule"><span class="title">MethodSpec</span><br /><em>Identifier</em><br /><em>ResultType MethodDeclarator</em></td>
+                     <td class="rule"><span class="title">MethodSpec</span><br /><em>Identifier</em><br /><em>ResultType MethodDeclarator</em><br /><em>ConstructorDeclarator</em></td>
                   </tr>
                </table>
                <div class="note">
-                  			Note, that <em>ResultType</em> and <em>MethodDeclarator</em> are not explicit in the 
+                  			Note, that <em>ResultType</em>, <em>MethodDeclarator</em> and <em>ConstructorDeclarator</em> are not explicit in the 
                   			overall syntax of the Java language specification. For convenience we refer to the definition in 
-                  			section <a href="http://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html#40420"
-                     class="ext">8.4. Method Declarations</a> 
+                  			sections <a href="http://docs.oracle.com/javase/specs/jls/se7/html/jls-8.html#jls-8.4"
+                     class="ext">8.4. Method Declarations</a>
+                  			and <a href="http://docs.oracle.com/javase/specs/jls/se7/html/jls-8.html#jls-8.8"
+                     class="ext">8.8. Constructor Declarations</a> 
                   			of the Java language specification.
                   		
                </div>
@@ -252,6 +254,10 @@
                         					A short callout binding (i.e., without signatures) must not specify 
                         					a visibility modifier.
                      </li>
+                     <li>A <code>MethodSpec</code> of the shape <code>ConstructorDeclarator</code> is
+                        					legal only on the right hand side of a callin after binding (see <a href="s4.1.i.html" title="&sect;4.1.(i)&nbsp;Callin to constructor"
+                           class="sect">&sect;4.1.(i)</a>).
+                     </li>
                   </ol>
                </div>
             </div>
@@ -498,7 +504,7 @@
                <table class="syntaxrule" id="sA.10.1">
                   <tr>
                      <td class="sect">&sect;&nbsp;A.10.1</td>
-                     <td class="rule"><span class="title">PackageDeclaration</span><br />...<br /><strong class="blue">team </strong><em>QualifiedName</em> ;
+                     <td class="rule"><span class="title">PackageDeclaration</span><br />...<br /><strong class="blue">team </strong>package<em> QualifiedName</em> ;
                         		
                      </td>
                   </tr>
@@ -526,7 +532,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.1.html
index ad0c7e4..7aa6a8a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -63,7 +63,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.2.html
index 7a0118d..9f53b83 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -100,7 +100,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.3.html
index 8983435..e486f85 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -132,7 +132,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.html
index dc555b9..3b50e9d 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -240,7 +240,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.1.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.1.html
index 4c013d8..5ec54c4 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.1.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.1.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -89,7 +89,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.2.html
index 1602bc3..581b0d9 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -109,7 +109,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.3.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.3.html
index 752e45f..c96c0b8 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.3.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.3.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -13,7 +13,7 @@
             <tr>
                <td class="back"><a id="top"></a><a href="sB.2.2.html" rel="prev">&lt;&lt;&nbsp;&sect;B.2.(2)&nbsp;Between OTJLD 1.1 and OTJLD 1.2</a></td>
                <td class="top"><a href="index.html" rel="contents">&uarr;&nbsp;Table of Contents&nbsp;&uarr;</a></td>
-               <td class="next"></td>
+               <td class="next"><a href="sB.2.4.html" rel="next">&sect;B.2.(4)&nbsp;After OTJLD 1.3&nbsp;&gt;&gt;</a></td>
             </tr>
          </table>
          <div class="breadcrumb"><a class="nav" href="sB.html" rel="section">&sect;B&nbsp;Changes between versions</a>&nbsp;&gt;&nbsp;<a class="nav" href="sB.2.html" rel="section">&sect;B.2&nbsp;Additions between versions</a></div>
@@ -108,7 +108,7 @@
             <tr>
                <td class="back"><a href="sB.2.2.html" rel="prev">&lt;&lt;&nbsp;&sect;B.2.(2)&nbsp;Between OTJLD 1.1 and OTJLD 1.2</a></td>
                <td class="top"><a href="index.html" rel="contents">&uarr;&nbsp;Table of Contents&nbsp;&uarr;</a></td>
-               <td class="next"></td>
+               <td class="next"><a href="sB.2.4.html" rel="next">&sect;B.2.(4)&nbsp;After OTJLD 1.3&nbsp;&gt;&gt;</a></td>
             </tr>
          </table>
          <div class="breadcrumb"><a class="nav" href="sB.html" rel="section">&sect;B&nbsp;Changes between versions</a>&nbsp;&gt;&nbsp;<a class="nav" href="sB.2.html" rel="section">&sect;B.2&nbsp;Additions between versions</a></div>
@@ -117,7 +117,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.4.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.4.html
new file mode 100644
index 0000000..98cc7ed
--- /dev/null
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.4.html
@@ -0,0 +1,49 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "../xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+   <head>
+      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+      <link rel="stylesheet" type="text/css" href="../css/ot.css" />
+      <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
+      <title>OT/J Language Definition v1.3.1</title>
+   </head>
+   <body class="otdt">
+      <div id="content">
+         <table class="nav">
+            <tr>
+               <td class="back"><a id="top"></a><a href="sB.2.3.html" rel="prev">&lt;&lt;&nbsp;&sect;B.2.(3)&nbsp;Between OTJLD 1.2 and OTJLD 1.3</a></td>
+               <td class="top"><a href="index.html" rel="contents">&uarr;&nbsp;Table of Contents&nbsp;&uarr;</a></td>
+               <td class="next"></td>
+            </tr>
+         </table>
+         <div class="breadcrumb"><a class="nav" href="sB.html" rel="section">&sect;B&nbsp;Changes between versions</a>&nbsp;&gt;&nbsp;<a class="nav" href="sB.2.html" rel="section">&sect;B.2&nbsp;Additions between versions</a></div>
+         <div class="subsect depth3" id="sB.2.4">
+            <h4 class="subsect">&sect;B.2.(4)&nbsp;<span class="title">After OTJLD 1.3</span><a class="img" href="sB.2.4.html" title="PermaLink to (4)&nbsp;After OTJLD 1.3"><img style="vertical-align:text-top;margin-left:5px;" src="../images/permalink.png"
+                       alt="" /></a></h4>
+            <ul>
+               <li><a href="s4.1.i.html" title="&sect;4.1.(i)&nbsp;Callin to constructor"
+                     class="sect">&sect;4.1.(i)</a>: 
+                  					<strong>Callin to constructor</strong><p>
+                     						A callin after binding can now be applied to a constructor of the base class, too. 
+                     					
+                  </p>
+               </li>
+            </ul>
+         </div>
+         <table class="nav">
+            <tr>
+               <td class="back"><a href="sB.2.3.html" rel="prev">&lt;&lt;&nbsp;&sect;B.2.(3)&nbsp;Between OTJLD 1.2 and OTJLD 1.3</a></td>
+               <td class="top"><a href="index.html" rel="contents">&uarr;&nbsp;Table of Contents&nbsp;&uarr;</a></td>
+               <td class="next"></td>
+            </tr>
+         </table>
+         <div class="breadcrumb"><a class="nav" href="sB.html" rel="section">&sect;B&nbsp;Changes between versions</a>&nbsp;&gt;&nbsp;<a class="nav" href="sB.2.html" rel="section">&sect;B.2&nbsp;Additions between versions</a></div>
+      </div>
+      <div id="footer">
+         <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
+            shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
+                 width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
+      </div>
+   </body>
+</html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.html
index 91d2ea0..9e856eb 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.2.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -246,6 +246,19 @@
                   </li>
                </ul>
             </div>
+            <div class="subsect depth3" id="sB.2.4">
+               <h4 class="subsect">(4)&nbsp;<span class="title">After OTJLD 1.3</span><a class="img" href="sB.2.4.html" title="PermaLink to (4)&nbsp;After OTJLD 1.3"><img style="vertical-align:text-top;margin-left:5px;" src="../images/permalink.png"
+                          alt="" /></a></h4>
+               <ul>
+                  <li><a href="s4.1.i.html" title="&sect;4.1.(i)&nbsp;Callin to constructor"
+                        class="sect">&sect;4.1.(i)</a>: 
+                     					<strong>Callin to constructor</strong><p>
+                        						A callin after binding can now be applied to a constructor of the base class, too. 
+                        					
+                     </p>
+                  </li>
+               </ul>
+            </div>
          </div>
          <table class="nav">
             <tr>
@@ -260,7 +273,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.html
index 2468859..50dbbd3 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/otjld/xdef/sB.html
@@ -5,7 +5,7 @@
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <link rel="stylesheet" type="text/css" href="../css/ot.css" />
       <link rel="stylesheet" type="text/css" href="../css/otjld.css" />
-      <title>OT/J Language Definition v1.3</title>
+      <title>OT/J Language Definition v1.3.1</title>
    </head>
    <body class="otdt">
       <div id="content">
@@ -469,6 +469,19 @@
                      </li>
                   </ul>
                </div>
+               <div class="subsect depth3" id="sB.2.4">
+                  <h4 class="subsect">(4)&nbsp;<span class="title">After OTJLD 1.3</span><a class="img" href="sB.2.4.html" title="PermaLink to (4)&nbsp;After OTJLD 1.3"><img style="vertical-align:text-top;margin-left:5px;" src="../images/permalink.png"
+                             alt="" /></a></h4>
+                  <ul>
+                     <li><a href="s4.1.i.html" title="&sect;4.1.(i)&nbsp;Callin to constructor"
+                           class="sect">&sect;4.1.(i)</a>: 
+                        					<strong>Callin to constructor</strong><p>
+                           						A callin after binding can now be applied to a constructor of the base class, too. 
+                           					
+                        </p>
+                     </li>
+                  </ul>
+               </div>
             </div>
          </div>
          <table class="nav">
@@ -484,7 +497,7 @@
          <hr /><a class="w3c img" href="http://jigsaw.w3.org/css-validator/check/referer"
             shape="rect"><img src="../images/valid-css2-blue.png" alt="Valid CSS!" height="31" width="88" /></a><a class="w3c img" href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="../images/valid-xhtml10-blue.png" alt="Valid XHTML 1.0 Strict" height="31"
                  width="88" /></a><address>&copy; Stephan Herrmann, Christine Hundt, Marco Mosconi</address>
-         			OT/J version 1.3 &mdash; last modified: 2011-05-15
+         			OT/J version 1.3.1 &mdash; last modified: 2013-05-28
       </div>
    </body>
 </html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/refactoring.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/refactoring.html
index b42bb68..5aa4656 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/refactoring.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/refactoring.html
@@ -21,8 +21,12 @@
 			</ul>
 			Additionally, specific refactorings for OT/J are being developed. Currently these are implemented:
 			<ul>
-			<li><b>Extract Callin</b></li>
-			<li><b>Inline Callin</b></li>
+			<li><b>Extract Callin</b><br/>
+				Extract a block of code in a given base method into a role method plus the necessary callin binding.</li>
+			<li><b>Inline Callin</b><br/>
+				Inverse of the above, merge a callin-bound role method into the bound base method.</li>
+			<li><b>Move to Role File</b><br/>
+				Move an in-line role into its own role file <a href="otjld/def/s1.html#s1.2.5"><img src="../images/ot_paragraph.png"> 1.2.5</a></li>
 			</ul>	
   </body>
 </html>
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/toc.xml b/plugins/org.eclipse.objectteams.otdt.doc/guide/toc.xml
index 779ac3d..74f167e 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/toc.xml
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/toc.xml
@@ -39,6 +39,7 @@
 			<topic label="Stepping through OT/J code" href="guide/stepping.html"/>
 		</topic>
 		<topic label="What's new" href="guide/whatsnew.html">
+			<topic label="OTDT 2.2 New&amp;Noteworthy" href="guide/news/new_in_2.2.html"/>
 			<topic label="OTDT 2.1 New&amp;Noteworthy" href="guide/news/new_in_2.1.html"/>
 			<topic label="OTDT 2.0 New&amp;Noteworthy" href="guide/news/new_in_2.0.html"/>
 			<topic label="OTDT 0.7.1 New&amp;Noteworthy" href="guide/news/new_in_0.7.1.html"/>
diff --git a/plugins/org.eclipse.objectteams.otdt.doc/guide/whatsnew.html b/plugins/org.eclipse.objectteams.otdt.doc/guide/whatsnew.html
index 9c8790e..4d7702a 100644
--- a/plugins/org.eclipse.objectteams.otdt.doc/guide/whatsnew.html
+++ b/plugins/org.eclipse.objectteams.otdt.doc/guide/whatsnew.html
@@ -8,6 +8,7 @@
   <body>
     <h2>Changes in the Object Teams Development Tooling are presented per release:</h2>
    	<ul>
+  	  <li><b><a href="news/new_in_2.2.html">OTDT 2.2 New&amp;Noteworthy</a> - "Kepler" Release June 2013</b></li>
   	  <li><b><a href="news/new_in_2.1.html">OTDT 2.1 New&amp;Noteworthy</a> - "Juno" Release June 2012</b></li>
   	  <li><b><a href="news/new_in_2.0.html">OTDT 2.0 New&amp;Noteworthy</a> - "Indigo" Release June 2011</b></li>
   	  <li><b><a href="news/new_in_0.7.1.html">OTDT 0.7.1 New&amp;Noteworthy</a> - Service Release (Incubation) September 2010</b></li>
diff --git a/plugins/org.eclipse.objectteams.otdt.jdt.ui/src/org/eclipse/objectteams/otdt/internal/ui/packageview/PackageExplorerAdaptor/ContentProvider.java b/plugins/org.eclipse.objectteams.otdt.jdt.ui/src/org/eclipse/objectteams/otdt/internal/ui/packageview/PackageExplorerAdaptor/ContentProvider.java
index 130deb0..d7b5f77 100644
--- a/plugins/org.eclipse.objectteams.otdt.jdt.ui/src/org/eclipse/objectteams/otdt/internal/ui/packageview/PackageExplorerAdaptor/ContentProvider.java
+++ b/plugins/org.eclipse.objectteams.otdt.jdt.ui/src/org/eclipse/objectteams/otdt/internal/ui/packageview/PackageExplorerAdaptor/ContentProvider.java
@@ -76,16 +76,24 @@
 	callin Object[] getChildren(Object parentElement) 
     {
         List<Object> children = null;
-		if (parentElement instanceof IOTType)
-		{
-			IJavaElement javaParentElement = ((IOTJavaElement)parentElement).getCorrespondingJavaElement();
+        IOTType otType = null;
+        IJavaElement javaParentElement = null;
+        if (parentElement instanceof IOTType) {
+        	otType = (IOTType) parentElement;
+        	javaParentElement = ((IOTJavaElement)parentElement).getCorrespondingJavaElement();
+        } else if (parentElement instanceof IType) {
+        	// when asked for children of a TreeItem we always get the plain IType (see https://bugs.eclipse.org/355481)
+        	otType = OTModelManager.getOTElement((IType) parentElement);
+        	javaParentElement = (IJavaElement) parentElement;
+        }
+		if (otType != null) {
 			children = new ArrayList<Object>(Arrays.asList(getChildrenAdapted(javaParentElement)));
 			if (isHideRolePackages())
 			{
 				IType[] roleFiles = null;
                 try
                 {
-                    roleFiles = ((IOTType)parentElement).getRoleTypes(IOTType.ROLEFILE);
+                    roleFiles = otType.getRoleTypes(IOTType.ROLEFILE);
                     Util.replaceOTTypes(roleFiles);
                 }
                 catch (JavaModelException ex)
diff --git a/plugins/org.eclipse.objectteams.otdt.refactoring/src/org/eclipse/objectteams/otdt/internal/refactoring/adaptor/ChangeSignatureAdaptor.java b/plugins/org.eclipse.objectteams.otdt.refactoring/src/org/eclipse/objectteams/otdt/internal/refactoring/adaptor/ChangeSignatureAdaptor.java
index d999258..7238713 100644
--- a/plugins/org.eclipse.objectteams.otdt.refactoring/src/org/eclipse/objectteams/otdt/internal/refactoring/adaptor/ChangeSignatureAdaptor.java
+++ b/plugins/org.eclipse.objectteams.otdt.refactoring/src/org/eclipse/objectteams/otdt/internal/refactoring/adaptor/ChangeSignatureAdaptor.java
@@ -37,6 +37,7 @@
 import org.eclipse.jdt.core.dom.rewrite.ListRewrite;
 import org.eclipse.jdt.internal.corext.refactoring.ParameterInfo;
 import org.eclipse.jdt.internal.corext.refactoring.RefactoringCoreMessages;
+import org.eclipse.jdt.internal.corext.refactoring.ReturnTypeInfo;
 import org.eclipse.jdt.internal.corext.refactoring.base.JavaStatusContext;
 import org.eclipse.jdt.internal.corext.refactoring.rename.TempOccurrenceAnalyzer;
 import org.eclipse.jdt.internal.corext.refactoring.structure.CompilationUnitRewrite;
@@ -66,11 +67,13 @@
 	 */
 	protected team class Processor playedBy ChangeSignatureProcessor {
 
-		List getAddedInfos() 			-> List getAddedInfos();
-		List getDeletedInfos()			-> List getDeletedInfos();
-		boolean isOrderSameAsInitial() 	-> boolean isOrderSameAsInitial();
-		List getFParameterInfos() 		-> get List fParameterInfos;
-
+		List getAddedInfos() 				-> List getAddedInfos();
+		List getDeletedInfos()				-> List getDeletedInfos();
+		boolean isOrderSameAsInitial() 		-> boolean isOrderSameAsInitial();
+		boolean isReturnTypeSameAsInitial()-> boolean isReturnTypeSameAsInitial();
+		List getFParameterInfos() 			-> get List fParameterInfos;
+		ReturnTypeInfo getFReturnTypeInfo() -> get ReturnTypeInfo fReturnTypeInfo;
+		
 
 		// FIXME(SH): parameter name result -> error duplicate local variable result
 		OccurrenceUpdate createOccurrenceUpdate(ASTNode node,
@@ -161,11 +164,11 @@
 		protected class MethodSpecUpdate extends OccurrenceUpdate playedBy DeclarationUpdate
 		{
 			
+
 			CompilationUnitRewrite getCompilationUnitRewrite() -> CompilationUnitRewrite getCompilationUnitRewrite();
 
 			ASTRewrite getASTRewrite() -> ASTRewrite getASTRewrite();
 
-			
 			protected MethodSpecUpdate(MethodSpec node, CompilationUnitRewrite cuRewrite, RefactoringStatus refResult)
 			{
 				base(null/*MethodDeclaration*/, cuRewrite, refResult);
@@ -184,6 +187,19 @@
 				return this.fMethodSpec.getName();
 			}
 
+			void changeReturnType() <- replace void changeReturnType();
+
+			@SuppressWarnings("inferredcallout")
+			callin void changeReturnType() {
+			    if (Processor.this.isReturnTypeSameAsInitial())
+			    	return;
+				if (!fMethodSpec.hasSignature()) return;
+			    ReturnTypeInfo returnTypeInfo = Processor.this.getFReturnTypeInfo();
+				replaceTypeNode(this.fMethodSpec.getReturnType2(), returnTypeInfo.getNewTypeName(), returnTypeInfo.getNewTypeBinding());
+				// method spec has no extra dimensions
+		        // orig: removeExtraDimensions(fMethDecl);
+			}
+
 			void changeJavadocTags() <- replace void changeJavadocTags();
 
 			callin void changeJavadocTags() {
@@ -246,12 +262,14 @@
 				}
 				// collect these pieces of information:
 				List otherSideArguments;	// arguments of the mapping side that is not affected by this refactoring
-				boolean isRoleSide;			// whether the affect method spec is on the role side
+				boolean isRoleSide;			// whether the affected method spec is on the role side
+				boolean isSourceSide;		// whether the affected method spec points to the source of the data flow
 				String parMapDirection;		// either of "->" or "<-"
 				ChildListPropertyDescriptor parMapProp; // descriptor denoting the parameter mappings property within 'mapping'
 				if (mapping.getNodeType() == ASTNode.CALLIN_MAPPING_DECLARATION) {
 					parMapProp = CallinMappingDeclaration.PARAMETER_MAPPINGS_PROPERTY;
 					isRoleSide = this.fMethodSpec.getLocationInParent() == CallinMappingDeclaration.ROLE_MAPPING_ELEMENT_PROPERTY;
+					isSourceSide = !isRoleSide;
 					if (isRoleSide) {
 						List baseMappingElements = ((CallinMappingDeclaration)mapping).getBaseMappingElements();
 						if (baseMappingElements.size() > 1) {
@@ -266,6 +284,7 @@
 				} else {
 					parMapProp = CalloutMappingDeclaration.PARAMETER_MAPPINGS_PROPERTY;
 					isRoleSide = this.fMethodSpec.getLocationInParent() == CalloutMappingDeclaration.ROLE_MAPPING_ELEMENT_PROPERTY;
+					isSourceSide = isRoleSide;
 					if (isRoleSide) {
 						MethodMappingElement baseMappingElement = ((CalloutMappingDeclaration)mapping).getBaseMappingElement();
 						if (baseMappingElement.getNodeType() == ASTNode.FIELD_ACCESS_SPEC) {
@@ -278,13 +297,14 @@
 					}
 					parMapDirection = "->"; //$NON-NLS-1$
 				}
-				maybeAddParamMappings(mapping, parMapProp, otherSideArguments, getFParameterInfos(), parMapDirection);
+				maybeAddParamMappings(mapping, parMapProp, otherSideArguments, getFParameterInfos(), isSourceSide, parMapDirection);
 			}
 			
 			void maybeAddParamMappings(AbstractMethodMappingDeclaration mapping,
 									   ChildListPropertyDescriptor parMapProp,
 									   List otherSideArguments,
 									   List parameterInfos,
+									   boolean isSourceSide,
 									   String parMapDirection) 
 			{
 				checkRelevance: {
@@ -308,8 +328,13 @@
 					if (oldIndex > -1 && oldIndex < otherSideArguments.size()) {
 						SingleVariableDeclaration arg = (SingleVariableDeclaration) otherSideArguments.get(oldIndex);
 						ParameterMapping parMap = ast.newParameterMapping();
-						parMap.setIdentifier((SimpleName) ASTNode.copySubtree(ast, arg.getName()));
-						parMap.setExpression(ast.newSimpleName(info.getNewName()));
+						if (isSourceSide) {
+							parMap.setExpression(ast.newSimpleName(info.getNewName()));
+							parMap.setIdentifier((SimpleName) ASTNode.copySubtree(ast, arg.getName()));
+						} else {
+							parMap.setIdentifier(ast.newSimpleName(info.getNewName()));
+							parMap.setExpression((SimpleName) ASTNode.copySubtree(ast, arg.getName()));
+						}
 						parMap.setDirection(parMapDirection);
 						parMapRewrite.insertLast(parMap, editGroup);
 					}
diff --git a/plugins/org.eclipse.objectteams.otdt.ui.help/META-INF/MANIFEST.MF b/plugins/org.eclipse.objectteams.otdt.ui.help/META-INF/MANIFEST.MF
index 375ea03..770233e 100644
--- a/plugins/org.eclipse.objectteams.otdt.ui.help/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.objectteams.otdt.ui.help/META-INF/MANIFEST.MF
@@ -23,7 +23,7 @@
  org.eclipse.jdt.core;bundle-version="[3.7.0.v_OTDT_r200,4.0.0)",
  org.eclipse.objectteams.otdt.ui;bundle-version="[2.0.0,3.0.0)",
  org.eclipse.objectteams.otequinox;bundle-version="[2.2.0,3.0.0)",
- org.eclipse.objectteams.otdt.doc;bundle-version="2.1.0"
+ org.eclipse.objectteams.otdt.doc;bundle-version="2.2.0"
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Bundle-ActivationPolicy: lazy
 Bundle-Classpath: .
diff --git a/plugins/org.eclipse.objectteams.otdt.ui.help/cheatsheets/SimpleOTApplication.xml b/plugins/org.eclipse.objectteams.otdt.ui.help/cheatsheets/SimpleOTApplication.xml
index d8daa1c..74b5a62 100644
--- a/plugins/org.eclipse.objectteams.otdt.ui.help/cheatsheets/SimpleOTApplication.xml
+++ b/plugins/org.eclipse.objectteams.otdt.ui.help/cheatsheets/SimpleOTApplication.xml
@@ -30,6 +30,7 @@
 	</item>
 
 	<item
+		href="/org.eclipse.objectteams.otdt.doc/guide/project.html"
 		title="Create an Object Teams Project"
 		skip="true">
 		<action
@@ -85,6 +86,7 @@
 	</item>
 
 	<item
+		href="/org.eclipse.objectteams.otdt.doc/guide/wizards.html"
 		title="Create a Team class"
 		skip="true">
 		<action
@@ -103,6 +105,7 @@
 	</item>
 
 	<item
+		href="/org.eclipse.objectteams.otdt.doc/guide/wizards.html"
 		title="Create a Role class"
 		skip="true">
 		<action
@@ -155,7 +158,7 @@
 	</item>
 
 	<item
-		href="/org.eclipse.jdt.doc.user/gettingStarted/qs-12.htm"
+		href="/org.eclipse.objectteams.otdt.doc/guide/running.html"
 		title="Tutorial finished!">
 		<description>
 			Congratulations! You have built your first Object Teams program. Now let&apos;s run it!
diff --git a/releng/build-scripts/build/OT-Compiler/build.properties b/releng/build-scripts/build/OT-Compiler/build.properties
index afe069b..2381e41 100644
--- a/releng/build-scripts/build/OT-Compiler/build.properties
+++ b/releng/build-scripts/build/OT-Compiler/build.properties
@@ -9,9 +9,14 @@
 # because zip wouldn't find any files to include into the target zip otherwise
 archivePrefix=.
 
+JavaSE-1.7=/shared/common/oracle-jre1.7.0/lib/rt.jar:/shared/common/oracle-jre1.7.0/lib/charsets.jar:/shared/common/oracle-jre1.7.0/lib/deploy.jar:/shared/common/oracle-jre1.7.0/lib/management-agent.jar:/shared/common/oracle-jre1.7.0/lib/alt-rt.jar:/shared/common/oracle-jre1.7.0/lib/plugin.jar:/shared/common/oracle-jre1.7.0/lib/security/US_export_policy.jar:/shared/common/oracle-jre1.7.0/lib/security/local_policy.jar:/shared/common/oracle-jre1.7.0/lib/resources.jar:/shared/common/oracle-jre1.7.0/lib/jsse.jar:/shared/common/oracle-jre1.7.0/lib/jce.jar:/shared/common/oracle-jre1.7.0/lib/javaws.jar
+
 JavaSE-1.6=/opt/public/common/ibm-java-x86_64-60/jre/lib/amd64/default/jclSC160/vm.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/annotation.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/beans.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/java.util.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/jndi.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/logging.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/security.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/sql.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmorb.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmorbapi.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmcfw.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/rt.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/charsets.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/resources.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmpkcs.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmcertpathfw.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmjgssfw.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmjssefw.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmsaslfw.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmjcefw.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmjgssprovider.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmjsseprovider2.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmcertpathprovider.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/ibmxmlcrypto.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/management-agent.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/xml.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/jlm.jar:/opt/public/common/ibm-java-x86_64-60/jre/lib/javascript.jar
+
 J2SE-1.5=/shared/common/jdk-1.5.0-22.x86_64/jre/lib/charsets.jar:/shared/common/jdk-1.5.0-22.x86_64/jre/lib/jce.jar:/shared/common/jdk-1.5.0-22.x86_64/jre/lib/jsse.jar:/shared/common/jdk-1.5.0-22.x86_64/jre/lib/rt.jar
-#J2SE-1.5=/opt/public/common/ibm-java2-ppc64-50/jre/lib/vm.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/core.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/charsets.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/graphics.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/security.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/ibmpkcs.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/ibmorb.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/ibmcfw.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/ibmorbapi.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/ibmjcefw.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/ibmjgssprovider.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/ibmjsseprovider2.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/ibmjaaslm.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/ibmcertpathprovider.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/server.jar:/opt/public/common/ibm-java2-ppc64-50/jre/lib/xml.jar
+
+J2SE-1.4=/shared/common/j2sdk1.4.2_19/jre/lib/rt.jar
+
 
 skipBase=true
 base=${build.root.dir}
@@ -27,3 +32,6 @@
 #skipDirector=true
 p2.metadata.repo.name="Object Teams Updates"
 
+individualSourceBundles=true
+
+generateSourceReferences=true
diff --git a/releng/build-scripts/build/OT-Compiler/customTargets.xml b/releng/build-scripts/build/OT-Compiler/customTargets.xml
index cea1858..e06791f 100644
--- a/releng/build-scripts/build/OT-Compiler/customTargets.xml
+++ b/releng/build-scripts/build/OT-Compiler/customTargets.xml
@@ -16,7 +16,8 @@
 	</condition>

 	<property file="${buildDirectory}/version.properties"/>

 	<property name="buildLabel" value="${buildType}-${featureVersion}"/>

-	<property name="buildId" value="${featureVersion}"/>	

+	<property name="buildId" value="${featureVersion}"/>

+

 	

 	

 	<!-- ===================================================================== -->

diff --git a/releng/build-scripts/build/build.xml b/releng/build-scripts/build/build.xml
index f68ce9f..c66d1fc 100644
--- a/releng/build-scripts/build/build.xml
+++ b/releng/build-scripts/build/build.xml
@@ -50,6 +50,9 @@
 		
 		<!--this property required as of Eclipse 3.0 stream builds > 20031126 -->
 		<property name="buildingOSGi" value="true" />
+		
+        <!--let ecotj be generated into a "safe" location: -->
+        <property name="postingDirectory" value="${build.root.dir}/../ecj" />
 
 		<!--run the pde-build for the specified ${builder} (OT-Compiler or OTDT-Build) -->
 		<ant antfile="build.xml" dir="${baseLocation}/${run.eclipseScriptDir}" />
diff --git a/releng/build-scripts/build/otdt_prerequisites.sh b/releng/build-scripts/build/otdt_prerequisites.sh
index 9ee4018..9d1a057 100644
--- a/releng/build-scripts/build/otdt_prerequisites.sh
+++ b/releng/build-scripts/build/otdt_prerequisites.sh
@@ -21,7 +21,8 @@
 TMPDIR="${BASEDIR}/tmp"
 
 # EXPORT: tmp directory for test files:
-TEST_TMPDIR="${HOME}/tmp"
+#TEST_TMPDIR="${HOME}/tmp"
+TEST_TMPDIR="/tmp/objectteams"
 
 # EXPORT: directory for metadata from previous builds:
 METADATA="${BASEDIR}/metadata"
diff --git a/releng/map/otdt.map.in b/releng/map/otdt.map.in
index 60e1072..e1af027 100644
--- a/releng/map/otdt.map.in
+++ b/releng/map/otdt.map.in
@@ -29,7 +29,7 @@
 !plugin@org.eclipse.objectteams.otdt.earlyui=GIT,repo=git://git.eclipse.org/gitroot/objectteams/org.eclipse.objectteams.git,path=plugins/org.eclipse.objectteams.otdt.earlyui

 !plugin@org.eclipse.objectteams.otdt.metrics.export=GIT,repo=git://git.eclipse.org/gitroot/objectteams/org.eclipse.objectteams.git,path=plugins/org.eclipse.objectteams.otdt.metrics.export

 

-!** OT/J Plugins **!

+!** OT/J Plugins **!
 plugin@org.eclipse.objectteams.otequinox.branding,2.2.0=GIT,repo=git://git.eclipse.org/gitroot/objectteams/org.eclipse.objectteams.git,path=plugins/org.eclipse.objectteams.otequinox.branding,tag=OT_BETA_JAVA8

 plugin@org.eclipse.objectteams.otdt.jdt.ui,2.2.0=GIT,repo=git://git.eclipse.org/gitroot/objectteams/org.eclipse.objectteams.git,path=plugins/org.eclipse.objectteams.otdt.jdt.ui,tag=OT_BETA_JAVA8

 plugin@org.eclipse.objectteams.otdt.ui.help,2.2.0=GIT,repo=git://git.eclipse.org/gitroot/objectteams/org.eclipse.objectteams.git,path=plugins/org.eclipse.objectteams.otdt.ui.help,tag=OT_BETA_JAVA8

diff --git a/testplugins/org.eclipse.objectteams.otdt.tests/formatter/org/eclipse/objectteams/otdt/core/tests/formatter/FormatterTests.java b/testplugins/org.eclipse.objectteams.otdt.tests/formatter/org/eclipse/objectteams/otdt/core/tests/formatter/FormatterTests.java
index 1206bc5..63274ef 100644
--- a/testplugins/org.eclipse.objectteams.otdt.tests/formatter/org/eclipse/objectteams/otdt/core/tests/formatter/FormatterTests.java
+++ b/testplugins/org.eclipse.objectteams.otdt.tests/formatter/org/eclipse/objectteams/otdt/core/tests/formatter/FormatterTests.java
@@ -234,4 +234,8 @@
 	public void testBaseCall() {
 		runTest("testBaseCall", "MyTeam.java");
 	}
+
+	public void testTeamLayering() {
+		runTest("testTeamLayering", "R2.java");
+	}
 }
diff --git a/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/AllTests.java b/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/AllTests.java
index 4114362..cecec70 100644
--- a/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/AllTests.java
+++ b/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/AllTests.java
@@ -34,6 +34,7 @@
 import org.eclipse.objectteams.otdt.tests.otjld.other.Misc;
 import org.eclipse.objectteams.otdt.tests.otjld.other.Modifiers;
 import org.eclipse.objectteams.otdt.tests.otjld.regression.CompilationOrder;
+import org.eclipse.objectteams.otdt.tests.otjld.regression.ComplexStructures;
 import org.eclipse.objectteams.otdt.tests.otjld.regression.DevelopmentExamples;
 import org.eclipse.objectteams.otdt.tests.otjld.regression.ReportedBugs;
 import org.eclipse.objectteams.otdt.tests.otjld.roleplaying.AllBindingAmbiguitiesTests;
@@ -136,6 +137,9 @@
 		/*B.1*/suite.addTest(ReportedBugs.suite());
 		/*B.2*/suite.addTest(CompilationOrder.suite());
 		/*X.2*/suite.addTest(DevelopmentExamples.suite());
+		
+		suite.addTest(ComplexStructures.suite());
+		
 		return suite;
 	}
 }
diff --git a/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/callinbinding/CallinMethodBinding.java b/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/callinbinding/CallinMethodBinding.java
index d4803f2..b81a2ae 100644
--- a/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/callinbinding/CallinMethodBinding.java
+++ b/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/callinbinding/CallinMethodBinding.java
@@ -7852,7 +7852,7 @@
 			"1. ERROR in Team4146ctc1.java (at line 4)\n" + 
 			"	print <- before T4146ctc1;\n" + 
 			"	                ^^^^^^^^^\n" + 
-			"Callin binding to constructor \'T4146ctc1()\' must use the callin modifier \"after\" (OTJLD 4.1(h)). \n" + 
+			"Callin binding to constructor \'T4146ctc1()\' must use the callin modifier \"after\" (OTJLD 4.1(i)). \n" + 
 			"----------\n");
     }
 
diff --git a/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/regression/ComplexStructures.java b/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/regression/ComplexStructures.java
new file mode 100644
index 0000000..d5292d9
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/regression/ComplexStructures.java
@@ -0,0 +1,82 @@
+/**********************************************************************
+ * This file is part of "Object Teams Development Tooling"-Software
+ * 
+ * Copyright 2013 GK Software AG.
+ * 
+ * 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
+ * 
+ * Please visit http://www.eclipse.org/objectteams for updates and contact.
+ * 
+ * Contributors:
+ * 	  Stephan Herrmann - Initial API and implementation
+ **********************************************************************/
+package org.eclipse.objectteams.otdt.tests.otjld.regression;
+
+import junit.framework.Test;
+
+import org.eclipse.objectteams.otdt.tests.otjld.AbstractOTJLDTest;
+
+public class ComplexStructures extends AbstractOTJLDTest {
+	
+	public ComplexStructures(String name) {
+		super(name);
+	}
+
+	// Static initializer to specify tests subset using TESTS_* static variables
+	// All specified tests which do not belong to the class are skipped...
+	static {
+//		TESTS_NAMES = new String[] { "testBug391876"};
+//		TESTS_NUMBERS = new int[] { 1459 };
+//		TESTS_RANGE = new int[] { 1097, -1 };
+	}
+
+	public static Test suite() {
+		return buildComparableTestSuite(testClass());
+	}
+
+	public static Class testClass() {
+		return ComplexStructures.class;
+	}
+	
+	public void testRoleCtor01() {
+		runConformTest(
+			new String[] {
+				"SomeTeam.java",
+				"public team class SomeTeam {\n" + 
+				"\n" + 
+				"	public class BGraph {\n" + 
+				"		public BGraph() { }\n" + 
+				"	}\n" + 
+				"\n" + 
+				"\n" + 
+				"	public void test() {\n" + 
+				"		final Features f = new Features();\n" + 
+				"		BasicGraph<@f> g3 = f.newBasicGraphException();\n" + 
+				"		g3.print();\n" + 
+				"	}\n" + 
+				"\n" + 
+				"	public team class Features {\n" + 
+				"		protected BasicGraph newBasicGraphException() {\n" + 
+				"			return new BasicGraph();\n" + 
+				"		}\n" + 
+				"\n" + 
+				"		public team class BasicGraph playedBy BGraph {\n" + 
+				"			public BasicGraph() { base(); }\n" + 
+				"\n" + 
+				"			public void print() {\n" + 
+				"				System.out.println(\"I am a basic graph ...\");\n" + 
+				"			}\n" + 
+				"		}\n" + 
+				"	}\n" + 
+				"\n" + 
+				"	public static void main(String[] args) {\n" + 
+				"		new SomeTeam().test();\n" + 
+				"	}\n" + 
+				"}\n"
+			},
+			"I am a basic graph ...");
+	}
+}
diff --git a/testplugins/org.eclipse.objectteams.otdt.tests/workspace/Formatter/testTeamLayering/R2_in.java b/testplugins/org.eclipse.objectteams.otdt.tests/workspace/Formatter/testTeamLayering/R2_in.java
new file mode 100644
index 0000000..636dacb
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.tests/workspace/Formatter/testTeamLayering/R2_in.java
@@ -0,0 +1,9 @@
+team package T2;
+
+import base bug382187.base.MyBase;
+
+/**
+ * @author stephan
+ */
+protected class R2 playedBy R<@t1> { void foo( ) {} foo 
+<- after rmeth; void rmeth() -> void rmeth(); }
\ No newline at end of file
diff --git a/testplugins/org.eclipse.objectteams.otdt.tests/workspace/Formatter/testTeamLayering/R2_out.java b/testplugins/org.eclipse.objectteams.otdt.tests/workspace/Formatter/testTeamLayering/R2_out.java
new file mode 100644
index 0000000..f8013ab
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.tests/workspace/Formatter/testTeamLayering/R2_out.java
@@ -0,0 +1,15 @@
+team package T2;
+
+import base bug382187.base.MyBase;
+
+/**
+ * @author stephan
+ */
+protected class R2 playedBy R<@t1> {
+	void foo() {
+	}
+
+	foo <- after rmeth;
+
+	void rmeth() -> void rmeth();
+}
\ No newline at end of file
diff --git a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/src/org/eclipse/objectteams/otdt/ui/tests/refactoring/misc/ChangeSignatureTests.java b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/src/org/eclipse/objectteams/otdt/ui/tests/refactoring/misc/ChangeSignatureTests.java
index 91f0f88..b5bd1b6 100644
--- a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/src/org/eclipse/objectteams/otdt/ui/tests/refactoring/misc/ChangeSignatureTests.java
+++ b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/src/org/eclipse/objectteams/otdt/ui/tests/refactoring/misc/ChangeSignatureTests.java
@@ -320,6 +320,35 @@
 		return -1;
 	}
 
+	private void helperChangeReturn(String[] signature, String newReturnType, boolean createDelegate, boolean expectError) throws Exception{
+		ICompilationUnit cu= createCUfromTestFile(getPackageP(), true, true);
+		IType classA= getType(cu, "A");
+		IMethod method = classA.getMethod("m", signature);
+		assertTrue("method does not exist", method.exists());
+		assertTrue("refactoring not available", RefactoringAvailabilityTester.isChangeSignatureAvailable(method));
+
+		ChangeSignatureProcessor processor= new ChangeSignatureProcessor(method);
+		Refactoring ref= new ProcessorBasedRefactoring(processor);
+
+		processor.setDelegateUpdating(createDelegate);
+		processor.setNewReturnTypeName(newReturnType);
+		ref.checkInitialConditions(new NullProgressMonitor());
+		RefactoringStatus result= performRefactoring(ref, true);
+		if (expectError) {
+			assertNotNull("precondition was supposed to have an error", result);
+			assertFalse("result was not supposed to be OK", result.isOK());
+		} else {
+			assertEquals("precondition was supposed to pass", null, result);			
+		}
+
+		IPackageFragment pack= (IPackageFragment)cu.getParent();
+		String newCuName= getSimpleTestFileName(true, true);
+		ICompilationUnit newcu= pack.getCompilationUnit(newCuName);
+		assertTrue(newCuName + " does not exist", newcu.exists());
+		String expectedFileContents= getFileContents(getTestFileName(true, false));
+		assertEqualLines(expectedFileContents, newcu.getSource());
+	}
+
 	private void markAsDeleted(List list, int[] deleted) {
 		if (deleted == null)
 			return;
@@ -329,7 +358,7 @@
 	}
 
 	// add argument at base side of callin
-	public void testAdd01()throws Exception{
+	public void testAdd01() throws Exception{
 		String[] signature= {"I"};
 		String[] newNames= {"x"};
 		String[] newTypes= {"int"};
@@ -405,6 +434,10 @@
 		helperPermute(new String[]{"ignore", "b", "a"}, new String[]{"I", "Z", "QString;"}, false);
 	}
 
+	public void testReorder02() throws Exception {
+		helperPermute(new String[]{"string", "object", "i", "myRole"}, new String[]{"QString;", "I", "QObject;", "QA;"}, false);
+	}
+
 	public void testRename01() throws Exception {
 		ICompilationUnit cu= createCUfromTestFile(getPackageP(), true, true);
 		IType teamType = cu.getType("MyTeam");
@@ -423,4 +456,8 @@
 		ILocalVariable argument = method.getParameters()[0];
 		helperRegularRename("renamed", true, argument, cu, testFolder+simpleOutFileName);
 	}
-}
+
+	public void testToVoid01() throws Exception {
+		helperChangeReturn(new String[]{"QString;", "I", "QObject;", "QA;"}, "void", false, true/*expect error*/);
+	}
+}
\ No newline at end of file
diff --git a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/src/org/eclipse/objectteams/otdt/ui/tests/refactoring/rolefile/MoveToRileFileTests.java b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/src/org/eclipse/objectteams/otdt/ui/tests/refactoring/rolefile/MoveToRileFileTests.java
index d45c3f0..e27c9c5 100644
--- a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/src/org/eclipse/objectteams/otdt/ui/tests/refactoring/rolefile/MoveToRileFileTests.java
+++ b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/src/org/eclipse/objectteams/otdt/ui/tests/refactoring/rolefile/MoveToRileFileTests.java
@@ -174,6 +174,10 @@
 		performMoveToRoleFile_pass("T", "R2", new String[] { "T", "T/R2" });
 	}
 	
+	public void testFieldAndRole() throws Exception {
+		performMoveToRoleFile_pass("T2", "R2", new String[] { "T2", "T2/R2" });
+	}
+
 	public void testNotARole() throws Exception {
 		performMoveToRoleFile_initialChecksFailing("T", "R", "The selected type 'R' is not a role class.");
 	}
diff --git a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ChangeSignature/canModify/A_testReorder02_in.java b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ChangeSignature/canModify/A_testReorder02_in.java
new file mode 100644
index 0000000..69d3a7c
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ChangeSignature/canModify/A_testReorder02_in.java
@@ -0,0 +1,14 @@
+class MyBase {
+	int hasManyArgs(String s, int i, Object o, MyBase b) { return 0; }
+}
+
+public team class MyTeam {
+	protected class A playedBy MyBase {
+
+		int m(String string, int i, Object object, A myRole) <- after int hasManyArgs(String s, int i, Object o, MyBase b);
+
+		private int m(String string, int i, Object object, A myRole) {
+			return 0;
+		}
+	}
+}
\ No newline at end of file
diff --git a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ChangeSignature/canModify/A_testReorder02_out.java b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ChangeSignature/canModify/A_testReorder02_out.java
new file mode 100644
index 0000000..16a3bbc
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ChangeSignature/canModify/A_testReorder02_out.java
@@ -0,0 +1,19 @@
+class MyBase {
+	int hasManyArgs(String s, int i, Object o, MyBase b) { return 0; }
+}
+
+public team class MyTeam {
+	protected class A playedBy MyBase {
+
+		int m(String string, Object object, int i, A myRole) <- after int hasManyArgs(String s, int i, Object o, MyBase b) with {
+			string <- s,
+			object <- o,
+			i <- i,
+			myRole <- b
+		}
+
+		private int m(String string, Object object, int i, A myRole) {
+			return 0;
+		}
+	}
+}
\ No newline at end of file
diff --git a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ChangeSignature/canModify/A_testToVoid01_in.java b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ChangeSignature/canModify/A_testToVoid01_in.java
new file mode 100644
index 0000000..69d3a7c
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ChangeSignature/canModify/A_testToVoid01_in.java
@@ -0,0 +1,14 @@
+class MyBase {
+	int hasManyArgs(String s, int i, Object o, MyBase b) { return 0; }
+}
+
+public team class MyTeam {
+	protected class A playedBy MyBase {
+
+		int m(String string, int i, Object object, A myRole) <- after int hasManyArgs(String s, int i, Object o, MyBase b);
+
+		private int m(String string, int i, Object object, A myRole) {
+			return 0;
+		}
+	}
+}
\ No newline at end of file
diff --git a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ChangeSignature/canModify/A_testToVoid01_out.java b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ChangeSignature/canModify/A_testToVoid01_out.java
new file mode 100644
index 0000000..f4f54a4
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ChangeSignature/canModify/A_testToVoid01_out.java
@@ -0,0 +1,14 @@
+class MyBase {
+	int hasManyArgs(String s, int i, Object o, MyBase b) { return 0; }
+}
+
+public team class MyTeam {
+	protected class A playedBy MyBase {
+
+		void m(String string, int i, Object object, A myRole) <- after int hasManyArgs(String s, int i, Object o, MyBase b);
+
+		private void m(String string, int i, Object object, A myRole) {
+			return 0;
+		}
+	}
+}
\ No newline at end of file
diff --git a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/MoveToRileFile/testFieldAndRole/in/T2.java b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/MoveToRileFile/testFieldAndRole/in/T2.java
new file mode 100644
index 0000000..2173658
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/MoveToRileFile/testFieldAndRole/in/T2.java
@@ -0,0 +1,48 @@
+package p;
+
+/**
+ * This team is already documented.
+ * @author stephan
+ */
+public team class T2 {
+
+	public final T1 t1;
+
+	void wurd() {
+	};
+
+	public T2(T1 t1) {
+		this.t1 = t1;
+	}
+
+	protected class R2 playedBy R<@t1> {
+		void foo() {
+		}
+
+		foo <- after rmeth;
+
+		void rmeth() -> void rmeth();
+	}
+}
+
+team class T1 {
+	public class R playedBy MyBase {
+		void rmeth() {
+		}
+
+		int hasManyArgs(String s, int i, Object o, MyBase b) -> int hasManyArgs(
+				String s, int i, Object o, MyBase b);
+
+	}
+}
+class MyBase {
+	String name;
+
+	public MyBase(String name) {
+		this.name = name;
+	}
+
+	int hasManyArgs(String s, int i, Object o, MyBase b) {
+		return 0;
+	}
+}
\ No newline at end of file
diff --git a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/MoveToRileFile/testFieldAndRole/out/T2.java b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/MoveToRileFile/testFieldAndRole/out/T2.java
new file mode 100644
index 0000000..aa45f63
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/MoveToRileFile/testFieldAndRole/out/T2.java
@@ -0,0 +1,40 @@
+package p;
+
+/**
+ * This team is already documented.
+ * @author stephan
+ * @role R2
+ */
+public team class T2 {
+
+	public final T1 t1;
+
+	void wurd() {
+	};
+
+	public T2(T1 t1) {
+		this.t1 = t1;
+	}
+}
+
+team class T1 {
+	public class R playedBy MyBase {
+		void rmeth() {
+		}
+
+		int hasManyArgs(String s, int i, Object o, MyBase b) -> int hasManyArgs(
+				String s, int i, Object o, MyBase b);
+
+	}
+}
+class MyBase {
+	String name;
+
+	public MyBase(String name) {
+		this.name = name;
+	}
+
+	int hasManyArgs(String s, int i, Object o, MyBase b) {
+		return 0;
+	}
+}
\ No newline at end of file
diff --git a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/MoveToRileFile/testFieldAndRole/out/T2/R2.java b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/MoveToRileFile/testFieldAndRole/out/T2/R2.java
new file mode 100644
index 0000000..94159e9
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/MoveToRileFile/testFieldAndRole/out/T2/R2.java
@@ -0,0 +1,13 @@
+/**
+ * Object Teams Test File Header
+ */
+team package p.T2;
+
+protected class R2 playedBy R<@t1> {
+	void foo() {
+	}
+
+	foo <- after rmeth;
+
+	void rmeth() -> void rmeth();
+}
\ No newline at end of file