diff --git a/src/main/java/org/refactoringminer/astDiff/matchers/statement/LeafMatcher.java b/src/main/java/org/refactoringminer/astDiff/matchers/statement/LeafMatcher.java index 8524815959..f937eb553c 100644 --- a/src/main/java/org/refactoringminer/astDiff/matchers/statement/LeafMatcher.java +++ b/src/main/java/org/refactoringminer/astDiff/matchers/statement/LeafMatcher.java @@ -146,6 +146,7 @@ public MoveOptimizedIsomorphic() { mappings.addMappingRecursively(src,dst); return mappings; } + , new IdenticalSubtreeMatcherThetaA() , new LcsOptMatcherThetaB() , new UnmappedLeavesMatcherThetaC() , new InnerNodesMatcherThetaD() diff --git a/src/main/java/org/refactoringminer/astDiff/matchers/vanilla/MissingIdenticalSubtree.java b/src/main/java/org/refactoringminer/astDiff/matchers/vanilla/MissingIdenticalSubtree.java index 3f04ba1352..c4bef54546 100644 --- a/src/main/java/org/refactoringminer/astDiff/matchers/vanilla/MissingIdenticalSubtree.java +++ b/src/main/java/org/refactoringminer/astDiff/matchers/vanilla/MissingIdenticalSubtree.java @@ -135,6 +135,10 @@ else if (src.getType().name.equals(Constants.CLASS_INSTANCE_CREATION)) ret = true; else if (src.getType().name.equals(Constants.IMPORT_DECLARATION)) ret = true; + else if (TreeUtilFunctions.isPartOf(src, Constants.JAVA_DOC)) + ret = true; + else if(src.getType().name.equals(Constants.LINE_COMMENT) || src.getType().name.equals(Constants.BLOCK_COMMENT)) + ret = true; else { ret = false; } diff --git a/src/main/java/org/refactoringminer/astDiff/utils/MappingExportModel.java b/src/main/java/org/refactoringminer/astDiff/utils/MappingExportModel.java index 563f676893..b809455d3c 100644 --- a/src/main/java/org/refactoringminer/astDiff/utils/MappingExportModel.java +++ b/src/main/java/org/refactoringminer/astDiff/utils/MappingExportModel.java @@ -193,6 +193,10 @@ public static String exportString(Iterable mappings) throws JsonProcess public static void exportToFile(File outputFile, Iterable mappings) throws IOException { List mappingExportModels = exportModelList(mappings); ObjectMapper objectMapper = new ObjectMapper(); + if (!outputFile.exists()) { + outputFile.getParentFile().mkdirs(); + outputFile.createNewFile(); + } objectMapper.writerWithDefaultPrettyPrinter().writeValue(outputFile, mappingExportModels); } diff --git a/src/main/java/org/refactoringminer/astDiff/utils/TreeUtilFunctions.java b/src/main/java/org/refactoringminer/astDiff/utils/TreeUtilFunctions.java index 28b714615a..b685a6cc66 100644 --- a/src/main/java/org/refactoringminer/astDiff/utils/TreeUtilFunctions.java +++ b/src/main/java/org/refactoringminer/astDiff/utils/TreeUtilFunctions.java @@ -213,6 +213,12 @@ public static void writeTree(Tree tree, String filePath) { throw new RuntimeException(e); } } + public static boolean isPartOf(Tree srcSubTree, String type) { + if (srcSubTree.getType().name.equals(type)) + return true; + if (srcSubTree.getParent() == null) return false; + return isPartOf(srcSubTree.getParent(), type); + } public static boolean isStatement(String type){ switch (type){ diff --git a/src/test/java/org/refactoringminer/astDiff/utils/dataset/runners/AddCommand.java b/src/test/java/org/refactoringminer/astDiff/utils/dataset/runners/AddCommand.java index c13bb77f83..af832d677b 100644 --- a/src/test/java/org/refactoringminer/astDiff/utils/dataset/runners/AddCommand.java +++ b/src/test/java/org/refactoringminer/astDiff/utils/dataset/runners/AddCommand.java @@ -30,7 +30,7 @@ public class AddCommand extends BaseCommand { required = false) private Set files; - @Parameter(names = "-snapshot", description = "Snapshot option", required = false) + @Parameter(names = "--snapshot", description = "Snapshot option", required = false) private boolean isSnapshot; public boolean isSnapshot() { diff --git a/src/test/resources/astDiff/PREV-SNAPSHOT/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.consumer.AbstractMessageHandler.json b/src/test/resources/astDiff/PREV-SNAPSHOT/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.consumer.AbstractMessageHandler.json deleted file mode 100644 index 48fa7f18c1..0000000000 --- a/src/test/resources/astDiff/PREV-SNAPSHOT/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.consumer.AbstractMessageHandler.json +++ /dev/null @@ -1,5754 +0,0 @@ -[ { - "firstType" : "CompilationUnit", - "secondType" : "CompilationUnit", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "", - "secondParentType" : "", - "firstPos" : 0, - "secondPos" : 0, - "firstEndPos" : 5196, - "secondEndPos" : 5293 -}, { - "firstType" : "PackageDeclaration", - "secondType" : "PackageDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 0, - "secondPos" : 0, - "firstEndPos" : 853, - "secondEndPos" : 853 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "PackageDeclaration", - "secondParentType" : "PackageDeclaration", - "firstPos" : 0, - "secondPos" : 0, - "firstEndPos" : 803, - "secondEndPos" : 803 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 7, - "secondPos" : 7, - "firstEndPos" : 799, - "secondEndPos" : 799 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Licensed to the Apache Software Foundation (ASF) under one or more", - "secondLabel" : "Licensed to the Apache Software Foundation (ASF) under one or more", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 7, - "secondPos" : 7, - "firstEndPos" : 73, - "secondEndPos" : 73 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "contributor license agreements. See the NOTICE file distributed with", - "secondLabel" : "contributor license agreements. See the NOTICE file distributed with", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 77, - "secondPos" : 77, - "firstEndPos" : 146, - "secondEndPos" : 146 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "this work for additional information regarding copyright ownership.", - "secondLabel" : "this work for additional information regarding copyright ownership.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 150, - "secondPos" : 150, - "firstEndPos" : 217, - "secondEndPos" : 217 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "The ASF licenses this file to You under the Apache License, Version 2.0", - "secondLabel" : "The ASF licenses this file to You under the Apache License, Version 2.0", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 221, - "secondPos" : 221, - "firstEndPos" : 292, - "secondEndPos" : 292 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "(the \"License\"); you may not use this file except in compliance with", - "secondLabel" : "(the \"License\"); you may not use this file except in compliance with", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 296, - "secondPos" : 296, - "firstEndPos" : 364, - "secondEndPos" : 364 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "the License. You may obtain a copy of the License at", - "secondLabel" : "the License. You may obtain a copy of the License at", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 368, - "secondPos" : 368, - "firstEndPos" : 421, - "secondEndPos" : 421 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "http://www.apache.org/licenses/LICENSE-2.0", - "secondLabel" : "http://www.apache.org/licenses/LICENSE-2.0", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 433, - "secondPos" : 433, - "firstEndPos" : 475, - "secondEndPos" : 475 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Unless required by applicable law or agreed to in writing, software", - "secondLabel" : "Unless required by applicable law or agreed to in writing, software", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 482, - "secondPos" : 482, - "firstEndPos" : 549, - "secondEndPos" : 549 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "distributed under the License is distributed on an \"AS IS\" BASIS,", - "secondLabel" : "distributed under the License is distributed on an \"AS IS\" BASIS,", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 553, - "secondPos" : 553, - "firstEndPos" : 618, - "secondEndPos" : 618 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", - "secondLabel" : "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 622, - "secondPos" : 622, - "firstEndPos" : 694, - "secondEndPos" : 694 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "See the License for the specific language governing permissions and", - "secondLabel" : "See the License for the specific language governing permissions and", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 698, - "secondPos" : 698, - "firstEndPos" : 765, - "secondEndPos" : 765 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "limitations under the License.", - "secondLabel" : "limitations under the License.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 769, - "secondPos" : 769, - "firstEndPos" : 799, - "secondEndPos" : 799 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.component.sjms.consumer", - "secondLabel" : "org.apache.camel.component.sjms.consumer", - "firstParentType" : "PackageDeclaration", - "secondParentType" : "PackageDeclaration", - "firstPos" : 812, - "secondPos" : 812, - "firstEndPos" : 852, - "secondEndPos" : 852 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 855, - "secondPos" : 855, - "firstEndPos" : 899, - "secondEndPos" : 899 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.util.concurrent.ExecutorService", - "secondLabel" : "java.util.concurrent.ExecutorService", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 862, - "secondPos" : 862, - "firstEndPos" : 898, - "secondEndPos" : 898 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 900, - "secondPos" : 900, - "firstEndPos" : 925, - "secondEndPos" : 925 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.Message", - "secondLabel" : "javax.jms.Message", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 907, - "secondPos" : 907, - "firstEndPos" : 924, - "secondEndPos" : 924 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 926, - "secondPos" : 926, - "firstEndPos" : 959, - "secondEndPos" : 959 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.MessageListener", - "secondLabel" : "javax.jms.MessageListener", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 933, - "secondPos" : 933, - "firstEndPos" : 958, - "secondEndPos" : 958 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 960, - "secondPos" : 960, - "firstEndPos" : 985, - "secondEndPos" : 985 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.Session", - "secondLabel" : "javax.jms.Session", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 967, - "secondPos" : 967, - "firstEndPos" : 984, - "secondEndPos" : 984 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 987, - "secondPos" : 987, - "firstEndPos" : 1026, - "secondEndPos" : 1026 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.AsyncProcessor", - "secondLabel" : "org.apache.camel.AsyncProcessor", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 994, - "secondPos" : 994, - "firstEndPos" : 1025, - "secondEndPos" : 1025 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1027, - "secondPos" : 1027, - "firstEndPos" : 1060, - "secondEndPos" : 1060 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.Exchange", - "secondLabel" : "org.apache.camel.Exchange", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1034, - "secondPos" : 1034, - "firstEndPos" : 1059, - "secondEndPos" : 1059 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1061, - "secondPos" : 1061, - "firstEndPos" : 1107, - "secondEndPos" : 1107 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.RuntimeCamelException", - "secondLabel" : "org.apache.camel.RuntimeCamelException", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1068, - "secondPos" : 1068, - "firstEndPos" : 1106, - "secondEndPos" : 1106 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1108, - "secondPos" : 1108, - "firstEndPos" : 1160, - "secondEndPos" : 1160 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.component.sjms.SjmsEndpoint", - "secondLabel" : "org.apache.camel.component.sjms.SjmsEndpoint", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1115, - "secondPos" : 1115, - "firstEndPos" : 1159, - "secondEndPos" : 1159 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1161, - "secondPos" : 1161, - "firstEndPos" : 1221, - "secondEndPos" : 1221 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.component.sjms.jms.JmsMessageHelper", - "secondLabel" : "org.apache.camel.component.sjms.jms.JmsMessageHelper", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1168, - "secondPos" : 1168, - "firstEndPos" : 1220, - "secondEndPos" : 1220 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1222, - "secondPos" : 1222, - "firstEndPos" : 1267, - "secondEndPos" : 1267 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.impl.DefaultExchange", - "secondLabel" : "org.apache.camel.impl.DefaultExchange", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1229, - "secondPos" : 1229, - "firstEndPos" : 1266, - "secondEndPos" : 1266 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1268, - "secondPos" : 1268, - "firstEndPos" : 1312, - "secondEndPos" : 1312 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.spi.Synchronization", - "secondLabel" : "org.apache.camel.spi.Synchronization", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1275, - "secondPos" : 1275, - "firstEndPos" : 1311, - "secondEndPos" : 1311 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1313, - "secondPos" : 1313, - "firstEndPos" : 1337, - "secondEndPos" : 1337 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.slf4j.Logger", - "secondLabel" : "org.slf4j.Logger", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1320, - "secondPos" : 1320, - "firstEndPos" : 1336, - "secondEndPos" : 1336 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1338, - "secondPos" : 1338, - "firstEndPos" : 1369, - "secondEndPos" : 1369 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.slf4j.LoggerFactory", - "secondLabel" : "org.slf4j.LoggerFactory", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1345, - "secondPos" : 1345, - "firstEndPos" : 1368, - "secondEndPos" : 1368 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1371, - "secondPos" : 1371, - "firstEndPos" : 1446, - "secondEndPos" : 1446 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.util.ObjectHelper.wrapRuntimeCamelException", - "secondLabel" : "org.apache.camel.util.ObjectHelper.wrapRuntimeCamelException", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1385, - "secondPos" : 1385, - "firstEndPos" : 1445, - "secondEndPos" : 1445 -}, { - "firstType" : "TypeDeclaration", - "secondType" : "TypeDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1448, - "secondPos" : 1448, - "firstEndPos" : 5195, - "secondEndPos" : 5292 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1448, - "secondPos" : 1448, - "firstEndPos" : 1483, - "secondEndPos" : 1483 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 1455, - "secondPos" : 1455, - "firstEndPos" : 1479, - "secondEndPos" : 1479 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Abstract MessageListener", - "secondLabel" : "Abstract MessageListener", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 1455, - "secondPos" : 1455, - "firstEndPos" : 1479, - "secondEndPos" : 1479 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1484, - "secondPos" : 1484, - "firstEndPos" : 1490, - "secondEndPos" : 1490 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "abstract", - "secondLabel" : "abstract", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1491, - "secondPos" : 1491, - "firstEndPos" : 1499, - "secondEndPos" : 1499 -}, { - "firstType" : "TYPE_DECLARATION_KIND", - "secondType" : "TYPE_DECLARATION_KIND", - "firstLabel" : "class", - "secondLabel" : "class", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1500, - "secondPos" : 1500, - "firstEndPos" : 1505, - "secondEndPos" : 1505 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "AbstractMessageHandler", - "secondLabel" : "AbstractMessageHandler", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1506, - "secondPos" : 1506, - "firstEndPos" : 1528, - "secondEndPos" : 1528 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "MessageListener", - "secondLabel" : "MessageListener", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 1540, - "secondPos" : 1540, - "firstEndPos" : 1555, - "secondEndPos" : 1555 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1540, - "secondPos" : 1540, - "firstEndPos" : 1555, - "secondEndPos" : 1555 -}, { - "firstType" : "FieldDeclaration", - "secondType" : "FieldDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1563, - "secondPos" : 1563, - "firstEndPos" : 1628, - "secondEndPos" : 1628 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "protected", - "secondLabel" : "protected", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1563, - "secondPos" : 1563, - "firstEndPos" : 1572, - "secondEndPos" : 1572 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1573, - "secondPos" : 1573, - "firstEndPos" : 1578, - "secondEndPos" : 1578 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Logger", - "secondLabel" : "Logger", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 1579, - "secondPos" : 1579, - "firstEndPos" : 1585, - "secondEndPos" : 1585 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1579, - "secondPos" : 1579, - "firstEndPos" : 1585, - "secondEndPos" : 1585 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1586, - "secondPos" : 1586, - "firstEndPos" : 1627, - "secondEndPos" : 1627 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "log", - "secondLabel" : "log", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 1586, - "secondPos" : 1586, - "firstEndPos" : 1589, - "secondEndPos" : 1589 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 1592, - "secondPos" : 1592, - "firstEndPos" : 1627, - "secondEndPos" : 1627 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 1592, - "secondPos" : 1592, - "firstEndPos" : 1605, - "secondEndPos" : 1605 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "LoggerFactory", - "secondLabel" : "LoggerFactory", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 1592, - "secondPos" : 1592, - "firstEndPos" : 1605, - "secondEndPos" : 1605 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getLogger", - "secondLabel" : "getLogger", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 1606, - "secondPos" : 1606, - "firstEndPos" : 1615, - "secondEndPos" : 1615 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 1616, - "secondPos" : 1616, - "firstEndPos" : 1626, - "secondEndPos" : 1626 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 1616, - "secondPos" : 1616, - "firstEndPos" : 1626, - "secondEndPos" : 1626 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getClass", - "secondLabel" : "getClass", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 1616, - "secondPos" : 1616, - "firstEndPos" : 1624, - "secondEndPos" : 1624 -}, { - "firstType" : "FieldDeclaration", - "secondType" : "FieldDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1634, - "secondPos" : 1634, - "firstEndPos" : 1673, - "secondEndPos" : 1673 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1634, - "secondPos" : 1634, - "firstEndPos" : 1641, - "secondEndPos" : 1641 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1642, - "secondPos" : 1642, - "firstEndPos" : 1647, - "secondEndPos" : 1647 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "ExecutorService", - "secondLabel" : "ExecutorService", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 1648, - "secondPos" : 1648, - "firstEndPos" : 1663, - "secondEndPos" : 1663 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1648, - "secondPos" : 1648, - "firstEndPos" : 1663, - "secondEndPos" : 1663 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "executor", - "secondLabel" : "executor", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 1664, - "secondPos" : 1664, - "firstEndPos" : 1672, - "secondEndPos" : 1672 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1664, - "secondPos" : 1664, - "firstEndPos" : 1672, - "secondEndPos" : 1672 -}, { - "firstType" : "FieldDeclaration", - "secondType" : "FieldDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1679, - "secondPos" : 1679, - "firstEndPos" : 1709, - "secondEndPos" : 1709 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1679, - "secondPos" : 1679, - "firstEndPos" : 1686, - "secondEndPos" : 1686 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "SjmsEndpoint", - "secondLabel" : "SjmsEndpoint", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 1687, - "secondPos" : 1687, - "firstEndPos" : 1699, - "secondEndPos" : 1699 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1687, - "secondPos" : 1687, - "firstEndPos" : 1699, - "secondEndPos" : 1699 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 1700, - "secondPos" : 1700, - "firstEndPos" : 1708, - "secondEndPos" : 1708 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1700, - "secondPos" : 1700, - "firstEndPos" : 1708, - "secondEndPos" : 1708 -}, { - "firstType" : "FieldDeclaration", - "secondType" : "FieldDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1714, - "secondPos" : 1714, - "firstEndPos" : 1747, - "secondEndPos" : 1747 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1714, - "secondPos" : 1714, - "firstEndPos" : 1721, - "secondEndPos" : 1721 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "AsyncProcessor", - "secondLabel" : "AsyncProcessor", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 1722, - "secondPos" : 1722, - "firstEndPos" : 1736, - "secondEndPos" : 1736 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1722, - "secondPos" : 1722, - "firstEndPos" : 1736, - "secondEndPos" : 1736 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "processor", - "secondLabel" : "processor", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 1737, - "secondPos" : 1737, - "firstEndPos" : 1746, - "secondEndPos" : 1746 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1737, - "secondPos" : 1737, - "firstEndPos" : 1746, - "secondEndPos" : 1746 -}, { - "firstType" : "FieldDeclaration", - "secondType" : "FieldDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1752, - "secondPos" : 1752, - "firstEndPos" : 1776, - "secondEndPos" : 1776 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1752, - "secondPos" : 1752, - "firstEndPos" : 1759, - "secondEndPos" : 1759 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Session", - "secondLabel" : "Session", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 1760, - "secondPos" : 1760, - "firstEndPos" : 1767, - "secondEndPos" : 1767 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1760, - "secondPos" : 1760, - "firstEndPos" : 1767, - "secondEndPos" : 1767 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 1768, - "secondPos" : 1768, - "firstEndPos" : 1775, - "secondEndPos" : 1775 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1768, - "secondPos" : 1768, - "firstEndPos" : 1775, - "secondEndPos" : 1775 -}, { - "firstType" : "FieldDeclaration", - "secondType" : "FieldDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1781, - "secondPos" : 1781, - "firstEndPos" : 1808, - "secondEndPos" : 1808 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1781, - "secondPos" : 1781, - "firstEndPos" : 1788, - "secondEndPos" : 1788 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1789, - "secondPos" : 1789, - "firstEndPos" : 1796, - "secondEndPos" : 1796 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "transacted", - "secondLabel" : "transacted", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 1797, - "secondPos" : 1797, - "firstEndPos" : 1807, - "secondEndPos" : 1807 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1797, - "secondPos" : 1797, - "firstEndPos" : 1807, - "secondEndPos" : 1807 -}, { - "firstType" : "FieldDeclaration", - "secondType" : "FieldDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1813, - "secondPos" : 1813, - "firstEndPos" : 1848, - "secondEndPos" : 1848 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1813, - "secondPos" : 1813, - "firstEndPos" : 1820, - "secondEndPos" : 1820 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1821, - "secondPos" : 1821, - "firstEndPos" : 1828, - "secondEndPos" : 1828 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1829, - "secondPos" : 1829, - "firstEndPos" : 1847, - "secondEndPos" : 1847 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "synchronous", - "secondLabel" : "synchronous", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 1829, - "secondPos" : 1829, - "firstEndPos" : 1840, - "secondEndPos" : 1840 -}, { - "firstType" : "BooleanLiteral", - "secondType" : "BooleanLiteral", - "firstLabel" : "true", - "secondLabel" : "true", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 1843, - "secondPos" : 1843, - "firstEndPos" : 1847, - "secondEndPos" : 1847 -}, { - "firstType" : "FieldDeclaration", - "secondType" : "FieldDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1853, - "secondPos" : 1853, - "firstEndPos" : 1893, - "secondEndPos" : 1893 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1853, - "secondPos" : 1853, - "firstEndPos" : 1860, - "secondEndPos" : 1860 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Synchronization", - "secondLabel" : "Synchronization", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 1861, - "secondPos" : 1861, - "firstEndPos" : 1876, - "secondEndPos" : 1876 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1861, - "secondPos" : 1861, - "firstEndPos" : 1876, - "secondEndPos" : 1876 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "synchronization", - "secondLabel" : "synchronization", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 1877, - "secondPos" : 1877, - "firstEndPos" : 1892, - "secondEndPos" : 1892 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1877, - "secondPos" : 1877, - "firstEndPos" : 1892, - "secondEndPos" : 1892 -}, { - "firstType" : "FieldDeclaration", - "secondType" : "FieldDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1898, - "secondPos" : 1898, - "firstEndPos" : 1920, - "secondEndPos" : 1920 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1898, - "secondPos" : 1898, - "firstEndPos" : 1905, - "secondEndPos" : 1905 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1906, - "secondPos" : 1906, - "firstEndPos" : 1913, - "secondEndPos" : 1913 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "topic", - "secondLabel" : "topic", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 1914, - "secondPos" : 1914, - "firstEndPos" : 1919, - "secondEndPos" : 1919 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 1914, - "secondPos" : 1914, - "firstEndPos" : 1919, - "secondEndPos" : 1919 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1926, - "secondPos" : 1926, - "firstEndPos" : 2080, - "secondEndPos" : 2080 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 1926, - "secondPos" : 1926, - "firstEndPos" : 1932, - "secondEndPos" : 1932 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "AbstractMessageHandler", - "secondLabel" : "AbstractMessageHandler", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 1933, - "secondPos" : 1933, - "firstEndPos" : 1955, - "secondEndPos" : 1955 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 1956, - "secondPos" : 1956, - "firstEndPos" : 1977, - "secondEndPos" : 1977 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "SjmsEndpoint", - "secondLabel" : "SjmsEndpoint", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 1956, - "secondPos" : 1956, - "firstEndPos" : 1968, - "secondEndPos" : 1968 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 1956, - "secondPos" : 1956, - "firstEndPos" : 1968, - "secondEndPos" : 1968 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 1969, - "secondPos" : 1969, - "firstEndPos" : 1977, - "secondEndPos" : 1977 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 1979, - "secondPos" : 1979, - "firstEndPos" : 2003, - "secondEndPos" : 2003 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "ExecutorService", - "secondLabel" : "ExecutorService", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 1979, - "secondPos" : 1979, - "firstEndPos" : 1994, - "secondEndPos" : 1994 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 1979, - "secondPos" : 1979, - "firstEndPos" : 1994, - "secondEndPos" : 1994 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "executor", - "secondLabel" : "executor", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 1995, - "secondPos" : 1995, - "firstEndPos" : 2003, - "secondEndPos" : 2003 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2005, - "secondPos" : 2005, - "firstEndPos" : 2080, - "secondEndPos" : 2080 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2015, - "secondPos" : 2015, - "firstEndPos" : 2040, - "secondEndPos" : 2040 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 2015, - "secondPos" : 2015, - "firstEndPos" : 2039, - "secondEndPos" : 2039 -}, { - "firstType" : "FieldAccess", - "secondType" : "FieldAccess", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2015, - "secondPos" : 2015, - "firstEndPos" : 2028, - "secondEndPos" : 2028 -}, { - "firstType" : "ThisExpression", - "secondType" : "ThisExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 2015, - "secondPos" : 2015, - "firstEndPos" : 2019, - "secondEndPos" : 2019 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 2020, - "secondPos" : 2020, - "firstEndPos" : 2028, - "secondEndPos" : 2028 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2029, - "secondPos" : 2029, - "firstEndPos" : 2030, - "secondEndPos" : 2030 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2031, - "secondPos" : 2031, - "firstEndPos" : 2039, - "secondEndPos" : 2039 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2049, - "secondPos" : 2049, - "firstEndPos" : 2074, - "secondEndPos" : 2074 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 2049, - "secondPos" : 2049, - "firstEndPos" : 2073, - "secondEndPos" : 2073 -}, { - "firstType" : "FieldAccess", - "secondType" : "FieldAccess", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2049, - "secondPos" : 2049, - "firstEndPos" : 2062, - "secondEndPos" : 2062 -}, { - "firstType" : "ThisExpression", - "secondType" : "ThisExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 2049, - "secondPos" : 2049, - "firstEndPos" : 2053, - "secondEndPos" : 2053 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "executor", - "secondLabel" : "executor", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 2054, - "secondPos" : 2054, - "firstEndPos" : 2062, - "secondEndPos" : 2062 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2063, - "secondPos" : 2063, - "firstEndPos" : 2064, - "secondEndPos" : 2064 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "executor", - "secondLabel" : "executor", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2065, - "secondPos" : 2065, - "firstEndPos" : 2073, - "secondEndPos" : 2073 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 2086, - "secondPos" : 2086, - "firstEndPos" : 2321, - "secondEndPos" : 2321 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2086, - "secondPos" : 2086, - "firstEndPos" : 2092, - "secondEndPos" : 2092 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "AbstractMessageHandler", - "secondLabel" : "AbstractMessageHandler", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2093, - "secondPos" : 2093, - "firstEndPos" : 2115, - "secondEndPos" : 2115 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2116, - "secondPos" : 2116, - "firstEndPos" : 2137, - "secondEndPos" : 2137 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "SjmsEndpoint", - "secondLabel" : "SjmsEndpoint", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2116, - "secondPos" : 2116, - "firstEndPos" : 2128, - "secondEndPos" : 2128 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2116, - "secondPos" : 2116, - "firstEndPos" : 2128, - "secondEndPos" : 2128 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2129, - "secondPos" : 2129, - "firstEndPos" : 2137, - "secondEndPos" : 2137 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2139, - "secondPos" : 2139, - "firstEndPos" : 2163, - "secondEndPos" : 2163 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "ExecutorService", - "secondLabel" : "ExecutorService", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2139, - "secondPos" : 2139, - "firstEndPos" : 2154, - "secondEndPos" : 2154 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2139, - "secondPos" : 2139, - "firstEndPos" : 2154, - "secondEndPos" : 2154 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "executor", - "secondLabel" : "executor", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2155, - "secondPos" : 2155, - "firstEndPos" : 2163, - "secondEndPos" : 2163 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2165, - "secondPos" : 2165, - "firstEndPos" : 2196, - "secondEndPos" : 2196 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Synchronization", - "secondLabel" : "Synchronization", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2165, - "secondPos" : 2165, - "firstEndPos" : 2180, - "secondEndPos" : 2180 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2165, - "secondPos" : 2165, - "firstEndPos" : 2180, - "secondEndPos" : 2180 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "synchronization", - "secondLabel" : "synchronization", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2181, - "secondPos" : 2181, - "firstEndPos" : 2196, - "secondEndPos" : 2196 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2198, - "secondPos" : 2198, - "firstEndPos" : 2321, - "secondEndPos" : 2321 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2208, - "secondPos" : 2208, - "firstEndPos" : 2247, - "secondEndPos" : 2247 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 2208, - "secondPos" : 2208, - "firstEndPos" : 2246, - "secondEndPos" : 2246 -}, { - "firstType" : "FieldAccess", - "secondType" : "FieldAccess", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2208, - "secondPos" : 2208, - "firstEndPos" : 2228, - "secondEndPos" : 2228 -}, { - "firstType" : "ThisExpression", - "secondType" : "ThisExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 2208, - "secondPos" : 2208, - "firstEndPos" : 2212, - "secondEndPos" : 2212 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "synchronization", - "secondLabel" : "synchronization", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 2213, - "secondPos" : 2213, - "firstEndPos" : 2228, - "secondEndPos" : 2228 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2229, - "secondPos" : 2229, - "firstEndPos" : 2230, - "secondEndPos" : 2230 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "synchronization", - "secondLabel" : "synchronization", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2231, - "secondPos" : 2231, - "firstEndPos" : 2246, - "secondEndPos" : 2246 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2256, - "secondPos" : 2256, - "firstEndPos" : 2281, - "secondEndPos" : 2281 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 2256, - "secondPos" : 2256, - "firstEndPos" : 2280, - "secondEndPos" : 2280 -}, { - "firstType" : "FieldAccess", - "secondType" : "FieldAccess", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2256, - "secondPos" : 2256, - "firstEndPos" : 2269, - "secondEndPos" : 2269 -}, { - "firstType" : "ThisExpression", - "secondType" : "ThisExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 2256, - "secondPos" : 2256, - "firstEndPos" : 2260, - "secondEndPos" : 2260 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 2261, - "secondPos" : 2261, - "firstEndPos" : 2269, - "secondEndPos" : 2269 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2270, - "secondPos" : 2270, - "firstEndPos" : 2271, - "secondEndPos" : 2271 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2272, - "secondPos" : 2272, - "firstEndPos" : 2280, - "secondEndPos" : 2280 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2290, - "secondPos" : 2290, - "firstEndPos" : 2315, - "secondEndPos" : 2315 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 2290, - "secondPos" : 2290, - "firstEndPos" : 2314, - "secondEndPos" : 2314 -}, { - "firstType" : "FieldAccess", - "secondType" : "FieldAccess", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2290, - "secondPos" : 2290, - "firstEndPos" : 2303, - "secondEndPos" : 2303 -}, { - "firstType" : "ThisExpression", - "secondType" : "ThisExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 2290, - "secondPos" : 2290, - "firstEndPos" : 2294, - "secondEndPos" : 2294 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "executor", - "secondLabel" : "executor", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 2295, - "secondPos" : 2295, - "firstEndPos" : 2303, - "secondEndPos" : 2303 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2304, - "secondPos" : 2304, - "firstEndPos" : 2305, - "secondEndPos" : 2305 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "executor", - "secondLabel" : "executor", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2306, - "secondPos" : 2306, - "firstEndPos" : 2314, - "secondEndPos" : 2314 -}, { - "firstType" : "BlockComment", - "secondType" : "BlockComment", - "firstLabel" : "/*\n * @see javax.jms.MessageListener#onMessage(javax.jms.Message)\n *\n * @param message\n */", - "secondLabel" : "/*\n * @see javax.jms.MessageListener#onMessage(javax.jms.Message)\n *\n * @param message\n */", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 2327, - "secondPos" : 2327, - "firstEndPos" : 2433, - "secondEndPos" : 2433 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 2438, - "secondPos" : 2438, - "firstEndPos" : 4142, - "secondEndPos" : 4239 -}, { - "firstType" : "MarkerAnnotation", - "secondType" : "MarkerAnnotation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2438, - "secondPos" : 2438, - "firstEndPos" : 2447, - "secondEndPos" : 2447 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Override", - "secondLabel" : "Override", - "firstParentType" : "MarkerAnnotation", - "secondParentType" : "MarkerAnnotation", - "firstPos" : 2439, - "secondPos" : 2439, - "firstEndPos" : 2447, - "secondEndPos" : 2447 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2452, - "secondPos" : 2452, - "firstEndPos" : 2458, - "secondEndPos" : 2458 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2459, - "secondPos" : 2459, - "firstEndPos" : 2463, - "secondEndPos" : 2463 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "onMessage", - "secondLabel" : "onMessage", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2464, - "secondPos" : 2464, - "firstEndPos" : 2473, - "secondEndPos" : 2473 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2474, - "secondPos" : 2474, - "firstEndPos" : 2489, - "secondEndPos" : 2489 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2474, - "secondPos" : 2474, - "firstEndPos" : 2481, - "secondEndPos" : 2481 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2474, - "secondPos" : 2474, - "firstEndPos" : 2481, - "secondEndPos" : 2481 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2482, - "secondPos" : 2482, - "firstEndPos" : 2489, - "secondEndPos" : 2489 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2491, - "secondPos" : 2491, - "firstEndPos" : 4142, - "secondEndPos" : 4239 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2501, - "secondPos" : 2501, - "firstEndPos" : 2534, - "secondEndPos" : 2534 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "RuntimeCamelException", - "secondLabel" : "RuntimeCamelException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2501, - "secondPos" : 2501, - "firstEndPos" : 2522, - "secondEndPos" : 2522 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 2501, - "secondPos" : 2501, - "firstEndPos" : 2522, - "secondEndPos" : 2522 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 2523, - "secondPos" : 2523, - "firstEndPos" : 2533, - "secondEndPos" : 2533 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "rce", - "secondLabel" : "rce", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 2523, - "secondPos" : 2523, - "firstEndPos" : 2526, - "secondEndPos" : 2526 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 2529, - "secondPos" : 2529, - "firstEndPos" : 2533, - "secondEndPos" : 2533 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2543, - "secondPos" : 2543, - "firstEndPos" : 4136, - "secondEndPos" : 4233 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 2547, - "secondPos" : 2547, - "firstEndPos" : 3964, - "secondEndPos" : 4061 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2561, - "secondPos" : 2627, - "firstEndPos" : 2668, - "secondEndPos" : 2765 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 2561, - "secondPos" : 2627, - "firstEndPos" : 2566, - "secondEndPos" : 2632 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "DefaultExchange", - "secondLabel" : "DefaultExchange", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2567, - "secondPos" : 2633, - "firstEndPos" : 2582, - "secondEndPos" : 2648 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 2567, - "secondPos" : 2633, - "firstEndPos" : 2582, - "secondEndPos" : 2648 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 2583, - "secondPos" : 2649, - "firstEndPos" : 2667, - "secondEndPos" : 2764 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 2583, - "secondPos" : 2649, - "firstEndPos" : 2591, - "secondEndPos" : 2657 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 2594, - "secondPos" : 2660, - "firstEndPos" : 2667, - "secondEndPos" : 2764 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "DefaultExchange", - "secondLabel" : "DefaultExchange", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2595, - "secondPos" : 2661, - "firstEndPos" : 2610, - "secondEndPos" : 2676 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 2595, - "secondPos" : 2661, - "firstEndPos" : 2610, - "secondEndPos" : 2676 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 2612, - "secondPos" : 2678, - "firstEndPos" : 2667, - "secondEndPos" : 2764 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2612, - "secondPos" : 2678, - "firstEndPos" : 2628, - "secondEndPos" : 2694 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageHelper", - "secondLabel" : "JmsMessageHelper", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 2612, - "secondPos" : 2678, - "firstEndPos" : 2628, - "secondEndPos" : 2694 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createExchange", - "secondLabel" : "createExchange", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2629, - "secondPos" : 2695, - "firstEndPos" : 2643, - "secondEndPos" : 2709 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2644, - "secondPos" : 2710, - "firstEndPos" : 2666, - "secondEndPos" : 2763 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2644, - "secondPos" : 2710, - "firstEndPos" : 2651, - "secondEndPos" : 2717 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "CastExpression", - "firstPos" : 2653, - "secondPos" : 2600, - "firstEndPos" : 2666, - "secondEndPos" : 2613 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getEndpoint", - "secondLabel" : "getEndpoint", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2653, - "secondPos" : 2600, - "firstEndPos" : 2664, - "secondEndPos" : 2611 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2682, - "secondPos" : 2779, - "firstEndPos" : 2747, - "secondEndPos" : 2844 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 2682, - "secondPos" : 2779, - "firstEndPos" : 2746, - "secondEndPos" : 2843 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2682, - "secondPos" : 2779, - "firstEndPos" : 2685, - "secondEndPos" : 2782 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "log", - "secondLabel" : "log", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 2682, - "secondPos" : 2779, - "firstEndPos" : 2685, - "secondEndPos" : 2782 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "debug", - "secondLabel" : "debug", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2686, - "secondPos" : 2783, - "firstEndPos" : 2691, - "secondEndPos" : 2788 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2692, - "secondPos" : 2789, - "firstEndPos" : 2745, - "secondEndPos" : 2842 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Processing Exchange.id:{}\"", - "secondLabel" : "\"Processing Exchange.id:{}\"", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2692, - "secondPos" : 2789, - "firstEndPos" : 2719, - "secondEndPos" : 2816 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2721, - "secondPos" : 2818, - "firstEndPos" : 2745, - "secondEndPos" : 2842 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2721, - "secondPos" : 2818, - "firstEndPos" : 2729, - "secondEndPos" : 2826 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 2721, - "secondPos" : 2818, - "firstEndPos" : 2729, - "secondEndPos" : 2826 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getExchangeId", - "secondLabel" : "getExchangeId", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2730, - "secondPos" : 2827, - "firstEndPos" : 2743, - "secondEndPos" : 2840 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2761, - "secondPos" : 2858, - "firstEndPos" : 2882, - "secondEndPos" : 2979 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 2765, - "secondPos" : 2862, - "firstEndPos" : 2806, - "secondEndPos" : 2903 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 2765, - "secondPos" : 2862, - "firstEndPos" : 2779, - "secondEndPos" : 2876 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isTransacted", - "secondLabel" : "isTransacted", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2765, - "secondPos" : 2862, - "firstEndPos" : 2777, - "secondEndPos" : 2874 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "&&", - "secondLabel" : "&&", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 2780, - "secondPos" : 2877, - "firstEndPos" : 2782, - "secondEndPos" : 2879 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 2783, - "secondPos" : 2880, - "firstEndPos" : 2806, - "secondEndPos" : 2903 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "synchronization", - "secondLabel" : "synchronization", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 2783, - "secondPos" : 2880, - "firstEndPos" : 2798, - "secondEndPos" : 2895 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!=", - "secondLabel" : "!=", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 2799, - "secondPos" : 2896, - "firstEndPos" : 2801, - "secondEndPos" : 2898 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 2802, - "secondPos" : 2899, - "firstEndPos" : 2806, - "secondEndPos" : 2903 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 2808, - "secondPos" : 2905, - "firstEndPos" : 2882, - "secondEndPos" : 2979 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2826, - "secondPos" : 2923, - "firstEndPos" : 2868, - "secondEndPos" : 2965 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 2826, - "secondPos" : 2923, - "firstEndPos" : 2867, - "secondEndPos" : 2964 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2826, - "secondPos" : 2923, - "firstEndPos" : 2834, - "secondEndPos" : 2931 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 2826, - "secondPos" : 2923, - "firstEndPos" : 2834, - "secondEndPos" : 2931 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "addOnCompletion", - "secondLabel" : "addOnCompletion", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2835, - "secondPos" : 2932, - "firstEndPos" : 2850, - "secondEndPos" : 2947 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2851, - "secondPos" : 2948, - "firstEndPos" : 2866, - "secondEndPos" : 2963 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "synchronization", - "secondLabel" : "synchronization", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2851, - "secondPos" : 2948, - "firstEndPos" : 2866, - "secondEndPos" : 2963 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2895, - "secondPos" : 2992, - "firstEndPos" : 3954, - "secondEndPos" : 4051 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 2899, - "secondPos" : 2996, - "firstEndPos" : 3667, - "secondEndPos" : 3764 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2917, - "secondPos" : 3014, - "firstEndPos" : 3653, - "secondEndPos" : 3750 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 2921, - "secondPos" : 3018, - "firstEndPos" : 2954, - "secondEndPos" : 3051 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 2921, - "secondPos" : 3018, - "firstEndPos" : 2935, - "secondEndPos" : 3032 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isTransacted", - "secondLabel" : "isTransacted", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2921, - "secondPos" : 3018, - "firstEndPos" : 2933, - "secondEndPos" : 3030 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "||", - "secondLabel" : "||", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 2936, - "secondPos" : 3033, - "firstEndPos" : 2938, - "secondEndPos" : 3035 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 2939, - "secondPos" : 3036, - "firstEndPos" : 2954, - "secondEndPos" : 3051 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isSynchronous", - "secondLabel" : "isSynchronous", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2939, - "secondPos" : 3036, - "firstEndPos" : 2952, - "secondEndPos" : 3049 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 2956, - "secondPos" : 3053, - "firstEndPos" : 3117, - "secondEndPos" : 3214 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2978, - "secondPos" : 3075, - "firstEndPos" : 3054, - "secondEndPos" : 3151 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 2978, - "secondPos" : 3075, - "firstEndPos" : 3053, - "secondEndPos" : 3150 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2978, - "secondPos" : 3075, - "firstEndPos" : 2981, - "secondEndPos" : 3078 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "log", - "secondLabel" : "log", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 2978, - "secondPos" : 3075, - "firstEndPos" : 2981, - "secondEndPos" : 3078 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "debug", - "secondLabel" : "debug", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2982, - "secondPos" : 3079, - "firstEndPos" : 2987, - "secondEndPos" : 3084 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2988, - "secondPos" : 3085, - "firstEndPos" : 3052, - "secondEndPos" : 3149 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\" Handling synchronous message: {}\"", - "secondLabel" : "\" Handling synchronous message: {}\"", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2988, - "secondPos" : 3085, - "firstEndPos" : 3024, - "secondEndPos" : 3121 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3026, - "secondPos" : 3123, - "firstEndPos" : 3052, - "secondEndPos" : 3149 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3026, - "secondPos" : 3123, - "firstEndPos" : 3042, - "secondEndPos" : 3139 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3026, - "secondPos" : 3123, - "firstEndPos" : 3042, - "secondEndPos" : 3139 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3026, - "secondPos" : 3123, - "firstEndPos" : 3034, - "secondEndPos" : 3131 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3026, - "secondPos" : 3123, - "firstEndPos" : 3034, - "secondEndPos" : 3131 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getIn", - "secondLabel" : "getIn", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3035, - "secondPos" : 3132, - "firstEndPos" : 3040, - "secondEndPos" : 3137 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getBody", - "secondLabel" : "getBody", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3043, - "secondPos" : 3140, - "firstEndPos" : 3050, - "secondEndPos" : 3147 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3075, - "secondPos" : 3172, - "firstEndPos" : 3099, - "secondEndPos" : 3196 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 3075, - "secondPos" : 3172, - "firstEndPos" : 3098, - "secondEndPos" : 3195 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "handleMessage", - "secondLabel" : "handleMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3075, - "secondPos" : 3172, - "firstEndPos" : 3088, - "secondEndPos" : 3185 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3089, - "secondPos" : 3186, - "firstEndPos" : 3097, - "secondEndPos" : 3194 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3089, - "secondPos" : 3186, - "firstEndPos" : 3097, - "secondEndPos" : 3194 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 3123, - "secondPos" : 3220, - "firstEndPos" : 3653, - "secondEndPos" : 3750 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3145, - "secondPos" : 3242, - "firstEndPos" : 3222, - "secondEndPos" : 3319 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 3145, - "secondPos" : 3242, - "firstEndPos" : 3221, - "secondEndPos" : 3318 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3145, - "secondPos" : 3242, - "firstEndPos" : 3148, - "secondEndPos" : 3245 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "log", - "secondLabel" : "log", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3145, - "secondPos" : 3242, - "firstEndPos" : 3148, - "secondEndPos" : 3245 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "debug", - "secondLabel" : "debug", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3149, - "secondPos" : 3246, - "firstEndPos" : 3154, - "secondEndPos" : 3251 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3155, - "secondPos" : 3252, - "firstEndPos" : 3220, - "secondEndPos" : 3317 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\" Handling asynchronous message: {}\"", - "secondLabel" : "\" Handling asynchronous message: {}\"", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3155, - "secondPos" : 3252, - "firstEndPos" : 3192, - "secondEndPos" : 3289 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3194, - "secondPos" : 3291, - "firstEndPos" : 3220, - "secondEndPos" : 3317 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3194, - "secondPos" : 3291, - "firstEndPos" : 3210, - "secondEndPos" : 3307 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3194, - "secondPos" : 3291, - "firstEndPos" : 3210, - "secondEndPos" : 3307 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3194, - "secondPos" : 3291, - "firstEndPos" : 3202, - "secondEndPos" : 3299 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3194, - "secondPos" : 3291, - "firstEndPos" : 3202, - "secondEndPos" : 3299 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getIn", - "secondLabel" : "getIn", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3203, - "secondPos" : 3300, - "firstEndPos" : 3208, - "secondEndPos" : 3305 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getBody", - "secondLabel" : "getBody", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3211, - "secondPos" : 3308, - "firstEndPos" : 3218, - "secondEndPos" : 3315 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3243, - "secondPos" : 3340, - "firstEndPos" : 3635, - "secondEndPos" : 3732 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 3243, - "secondPos" : 3340, - "firstEndPos" : 3634, - "secondEndPos" : 3731 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3243, - "secondPos" : 3340, - "firstEndPos" : 3251, - "secondEndPos" : 3348 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "executor", - "secondLabel" : "executor", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3243, - "secondPos" : 3340, - "firstEndPos" : 3251, - "secondEndPos" : 3348 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "execute", - "secondLabel" : "execute", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3252, - "secondPos" : 3349, - "firstEndPos" : 3259, - "secondEndPos" : 3356 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3260, - "secondPos" : 3357, - "firstEndPos" : 3633, - "secondEndPos" : 3730 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3260, - "secondPos" : 3357, - "firstEndPos" : 3633, - "secondEndPos" : 3730 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Runnable", - "secondLabel" : "Runnable", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3264, - "secondPos" : 3361, - "firstEndPos" : 3272, - "secondEndPos" : 3369 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 3264, - "secondPos" : 3361, - "firstEndPos" : 3272, - "secondEndPos" : 3369 -}, { - "firstType" : "AnonymousClassDeclaration", - "secondType" : "AnonymousClassDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 3275, - "secondPos" : 3372, - "firstEndPos" : 3633, - "secondEndPos" : 3730 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "AnonymousClassDeclaration", - "secondParentType" : "AnonymousClassDeclaration", - "firstPos" : 3301, - "secondPos" : 3398, - "firstEndPos" : 3611, - "secondEndPos" : 3708 -}, { - "firstType" : "MarkerAnnotation", - "secondType" : "MarkerAnnotation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 3301, - "secondPos" : 3398, - "firstEndPos" : 3310, - "secondEndPos" : 3407 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Override", - "secondLabel" : "Override", - "firstParentType" : "MarkerAnnotation", - "secondParentType" : "MarkerAnnotation", - "firstPos" : 3302, - "secondPos" : 3399, - "firstEndPos" : 3310, - "secondEndPos" : 3407 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 3335, - "secondPos" : 3432, - "firstEndPos" : 3341, - "secondEndPos" : 3438 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 3342, - "secondPos" : 3439, - "firstEndPos" : 3346, - "secondEndPos" : 3443 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "run", - "secondLabel" : "run", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 3347, - "secondPos" : 3444, - "firstEndPos" : 3350, - "secondEndPos" : 3447 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 3353, - "secondPos" : 3450, - "firstEndPos" : 3611, - "secondEndPos" : 3708 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3383, - "secondPos" : 3480, - "firstEndPos" : 3585, - "secondEndPos" : 3682 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 3387, - "secondPos" : 3484, - "firstEndPos" : 3475, - "secondEndPos" : 3572 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3421, - "secondPos" : 3518, - "firstEndPos" : 3445, - "secondEndPos" : 3542 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 3421, - "secondPos" : 3518, - "firstEndPos" : 3444, - "secondEndPos" : 3541 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "handleMessage", - "secondLabel" : "handleMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3421, - "secondPos" : 3518, - "firstEndPos" : 3434, - "secondEndPos" : 3531 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3435, - "secondPos" : 3532, - "firstEndPos" : 3443, - "secondEndPos" : 3540 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3435, - "secondPos" : 3532, - "firstEndPos" : 3443, - "secondEndPos" : 3540 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 3476, - "secondPos" : 3573, - "firstEndPos" : 3585, - "secondEndPos" : 3682 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 3483, - "secondPos" : 3580, - "firstEndPos" : 3494, - "secondEndPos" : 3591 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exception", - "secondLabel" : "Exception", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3483, - "secondPos" : 3580, - "firstEndPos" : 3492, - "secondEndPos" : 3589 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 3483, - "secondPos" : 3580, - "firstEndPos" : 3492, - "secondEndPos" : 3589 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 3493, - "secondPos" : 3590, - "firstEndPos" : 3494, - "secondEndPos" : 3591 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 3496, - "secondPos" : 3593, - "firstEndPos" : 3585, - "secondEndPos" : 3682 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3530, - "secondPos" : 3627, - "firstEndPos" : 3555, - "secondEndPos" : 3652 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 3530, - "secondPos" : 3627, - "firstEndPos" : 3554, - "secondEndPos" : 3651 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3530, - "secondPos" : 3627, - "firstEndPos" : 3538, - "secondEndPos" : 3635 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3530, - "secondPos" : 3627, - "firstEndPos" : 3538, - "secondEndPos" : 3635 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setException", - "secondLabel" : "setException", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3539, - "secondPos" : 3636, - "firstEndPos" : 3551, - "secondEndPos" : 3648 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3552, - "secondPos" : 3649, - "firstEndPos" : 3553, - "secondEndPos" : 3650 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3552, - "secondPos" : 3649, - "firstEndPos" : 3553, - "secondEndPos" : 3650 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 3668, - "secondPos" : 3765, - "firstEndPos" : 3954, - "secondEndPos" : 4051 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 3675, - "secondPos" : 3772, - "firstEndPos" : 3686, - "secondEndPos" : 3783 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exception", - "secondLabel" : "Exception", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3675, - "secondPos" : 3772, - "firstEndPos" : 3684, - "secondEndPos" : 3781 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 3675, - "secondPos" : 3772, - "firstEndPos" : 3684, - "secondEndPos" : 3781 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 3685, - "secondPos" : 3782, - "firstEndPos" : 3686, - "secondEndPos" : 3783 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 3688, - "secondPos" : 3785, - "firstEndPos" : 3954, - "secondEndPos" : 4051 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3706, - "secondPos" : 3803, - "firstEndPos" : 3940, - "secondEndPos" : 4037 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 3710, - "secondPos" : 3807, - "firstEndPos" : 3726, - "secondEndPos" : 3823 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 3710, - "secondPos" : 3807, - "firstEndPos" : 3718, - "secondEndPos" : 3815 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!=", - "secondLabel" : "!=", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 3719, - "secondPos" : 3816, - "firstEndPos" : 3721, - "secondEndPos" : 3818 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 3722, - "secondPos" : 3819, - "firstEndPos" : 3726, - "secondEndPos" : 3823 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 3728, - "secondPos" : 3825, - "firstEndPos" : 3940, - "secondEndPos" : 4037 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3750, - "secondPos" : 3847, - "firstEndPos" : 3922, - "secondEndPos" : 4019 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 3754, - "secondPos" : 3851, - "firstEndPos" : 3785, - "secondEndPos" : 3882 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 3754, - "secondPos" : 3851, - "firstEndPos" : 3777, - "secondEndPos" : 3874 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3754, - "secondPos" : 3851, - "firstEndPos" : 3762, - "secondEndPos" : 3859 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3754, - "secondPos" : 3851, - "firstEndPos" : 3762, - "secondEndPos" : 3859 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getException", - "secondLabel" : "getException", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3763, - "secondPos" : 3860, - "firstEndPos" : 3775, - "secondEndPos" : 3872 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "==", - "secondLabel" : "==", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 3778, - "secondPos" : 3875, - "firstEndPos" : 3780, - "secondEndPos" : 3877 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 3781, - "secondPos" : 3878, - "firstEndPos" : 3785, - "secondEndPos" : 3882 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 3787, - "secondPos" : 3884, - "firstEndPos" : 3860, - "secondEndPos" : 3957 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3813, - "secondPos" : 3910, - "firstEndPos" : 3838, - "secondEndPos" : 3935 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 3813, - "secondPos" : 3910, - "firstEndPos" : 3837, - "secondEndPos" : 3934 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3813, - "secondPos" : 3910, - "firstEndPos" : 3821, - "secondEndPos" : 3918 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3813, - "secondPos" : 3910, - "firstEndPos" : 3821, - "secondEndPos" : 3918 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setException", - "secondLabel" : "setException", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3822, - "secondPos" : 3919, - "firstEndPos" : 3834, - "secondEndPos" : 3931 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3835, - "secondPos" : 3932, - "firstEndPos" : 3836, - "secondEndPos" : 3933 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3835, - "secondPos" : 3932, - "firstEndPos" : 3836, - "secondEndPos" : 3933 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 3866, - "secondPos" : 3963, - "firstEndPos" : 3922, - "secondEndPos" : 4019 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3892, - "secondPos" : 3989, - "firstEndPos" : 3900, - "secondEndPos" : 3997 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 3898, - "secondPos" : 3995, - "firstEndPos" : 3899, - "secondEndPos" : 3996 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 3965, - "secondPos" : 4062, - "firstEndPos" : 4044, - "secondEndPos" : 4141 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 3972, - "secondPos" : 4069, - "firstEndPos" : 3983, - "secondEndPos" : 4080 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exception", - "secondLabel" : "Exception", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3972, - "secondPos" : 4069, - "firstEndPos" : 3981, - "secondEndPos" : 4078 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 3972, - "secondPos" : 4069, - "firstEndPos" : 3981, - "secondEndPos" : 4078 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 3982, - "secondPos" : 4079, - "firstEndPos" : 3983, - "secondEndPos" : 4080 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 3985, - "secondPos" : 4082, - "firstEndPos" : 4044, - "secondEndPos" : 4141 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3999, - "secondPos" : 4096, - "firstEndPos" : 4034, - "secondEndPos" : 4131 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 3999, - "secondPos" : 4096, - "firstEndPos" : 4033, - "secondEndPos" : 4130 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "rce", - "secondLabel" : "rce", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 3999, - "secondPos" : 4096, - "firstEndPos" : 4002, - "secondEndPos" : 4099 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4003, - "secondPos" : 4100, - "firstEndPos" : 4004, - "secondEndPos" : 4101 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4005, - "secondPos" : 4102, - "firstEndPos" : 4033, - "secondEndPos" : 4130 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "wrapRuntimeCamelException", - "secondLabel" : "wrapRuntimeCamelException", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4005, - "secondPos" : 4102, - "firstEndPos" : 4030, - "secondEndPos" : 4127 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4031, - "secondPos" : 4128, - "firstEndPos" : 4032, - "secondEndPos" : 4129 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4031, - "secondPos" : 4128, - "firstEndPos" : 4032, - "secondEndPos" : 4129 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 4053, - "secondPos" : 4150, - "firstEndPos" : 4136, - "secondEndPos" : 4233 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4067, - "secondPos" : 4164, - "firstEndPos" : 4126, - "secondEndPos" : 4223 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 4071, - "secondPos" : 4168, - "firstEndPos" : 4082, - "secondEndPos" : 4179 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "rce", - "secondLabel" : "rce", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 4071, - "secondPos" : 4168, - "firstEndPos" : 4074, - "secondEndPos" : 4171 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!=", - "secondLabel" : "!=", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 4075, - "secondPos" : 4172, - "firstEndPos" : 4077, - "secondEndPos" : 4174 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 4078, - "secondPos" : 4175, - "firstEndPos" : 4082, - "secondEndPos" : 4179 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 4084, - "secondPos" : 4181, - "firstEndPos" : 4126, - "secondEndPos" : 4223 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4102, - "secondPos" : 4199, - "firstEndPos" : 4112, - "secondEndPos" : 4209 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "rce", - "secondLabel" : "rce", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 4108, - "secondPos" : 4205, - "firstEndPos" : 4111, - "secondEndPos" : 4208 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 4148, - "secondPos" : 4245, - "firstEndPos" : 4247, - "secondEndPos" : 4344 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4148, - "secondPos" : 4245, - "firstEndPos" : 4182, - "secondEndPos" : 4279 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 4159, - "secondPos" : 4256, - "firstEndPos" : 4174, - "secondEndPos" : 4271 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 4159, - "secondPos" : 4256, - "firstEndPos" : 4165, - "secondEndPos" : 4262 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 4166, - "secondPos" : 4263, - "firstEndPos" : 4174, - "secondEndPos" : 4271 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4187, - "secondPos" : 4284, - "firstEndPos" : 4193, - "secondEndPos" : 4290 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "abstract", - "secondLabel" : "abstract", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4194, - "secondPos" : 4291, - "firstEndPos" : 4202, - "secondEndPos" : 4299 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4203, - "secondPos" : 4300, - "firstEndPos" : 4207, - "secondEndPos" : 4304 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "handleMessage", - "secondLabel" : "handleMessage", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4208, - "secondPos" : 4305, - "firstEndPos" : 4221, - "secondEndPos" : 4318 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4222, - "secondPos" : 4319, - "firstEndPos" : 4245, - "secondEndPos" : 4342 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 4222, - "secondPos" : 4319, - "firstEndPos" : 4227, - "secondEndPos" : 4324 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exchange", - "secondLabel" : "Exchange", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4228, - "secondPos" : 4325, - "firstEndPos" : 4236, - "secondEndPos" : 4333 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 4228, - "secondPos" : 4325, - "firstEndPos" : 4236, - "secondEndPos" : 4333 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 4237, - "secondPos" : 4334, - "firstEndPos" : 4245, - "secondEndPos" : 4342 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 4253, - "secondPos" : 4350, - "firstEndPos" : 4330, - "secondEndPos" : 4427 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4253, - "secondPos" : 4350, - "firstEndPos" : 4296, - "secondEndPos" : 4393 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 4264, - "secondPos" : 4361, - "firstEndPos" : 4288, - "secondEndPos" : 4385 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Method will be called to", - "secondLabel" : "Method will be called to", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 4264, - "secondPos" : 4361, - "firstEndPos" : 4288, - "secondEndPos" : 4385 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4301, - "secondPos" : 4398, - "firstEndPos" : 4307, - "secondEndPos" : 4404 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "abstract", - "secondLabel" : "abstract", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4308, - "secondPos" : 4405, - "firstEndPos" : 4316, - "secondEndPos" : 4413 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4317, - "secondPos" : 4414, - "firstEndPos" : 4321, - "secondEndPos" : 4418 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "close", - "secondLabel" : "close", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4322, - "secondPos" : 4419, - "firstEndPos" : 4327, - "secondEndPos" : 4424 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 4336, - "secondPos" : 4433, - "firstEndPos" : 4427, - "secondEndPos" : 4524 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4336, - "secondPos" : 4433, - "firstEndPos" : 4342, - "secondEndPos" : 4439 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4343, - "secondPos" : 4440, - "firstEndPos" : 4347, - "secondEndPos" : 4444 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setTransacted", - "secondLabel" : "setTransacted", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4348, - "secondPos" : 4445, - "firstEndPos" : 4361, - "secondEndPos" : 4458 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4362, - "secondPos" : 4459, - "firstEndPos" : 4380, - "secondEndPos" : 4477 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 4362, - "secondPos" : 4459, - "firstEndPos" : 4369, - "secondEndPos" : 4466 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "transacted", - "secondLabel" : "transacted", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 4370, - "secondPos" : 4467, - "firstEndPos" : 4380, - "secondEndPos" : 4477 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4382, - "secondPos" : 4479, - "firstEndPos" : 4427, - "secondEndPos" : 4524 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4392, - "secondPos" : 4489, - "firstEndPos" : 4421, - "secondEndPos" : 4518 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 4392, - "secondPos" : 4489, - "firstEndPos" : 4420, - "secondEndPos" : 4517 -}, { - "firstType" : "FieldAccess", - "secondType" : "FieldAccess", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4392, - "secondPos" : 4489, - "firstEndPos" : 4407, - "secondEndPos" : 4504 -}, { - "firstType" : "ThisExpression", - "secondType" : "ThisExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 4392, - "secondPos" : 4489, - "firstEndPos" : 4396, - "secondEndPos" : 4493 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "transacted", - "secondLabel" : "transacted", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 4397, - "secondPos" : 4494, - "firstEndPos" : 4407, - "secondEndPos" : 4504 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4408, - "secondPos" : 4505, - "firstEndPos" : 4409, - "secondEndPos" : 4506 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "transacted", - "secondLabel" : "transacted", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4410, - "secondPos" : 4507, - "firstEndPos" : 4420, - "secondEndPos" : 4517 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 4433, - "secondPos" : 4530, - "firstEndPos" : 4497, - "secondEndPos" : 4594 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4433, - "secondPos" : 4530, - "firstEndPos" : 4439, - "secondEndPos" : 4536 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4440, - "secondPos" : 4537, - "firstEndPos" : 4447, - "secondEndPos" : 4544 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isTransacted", - "secondLabel" : "isTransacted", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4448, - "secondPos" : 4545, - "firstEndPos" : 4460, - "secondEndPos" : 4557 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4463, - "secondPos" : 4560, - "firstEndPos" : 4497, - "secondEndPos" : 4594 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4473, - "secondPos" : 4570, - "firstEndPos" : 4491, - "secondEndPos" : 4588 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "transacted", - "secondLabel" : "transacted", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 4480, - "secondPos" : 4577, - "firstEndPos" : 4490, - "secondEndPos" : 4587 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 4503, - "secondPos" : 4600, - "firstEndPos" : 4569, - "secondEndPos" : 4666 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4503, - "secondPos" : 4600, - "firstEndPos" : 4509, - "secondEndPos" : 4606 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "SjmsEndpoint", - "secondLabel" : "SjmsEndpoint", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4510, - "secondPos" : 4607, - "firstEndPos" : 4522, - "secondEndPos" : 4619 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4510, - "secondPos" : 4607, - "firstEndPos" : 4522, - "secondEndPos" : 4619 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getEndpoint", - "secondLabel" : "getEndpoint", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4523, - "secondPos" : 4620, - "firstEndPos" : 4534, - "secondEndPos" : 4631 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4537, - "secondPos" : 4634, - "firstEndPos" : 4569, - "secondEndPos" : 4666 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4547, - "secondPos" : 4644, - "firstEndPos" : 4563, - "secondEndPos" : 4660 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 4554, - "secondPos" : 4651, - "firstEndPos" : 4562, - "secondEndPos" : 4659 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 4575, - "secondPos" : 4672, - "firstEndPos" : 4645, - "secondEndPos" : 4742 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4575, - "secondPos" : 4672, - "firstEndPos" : 4581, - "secondEndPos" : 4678 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "AsyncProcessor", - "secondLabel" : "AsyncProcessor", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4582, - "secondPos" : 4679, - "firstEndPos" : 4596, - "secondEndPos" : 4693 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4582, - "secondPos" : 4679, - "firstEndPos" : 4596, - "secondEndPos" : 4693 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getProcessor", - "secondLabel" : "getProcessor", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4597, - "secondPos" : 4694, - "firstEndPos" : 4609, - "secondEndPos" : 4706 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4612, - "secondPos" : 4709, - "firstEndPos" : 4645, - "secondEndPos" : 4742 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4622, - "secondPos" : 4719, - "firstEndPos" : 4639, - "secondEndPos" : 4736 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "processor", - "secondLabel" : "processor", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 4629, - "secondPos" : 4726, - "firstEndPos" : 4638, - "secondEndPos" : 4735 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 4651, - "secondPos" : 4748, - "firstEndPos" : 4745, - "secondEndPos" : 4842 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4651, - "secondPos" : 4748, - "firstEndPos" : 4657, - "secondEndPos" : 4754 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4658, - "secondPos" : 4755, - "firstEndPos" : 4662, - "secondEndPos" : 4759 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setProcessor", - "secondLabel" : "setProcessor", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4663, - "secondPos" : 4760, - "firstEndPos" : 4675, - "secondEndPos" : 4772 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4676, - "secondPos" : 4773, - "firstEndPos" : 4700, - "secondEndPos" : 4797 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "AsyncProcessor", - "secondLabel" : "AsyncProcessor", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4676, - "secondPos" : 4773, - "firstEndPos" : 4690, - "secondEndPos" : 4787 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 4676, - "secondPos" : 4773, - "firstEndPos" : 4690, - "secondEndPos" : 4787 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "processor", - "secondLabel" : "processor", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 4691, - "secondPos" : 4788, - "firstEndPos" : 4700, - "secondEndPos" : 4797 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4702, - "secondPos" : 4799, - "firstEndPos" : 4745, - "secondEndPos" : 4842 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4712, - "secondPos" : 4809, - "firstEndPos" : 4739, - "secondEndPos" : 4836 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 4712, - "secondPos" : 4809, - "firstEndPos" : 4738, - "secondEndPos" : 4835 -}, { - "firstType" : "FieldAccess", - "secondType" : "FieldAccess", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4712, - "secondPos" : 4809, - "firstEndPos" : 4726, - "secondEndPos" : 4823 -}, { - "firstType" : "ThisExpression", - "secondType" : "ThisExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 4712, - "secondPos" : 4809, - "firstEndPos" : 4716, - "secondEndPos" : 4813 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "processor", - "secondLabel" : "processor", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 4717, - "secondPos" : 4814, - "firstEndPos" : 4726, - "secondEndPos" : 4823 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4727, - "secondPos" : 4824, - "firstEndPos" : 4728, - "secondEndPos" : 4825 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "processor", - "secondLabel" : "processor", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4729, - "secondPos" : 4826, - "firstEndPos" : 4738, - "secondEndPos" : 4835 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 4751, - "secondPos" : 4848, - "firstEndPos" : 4830, - "secondEndPos" : 4927 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4751, - "secondPos" : 4848, - "firstEndPos" : 4757, - "secondEndPos" : 4854 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4758, - "secondPos" : 4855, - "firstEndPos" : 4762, - "secondEndPos" : 4859 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setSession", - "secondLabel" : "setSession", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4763, - "secondPos" : 4860, - "firstEndPos" : 4773, - "secondEndPos" : 4870 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4774, - "secondPos" : 4871, - "firstEndPos" : 4789, - "secondEndPos" : 4886 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Session", - "secondLabel" : "Session", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4774, - "secondPos" : 4871, - "firstEndPos" : 4781, - "secondEndPos" : 4878 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 4774, - "secondPos" : 4871, - "firstEndPos" : 4781, - "secondEndPos" : 4878 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 4782, - "secondPos" : 4879, - "firstEndPos" : 4789, - "secondEndPos" : 4886 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4791, - "secondPos" : 4888, - "firstEndPos" : 4830, - "secondEndPos" : 4927 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4801, - "secondPos" : 4898, - "firstEndPos" : 4824, - "secondEndPos" : 4921 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 4801, - "secondPos" : 4898, - "firstEndPos" : 4823, - "secondEndPos" : 4920 -}, { - "firstType" : "FieldAccess", - "secondType" : "FieldAccess", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4801, - "secondPos" : 4898, - "firstEndPos" : 4813, - "secondEndPos" : 4910 -}, { - "firstType" : "ThisExpression", - "secondType" : "ThisExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 4801, - "secondPos" : 4898, - "firstEndPos" : 4805, - "secondEndPos" : 4902 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 4806, - "secondPos" : 4903, - "firstEndPos" : 4813, - "secondEndPos" : 4910 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4814, - "secondPos" : 4911, - "firstEndPos" : 4815, - "secondEndPos" : 4912 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4816, - "secondPos" : 4913, - "firstEndPos" : 4823, - "secondEndPos" : 4920 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 4836, - "secondPos" : 4933, - "firstEndPos" : 4895, - "secondEndPos" : 4992 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4836, - "secondPos" : 4933, - "firstEndPos" : 4842, - "secondEndPos" : 4939 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Session", - "secondLabel" : "Session", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4843, - "secondPos" : 4940, - "firstEndPos" : 4850, - "secondEndPos" : 4947 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4843, - "secondPos" : 4940, - "firstEndPos" : 4850, - "secondEndPos" : 4947 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getSession", - "secondLabel" : "getSession", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4851, - "secondPos" : 4948, - "firstEndPos" : 4861, - "secondEndPos" : 4958 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4864, - "secondPos" : 4961, - "firstEndPos" : 4895, - "secondEndPos" : 4992 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4874, - "secondPos" : 4971, - "firstEndPos" : 4889, - "secondEndPos" : 4986 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 4881, - "secondPos" : 4978, - "firstEndPos" : 4888, - "secondEndPos" : 4985 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 4901, - "secondPos" : 4998, - "firstEndPos" : 4984, - "secondEndPos" : 5081 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4901, - "secondPos" : 4998, - "firstEndPos" : 4907, - "secondEndPos" : 5004 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4908, - "secondPos" : 5005, - "firstEndPos" : 4912, - "secondEndPos" : 5009 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setSynchronous", - "secondLabel" : "setSynchronous", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4913, - "secondPos" : 5010, - "firstEndPos" : 4927, - "secondEndPos" : 5024 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4928, - "secondPos" : 5025, - "firstEndPos" : 4941, - "secondEndPos" : 5038 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 4928, - "secondPos" : 5025, - "firstEndPos" : 4935, - "secondEndPos" : 5032 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "async", - "secondLabel" : "async", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 4936, - "secondPos" : 5033, - "firstEndPos" : 4941, - "secondEndPos" : 5038 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4943, - "secondPos" : 5040, - "firstEndPos" : 4984, - "secondEndPos" : 5081 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4953, - "secondPos" : 5050, - "firstEndPos" : 4978, - "secondEndPos" : 5075 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 4953, - "secondPos" : 5050, - "firstEndPos" : 4977, - "secondEndPos" : 5074 -}, { - "firstType" : "FieldAccess", - "secondType" : "FieldAccess", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4953, - "secondPos" : 5050, - "firstEndPos" : 4969, - "secondEndPos" : 5066 -}, { - "firstType" : "ThisExpression", - "secondType" : "ThisExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 4953, - "secondPos" : 5050, - "firstEndPos" : 4957, - "secondEndPos" : 5054 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "synchronous", - "secondLabel" : "synchronous", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 4958, - "secondPos" : 5055, - "firstEndPos" : 4969, - "secondEndPos" : 5066 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4970, - "secondPos" : 5067, - "firstEndPos" : 4971, - "secondEndPos" : 5068 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "async", - "secondLabel" : "async", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 4972, - "secondPos" : 5069, - "firstEndPos" : 4977, - "secondEndPos" : 5074 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 4990, - "secondPos" : 5087, - "firstEndPos" : 5056, - "secondEndPos" : 5153 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4990, - "secondPos" : 5087, - "firstEndPos" : 4996, - "secondEndPos" : 5093 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 4997, - "secondPos" : 5094, - "firstEndPos" : 5004, - "secondEndPos" : 5101 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isSynchronous", - "secondLabel" : "isSynchronous", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5005, - "secondPos" : 5102, - "firstEndPos" : 5018, - "secondEndPos" : 5115 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5021, - "secondPos" : 5118, - "firstEndPos" : 5056, - "secondEndPos" : 5153 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 5031, - "secondPos" : 5128, - "firstEndPos" : 5050, - "secondEndPos" : 5147 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "synchronous", - "secondLabel" : "synchronous", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 5038, - "secondPos" : 5135, - "firstEndPos" : 5049, - "secondEndPos" : 5146 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 5062, - "secondPos" : 5159, - "firstEndPos" : 5133, - "secondEndPos" : 5230 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5062, - "secondPos" : 5159, - "firstEndPos" : 5068, - "secondEndPos" : 5165 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5069, - "secondPos" : 5166, - "firstEndPos" : 5073, - "secondEndPos" : 5170 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setTopic", - "secondLabel" : "setTopic", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5074, - "secondPos" : 5171, - "firstEndPos" : 5082, - "secondEndPos" : 5179 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5083, - "secondPos" : 5180, - "firstEndPos" : 5096, - "secondEndPos" : 5193 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 5083, - "secondPos" : 5180, - "firstEndPos" : 5090, - "secondEndPos" : 5187 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "topic", - "secondLabel" : "topic", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 5091, - "secondPos" : 5188, - "firstEndPos" : 5096, - "secondEndPos" : 5193 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5098, - "secondPos" : 5195, - "firstEndPos" : 5133, - "secondEndPos" : 5230 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 5108, - "secondPos" : 5205, - "firstEndPos" : 5127, - "secondEndPos" : 5224 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 5108, - "secondPos" : 5205, - "firstEndPos" : 5126, - "secondEndPos" : 5223 -}, { - "firstType" : "FieldAccess", - "secondType" : "FieldAccess", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 5108, - "secondPos" : 5205, - "firstEndPos" : 5118, - "secondEndPos" : 5215 -}, { - "firstType" : "ThisExpression", - "secondType" : "ThisExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 5108, - "secondPos" : 5205, - "firstEndPos" : 5112, - "secondEndPos" : 5209 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "topic", - "secondLabel" : "topic", - "firstParentType" : "FieldAccess", - "secondParentType" : "FieldAccess", - "firstPos" : 5113, - "secondPos" : 5210, - "firstEndPos" : 5118, - "secondEndPos" : 5215 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 5119, - "secondPos" : 5216, - "firstEndPos" : 5120, - "secondEndPos" : 5217 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "topic", - "secondLabel" : "topic", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 5121, - "secondPos" : 5218, - "firstEndPos" : 5126, - "secondEndPos" : 5223 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 5139, - "secondPos" : 5236, - "firstEndPos" : 5193, - "secondEndPos" : 5290 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5139, - "secondPos" : 5236, - "firstEndPos" : 5145, - "secondEndPos" : 5242 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5146, - "secondPos" : 5243, - "firstEndPos" : 5153, - "secondEndPos" : 5250 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isTopic", - "secondLabel" : "isTopic", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5154, - "secondPos" : 5251, - "firstEndPos" : 5161, - "secondEndPos" : 5258 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5164, - "secondPos" : 5261, - "firstEndPos" : 5193, - "secondEndPos" : 5290 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 5174, - "secondPos" : 5271, - "firstEndPos" : 5187, - "secondEndPos" : 5284 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "topic", - "secondLabel" : "topic", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 5181, - "secondPos" : 5278, - "firstEndPos" : 5186, - "secondEndPos" : 5283 -} ] \ No newline at end of file diff --git a/src/test/resources/astDiff/PREV-SNAPSHOT/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.jms.JmsMessageHelper.json b/src/test/resources/astDiff/PREV-SNAPSHOT/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.jms.JmsMessageHelper.json deleted file mode 100644 index 4ff4215a82..0000000000 --- a/src/test/resources/astDiff/PREV-SNAPSHOT/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.jms.JmsMessageHelper.json +++ /dev/null @@ -1,31153 +0,0 @@ -[ { - "firstType" : "CompilationUnit", - "secondType" : "CompilationUnit", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "", - "secondParentType" : "", - "firstPos" : 0, - "secondPos" : 0, - "firstEndPos" : 25605, - "secondEndPos" : 26283 -}, { - "firstType" : "PackageDeclaration", - "secondType" : "PackageDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 0, - "secondPos" : 0, - "firstEndPos" : 848, - "secondEndPos" : 848 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "PackageDeclaration", - "secondParentType" : "PackageDeclaration", - "firstPos" : 0, - "secondPos" : 0, - "firstEndPos" : 803, - "secondEndPos" : 803 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 7, - "secondPos" : 7, - "firstEndPos" : 799, - "secondEndPos" : 799 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Licensed to the Apache Software Foundation (ASF) under one or more", - "secondLabel" : "Licensed to the Apache Software Foundation (ASF) under one or more", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 7, - "secondPos" : 7, - "firstEndPos" : 73, - "secondEndPos" : 73 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "contributor license agreements. See the NOTICE file distributed with", - "secondLabel" : "contributor license agreements. See the NOTICE file distributed with", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 77, - "secondPos" : 77, - "firstEndPos" : 146, - "secondEndPos" : 146 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "this work for additional information regarding copyright ownership.", - "secondLabel" : "this work for additional information regarding copyright ownership.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 150, - "secondPos" : 150, - "firstEndPos" : 217, - "secondEndPos" : 217 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "The ASF licenses this file to You under the Apache License, Version 2.0", - "secondLabel" : "The ASF licenses this file to You under the Apache License, Version 2.0", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 221, - "secondPos" : 221, - "firstEndPos" : 292, - "secondEndPos" : 292 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "(the \"License\"); you may not use this file except in compliance with", - "secondLabel" : "(the \"License\"); you may not use this file except in compliance with", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 296, - "secondPos" : 296, - "firstEndPos" : 364, - "secondEndPos" : 364 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "the License. You may obtain a copy of the License at", - "secondLabel" : "the License. You may obtain a copy of the License at", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 368, - "secondPos" : 368, - "firstEndPos" : 421, - "secondEndPos" : 421 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "http://www.apache.org/licenses/LICENSE-2.0", - "secondLabel" : "http://www.apache.org/licenses/LICENSE-2.0", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 433, - "secondPos" : 433, - "firstEndPos" : 475, - "secondEndPos" : 475 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Unless required by applicable law or agreed to in writing, software", - "secondLabel" : "Unless required by applicable law or agreed to in writing, software", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 482, - "secondPos" : 482, - "firstEndPos" : 549, - "secondEndPos" : 549 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "distributed under the License is distributed on an \"AS IS\" BASIS,", - "secondLabel" : "distributed under the License is distributed on an \"AS IS\" BASIS,", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 553, - "secondPos" : 553, - "firstEndPos" : 618, - "secondEndPos" : 618 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", - "secondLabel" : "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 622, - "secondPos" : 622, - "firstEndPos" : 694, - "secondEndPos" : 694 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "See the License for the specific language governing permissions and", - "secondLabel" : "See the License for the specific language governing permissions and", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 698, - "secondPos" : 698, - "firstEndPos" : 765, - "secondEndPos" : 765 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "limitations under the License.", - "secondLabel" : "limitations under the License.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 769, - "secondPos" : 769, - "firstEndPos" : 799, - "secondEndPos" : 799 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.component.sjms.jms", - "secondLabel" : "org.apache.camel.component.sjms.jms", - "firstParentType" : "PackageDeclaration", - "secondParentType" : "PackageDeclaration", - "firstPos" : 812, - "secondPos" : 812, - "firstEndPos" : 847, - "secondEndPos" : 847 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 850, - "secondPos" : 850, - "firstEndPos" : 870, - "secondEndPos" : 870 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.io.File", - "secondLabel" : "java.io.File", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 857, - "secondPos" : 857, - "firstEndPos" : 869, - "secondEndPos" : 869 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 871, - "secondPos" : 871, - "firstEndPos" : 898, - "secondEndPos" : 898 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.io.InputStream", - "secondLabel" : "java.io.InputStream", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 878, - "secondPos" : 878, - "firstEndPos" : 897, - "secondEndPos" : 897 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 899, - "secondPos" : 899, - "firstEndPos" : 921, - "secondEndPos" : 921 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.io.Reader", - "secondLabel" : "java.io.Reader", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 906, - "secondPos" : 906, - "firstEndPos" : 920, - "secondEndPos" : 920 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 922, - "secondPos" : 922, - "firstEndPos" : 950, - "secondEndPos" : 950 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.io.Serializable", - "secondLabel" : "java.io.Serializable", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 929, - "secondPos" : 929, - "firstEndPos" : 949, - "secondEndPos" : 949 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 951, - "secondPos" : 951, - "firstEndPos" : 978, - "secondEndPos" : 978 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.nio.ByteBuffer", - "secondLabel" : "java.nio.ByteBuffer", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 958, - "secondPos" : 958, - "firstEndPos" : 977, - "secondEndPos" : 977 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 979, - "secondPos" : 979, - "firstEndPos" : 1006, - "secondEndPos" : 1006 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.nio.CharBuffer", - "secondLabel" : "java.nio.CharBuffer", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 986, - "secondPos" : 986, - "firstEndPos" : 1005, - "secondEndPos" : 1005 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1007, - "secondPos" : 1007, - "firstEndPos" : 1034, - "secondEndPos" : 1034 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.util.ArrayList", - "secondLabel" : "java.util.ArrayList", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1014, - "secondPos" : 1014, - "firstEndPos" : 1033, - "secondEndPos" : 1033 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1035, - "secondPos" : 1035, - "firstEndPos" : 1063, - "secondEndPos" : 1063 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.util.Collection", - "secondLabel" : "java.util.Collection", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1042, - "secondPos" : 1042, - "firstEndPos" : 1062, - "secondEndPos" : 1062 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1064, - "secondPos" : 1064, - "firstEndPos" : 1093, - "secondEndPos" : 1093 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.util.Enumeration", - "secondLabel" : "java.util.Enumeration", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1071, - "secondPos" : 1071, - "firstEndPos" : 1092, - "secondEndPos" : 1092 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1094, - "secondPos" : 1094, - "firstEndPos" : 1119, - "secondEndPos" : 1119 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.util.HashMap", - "secondLabel" : "java.util.HashMap", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1101, - "secondPos" : 1101, - "firstEndPos" : 1118, - "secondEndPos" : 1118 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1120, - "secondPos" : 1120, - "firstEndPos" : 1142, - "secondEndPos" : 1142 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.util.List", - "secondLabel" : "java.util.List", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1127, - "secondPos" : 1127, - "firstEndPos" : 1141, - "secondEndPos" : 1141 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1143, - "secondPos" : 1143, - "firstEndPos" : 1164, - "secondEndPos" : 1164 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.util.Map", - "secondLabel" : "java.util.Map", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1150, - "secondPos" : 1150, - "firstEndPos" : 1163, - "secondEndPos" : 1163 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1165, - "secondPos" : 1165, - "firstEndPos" : 1186, - "secondEndPos" : 1186 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "java.util.Set", - "secondLabel" : "java.util.Set", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1172, - "secondPos" : 1172, - "firstEndPos" : 1185, - "secondEndPos" : 1185 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1187, - "secondPos" : 1187, - "firstEndPos" : 1217, - "secondEndPos" : 1217 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.BytesMessage", - "secondLabel" : "javax.jms.BytesMessage", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1194, - "secondPos" : 1194, - "firstEndPos" : 1216, - "secondEndPos" : 1216 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1218, - "secondPos" : 1218, - "firstEndPos" : 1248, - "secondEndPos" : 1248 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.DeliveryMode", - "secondLabel" : "javax.jms.DeliveryMode", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1225, - "secondPos" : 1225, - "firstEndPos" : 1247, - "secondEndPos" : 1247 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1249, - "secondPos" : 1249, - "firstEndPos" : 1278, - "secondEndPos" : 1278 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.Destination", - "secondLabel" : "javax.jms.Destination", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1256, - "secondPos" : 1256, - "firstEndPos" : 1277, - "secondEndPos" : 1277 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1279, - "secondPos" : 1279, - "firstEndPos" : 1309, - "secondEndPos" : 1309 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.JMSException", - "secondLabel" : "javax.jms.JMSException", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1286, - "secondPos" : 1286, - "firstEndPos" : 1308, - "secondEndPos" : 1308 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1310, - "secondPos" : 1310, - "firstEndPos" : 1338, - "secondEndPos" : 1338 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.MapMessage", - "secondLabel" : "javax.jms.MapMessage", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1317, - "secondPos" : 1317, - "firstEndPos" : 1337, - "secondEndPos" : 1337 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1339, - "secondPos" : 1339, - "firstEndPos" : 1364, - "secondEndPos" : 1364 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.Message", - "secondLabel" : "javax.jms.Message", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1346, - "secondPos" : 1346, - "firstEndPos" : 1363, - "secondEndPos" : 1363 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1365, - "secondPos" : 1365, - "firstEndPos" : 1396, - "secondEndPos" : 1396 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.ObjectMessage", - "secondLabel" : "javax.jms.ObjectMessage", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1372, - "secondPos" : 1372, - "firstEndPos" : 1395, - "secondEndPos" : 1395 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1397, - "secondPos" : 1397, - "firstEndPos" : 1422, - "secondEndPos" : 1422 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.Session", - "secondLabel" : "javax.jms.Session", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1404, - "secondPos" : 1404, - "firstEndPos" : 1421, - "secondEndPos" : 1421 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1423, - "secondPos" : 1423, - "firstEndPos" : 1454, - "secondEndPos" : 1454 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.StreamMessage", - "secondLabel" : "javax.jms.StreamMessage", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1430, - "secondPos" : 1430, - "firstEndPos" : 1453, - "secondEndPos" : 1453 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1455, - "secondPos" : 1455, - "firstEndPos" : 1484, - "secondEndPos" : 1484 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.TextMessage", - "secondLabel" : "javax.jms.TextMessage", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1462, - "secondPos" : 1462, - "firstEndPos" : 1483, - "secondEndPos" : 1483 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1486, - "secondPos" : 1486, - "firstEndPos" : 1519, - "secondEndPos" : 1519 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.Endpoint", - "secondLabel" : "org.apache.camel.Endpoint", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1493, - "secondPos" : 1493, - "firstEndPos" : 1518, - "secondEndPos" : 1518 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1520, - "secondPos" : 1520, - "firstEndPos" : 1553, - "secondEndPos" : 1553 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.Exchange", - "secondLabel" : "org.apache.camel.Exchange", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1527, - "secondPos" : 1527, - "firstEndPos" : 1552, - "secondEndPos" : 1552 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1554, - "secondPos" : 1554, - "firstEndPos" : 1600, - "secondEndPos" : 1600 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.RuntimeCamelException", - "secondLabel" : "org.apache.camel.RuntimeCamelException", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1561, - "secondPos" : 1561, - "firstEndPos" : 1599, - "secondEndPos" : 1599 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1601, - "secondPos" : 1601, - "firstEndPos" : 1639, - "secondEndPos" : 1639 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.TypeConverter", - "secondLabel" : "org.apache.camel.TypeConverter", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1608, - "secondPos" : 1608, - "firstEndPos" : 1638, - "secondEndPos" : 1638 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1640, - "secondPos" : 1640, - "firstEndPos" : 1693, - "secondEndPos" : 1693 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.component.sjms.SjmsConstants", - "secondLabel" : "org.apache.camel.component.sjms.SjmsConstants", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1647, - "secondPos" : 1647, - "firstEndPos" : 1692, - "secondEndPos" : 1692 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1694, - "secondPos" : 1694, - "firstEndPos" : 1746, - "secondEndPos" : 1746 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.component.sjms.SjmsEndpoint", - "secondLabel" : "org.apache.camel.component.sjms.SjmsEndpoint", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1701, - "secondPos" : 1701, - "firstEndPos" : 1745, - "secondEndPos" : 1745 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1747, - "secondPos" : 1747, - "firstEndPos" : 1791, - "secondEndPos" : 1791 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.impl.DefaultMessage", - "secondLabel" : "org.apache.camel.impl.DefaultMessage", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1754, - "secondPos" : 1754, - "firstEndPos" : 1790, - "secondEndPos" : 1790 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1792, - "secondPos" : 1792, - "firstEndPos" : 1834, - "secondEndPos" : 1834 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.apache.camel.util.ObjectHelper", - "secondLabel" : "org.apache.camel.util.ObjectHelper", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1799, - "secondPos" : 1799, - "firstEndPos" : 1833, - "secondEndPos" : 1833 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1835, - "secondPos" : 1835, - "firstEndPos" : 1859, - "secondEndPos" : 1859 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.slf4j.Logger", - "secondLabel" : "org.slf4j.Logger", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1842, - "secondPos" : 1842, - "firstEndPos" : 1858, - "secondEndPos" : 1858 -}, { - "firstType" : "ImportDeclaration", - "secondType" : "ImportDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1860, - "secondPos" : 1860, - "firstEndPos" : 1891, - "secondEndPos" : 1891 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "org.slf4j.LoggerFactory", - "secondLabel" : "org.slf4j.LoggerFactory", - "firstParentType" : "ImportDeclaration", - "secondParentType" : "ImportDeclaration", - "firstPos" : 1867, - "secondPos" : 1867, - "firstEndPos" : 1890, - "secondEndPos" : 1890 -}, { - "firstType" : "TypeDeclaration", - "secondType" : "TypeDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CompilationUnit", - "secondParentType" : "CompilationUnit", - "firstPos" : 1893, - "secondPos" : 1893, - "firstEndPos" : 25605, - "secondEndPos" : 26283 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1893, - "secondPos" : 1893, - "firstEndPos" : 1948, - "secondEndPos" : 1948 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 1900, - "secondPos" : 1900, - "firstEndPos" : 1944, - "secondEndPos" : 1944 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Utility class for ", - "secondLabel" : "Utility class for ", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 1900, - "secondPos" : 1900, - "firstEndPos" : 1918, - "secondEndPos" : 1918 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 1918, - "secondPos" : 1918, - "firstEndPos" : 1943, - "secondEndPos" : 1943 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@link", - "secondLabel" : "@link", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 1918, - "secondPos" : 1918, - "firstEndPos" : 1923, - "secondEndPos" : 1923 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.Message", - "secondLabel" : "javax.jms.Message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 1925, - "secondPos" : 1925, - "firstEndPos" : 1942, - "secondEndPos" : 1942 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : ".", - "secondLabel" : ".", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 1943, - "secondPos" : 1943, - "firstEndPos" : 1944, - "secondEndPos" : 1944 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1949, - "secondPos" : 1949, - "firstEndPos" : 1955, - "secondEndPos" : 1955 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1956, - "secondPos" : 1956, - "firstEndPos" : 1961, - "secondEndPos" : 1961 -}, { - "firstType" : "TYPE_DECLARATION_KIND", - "secondType" : "TYPE_DECLARATION_KIND", - "firstLabel" : "class", - "secondLabel" : "class", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1962, - "secondPos" : 1962, - "firstEndPos" : 1967, - "secondEndPos" : 1967 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageHelper", - "secondLabel" : "JmsMessageHelper", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1968, - "secondPos" : 1968, - "firstEndPos" : 1984, - "secondEndPos" : 1984 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsConstants", - "secondLabel" : "JmsConstants", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 1996, - "secondPos" : 1996, - "firstEndPos" : 2008, - "secondEndPos" : 2008 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 1996, - "secondPos" : 1996, - "firstEndPos" : 2008, - "secondEndPos" : 2008 -}, { - "firstType" : "FieldDeclaration", - "secondType" : "FieldDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 2016, - "secondPos" : 2016, - "firstEndPos" : 2101, - "secondEndPos" : 2101 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 2016, - "secondPos" : 2016, - "firstEndPos" : 2023, - "secondEndPos" : 2023 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 2024, - "secondPos" : 2024, - "firstEndPos" : 2030, - "secondEndPos" : 2030 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 2031, - "secondPos" : 2031, - "firstEndPos" : 2036, - "secondEndPos" : 2036 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Logger", - "secondLabel" : "Logger", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2037, - "secondPos" : 2037, - "firstEndPos" : 2043, - "secondEndPos" : 2043 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 2037, - "secondPos" : 2037, - "firstEndPos" : 2043, - "secondEndPos" : 2043 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "FieldDeclaration", - "secondParentType" : "FieldDeclaration", - "firstPos" : 2044, - "secondPos" : 2044, - "firstEndPos" : 2100, - "secondEndPos" : 2100 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "LOGGER", - "secondLabel" : "LOGGER", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 2044, - "secondPos" : 2044, - "firstEndPos" : 2050, - "secondEndPos" : 2050 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 2053, - "secondPos" : 2053, - "firstEndPos" : 2100, - "secondEndPos" : 2100 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2053, - "secondPos" : 2053, - "firstEndPos" : 2066, - "secondEndPos" : 2066 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "LoggerFactory", - "secondLabel" : "LoggerFactory", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 2053, - "secondPos" : 2053, - "firstEndPos" : 2066, - "secondEndPos" : 2066 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getLogger", - "secondLabel" : "getLogger", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2067, - "secondPos" : 2067, - "firstEndPos" : 2076, - "secondEndPos" : 2076 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2077, - "secondPos" : 2077, - "firstEndPos" : 2099, - "secondEndPos" : 2099 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2077, - "secondPos" : 2077, - "firstEndPos" : 2099, - "secondEndPos" : 2099 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageHelper", - "secondLabel" : "JmsMessageHelper", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2077, - "secondPos" : 2077, - "firstEndPos" : 2093, - "secondEndPos" : 2093 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 2077, - "secondPos" : 2077, - "firstEndPos" : 2093, - "secondEndPos" : 2093 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 2107, - "secondPos" : 2107, - "firstEndPos" : 2141, - "secondEndPos" : 2141 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2107, - "secondPos" : 2107, - "firstEndPos" : 2114, - "secondEndPos" : 2114 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageHelper", - "secondLabel" : "JmsMessageHelper", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2115, - "secondPos" : 2115, - "firstEndPos" : 2131, - "secondEndPos" : 2131 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2134, - "secondPos" : 2134, - "firstEndPos" : 2141, - "secondEndPos" : 2141 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 2147, - "secondPos" : 2147, - "firstEndPos" : 2394, - "secondEndPos" : 2284 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2147, - "secondPos" : 2147, - "firstEndPos" : 2153, - "secondEndPos" : 2153 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2154, - "secondPos" : 2154, - "firstEndPos" : 2160, - "secondEndPos" : 2160 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exchange", - "secondLabel" : "Exchange", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2161, - "secondPos" : 2161, - "firstEndPos" : 2169, - "secondEndPos" : 2169 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2161, - "secondPos" : 2161, - "firstEndPos" : 2169, - "secondEndPos" : 2169 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createExchange", - "secondLabel" : "createExchange", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2170, - "secondPos" : 2170, - "firstEndPos" : 2184, - "secondEndPos" : 2184 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2185, - "secondPos" : 2185, - "firstEndPos" : 2200, - "secondEndPos" : 2200 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2185, - "secondPos" : 2185, - "firstEndPos" : 2192, - "secondEndPos" : 2192 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2185, - "secondPos" : 2185, - "firstEndPos" : 2192, - "secondEndPos" : 2192 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2193, - "secondPos" : 2193, - "firstEndPos" : 2200, - "secondEndPos" : 2200 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2202, - "secondPos" : 2202, - "firstEndPos" : 2219, - "secondEndPos" : 2219 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Endpoint", - "secondLabel" : "Endpoint", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2202, - "secondPos" : 2202, - "firstEndPos" : 2210, - "secondEndPos" : 2210 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2202, - "secondPos" : 2202, - "firstEndPos" : 2210, - "secondEndPos" : 2210 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2211, - "secondPos" : 2211, - "firstEndPos" : 2219, - "secondEndPos" : 2219 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2221, - "secondPos" : 2221, - "firstEndPos" : 2394, - "secondEndPos" : 2284 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2231, - "secondPos" : 2866, - "firstEndPos" : 2277, - "secondEndPos" : 2912 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exchange", - "secondLabel" : "Exchange", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2231, - "secondPos" : 2866, - "firstEndPos" : 2239, - "secondEndPos" : 2874 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 2231, - "secondPos" : 2866, - "firstEndPos" : 2239, - "secondEndPos" : 2874 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 2240, - "secondPos" : 2875, - "firstEndPos" : 2276, - "secondEndPos" : 2911 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 2240, - "secondPos" : 2875, - "firstEndPos" : 2248, - "secondEndPos" : 2883 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 2251, - "secondPos" : 2886, - "firstEndPos" : 2276, - "secondEndPos" : 2911 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2251, - "secondPos" : 2886, - "firstEndPos" : 2259, - "secondEndPos" : 2894 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 2251, - "secondPos" : 2886, - "firstEndPos" : 2259, - "secondEndPos" : 2894 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createExchange", - "secondLabel" : "createExchange", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2260, - "secondPos" : 2895, - "firstEndPos" : 2274, - "secondEndPos" : 2909 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2286, - "secondPos" : 3079, - "firstEndPos" : 2388, - "secondEndPos" : 3159 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 2293, - "secondPos" : 3086, - "firstEndPos" : 2387, - "secondEndPos" : 3158 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "populateExchange", - "secondLabel" : "populateExchange", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2293, - "secondPos" : 3086, - "firstEndPos" : 2309, - "secondEndPos" : 3102 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2310, - "secondPos" : 3103, - "firstEndPos" : 2386, - "secondEndPos" : 3157 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2310, - "secondPos" : 3103, - "firstEndPos" : 2317, - "secondEndPos" : 3110 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2319, - "secondPos" : 3112, - "firstEndPos" : 2327, - "secondEndPos" : 3120 -}, { - "firstType" : "BooleanLiteral", - "secondType" : "BooleanLiteral", - "firstLabel" : "false", - "secondLabel" : "false", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2329, - "secondPos" : 3122, - "firstEndPos" : 2334, - "secondEndPos" : 3127 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 2400, - "secondPos" : 3171, - "firstEndPos" : 5805, - "secondEndPos" : 6576 -}, { - "firstType" : "SingleMemberAnnotation", - "secondType" : "SingleMemberAnnotation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2400, - "secondPos" : 3171, - "firstEndPos" : 2430, - "secondEndPos" : 3201 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "SuppressWarnings", - "secondLabel" : "SuppressWarnings", - "firstParentType" : "SingleMemberAnnotation", - "secondParentType" : "SingleMemberAnnotation", - "firstPos" : 2401, - "secondPos" : 3172, - "firstEndPos" : 2417, - "secondEndPos" : 3188 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"unchecked\"", - "secondLabel" : "\"unchecked\"", - "firstParentType" : "SingleMemberAnnotation", - "secondParentType" : "SingleMemberAnnotation", - "firstPos" : 2418, - "secondPos" : 3189, - "firstEndPos" : 2429, - "secondEndPos" : 3200 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2435, - "secondPos" : 3206, - "firstEndPos" : 2441, - "secondEndPos" : 3212 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2442, - "secondPos" : 3213, - "firstEndPos" : 2448, - "secondEndPos" : 3219 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exchange", - "secondLabel" : "Exchange", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2449, - "secondPos" : 3220, - "firstEndPos" : 2457, - "secondEndPos" : 3228 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2449, - "secondPos" : 3220, - "firstEndPos" : 2457, - "secondEndPos" : 3228 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "populateExchange", - "secondLabel" : "populateExchange", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2458, - "secondPos" : 3229, - "firstEndPos" : 2474, - "secondEndPos" : 3245 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2475, - "secondPos" : 3246, - "firstEndPos" : 2490, - "secondEndPos" : 3261 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2475, - "secondPos" : 3246, - "firstEndPos" : 2482, - "secondEndPos" : 3253 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2475, - "secondPos" : 3246, - "firstEndPos" : 2482, - "secondEndPos" : 3253 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2483, - "secondPos" : 3254, - "firstEndPos" : 2490, - "secondEndPos" : 3261 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2492, - "secondPos" : 3263, - "firstEndPos" : 2509, - "secondEndPos" : 3280 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exchange", - "secondLabel" : "Exchange", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2492, - "secondPos" : 3263, - "firstEndPos" : 2500, - "secondEndPos" : 3271 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2492, - "secondPos" : 3263, - "firstEndPos" : 2500, - "secondEndPos" : 3271 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2501, - "secondPos" : 3272, - "firstEndPos" : 2509, - "secondEndPos" : 3280 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2511, - "secondPos" : 3282, - "firstEndPos" : 2522, - "secondEndPos" : 3293 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2511, - "secondPos" : 3282, - "firstEndPos" : 2518, - "secondEndPos" : 3289 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "out", - "secondLabel" : "out", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2519, - "secondPos" : 3290, - "firstEndPos" : 2522, - "secondEndPos" : 3293 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2524, - "secondPos" : 3295, - "firstEndPos" : 2559, - "secondEndPos" : 3330 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "KeyFormatStrategy", - "secondLabel" : "KeyFormatStrategy", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2524, - "secondPos" : 3295, - "firstEndPos" : 2541, - "secondEndPos" : 3312 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2524, - "secondPos" : 3295, - "firstEndPos" : 2541, - "secondEndPos" : 3312 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "keyFormatStrategy", - "secondLabel" : "keyFormatStrategy", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 2542, - "secondPos" : 3313, - "firstEndPos" : 2559, - "secondEndPos" : 3330 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 2561, - "secondPos" : 3332, - "firstEndPos" : 5805, - "secondEndPos" : 6576 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2571, - "secondPos" : 3342, - "firstEndPos" : 5774, - "secondEndPos" : 6545 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 2575, - "secondPos" : 3346, - "firstEndPos" : 5704, - "secondEndPos" : 6475 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2589, - "secondPos" : 3360, - "firstEndPos" : 2653, - "secondEndPos" : 3424 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 2589, - "secondPos" : 3360, - "firstEndPos" : 2652, - "secondEndPos" : 3423 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJmsMessageHeaders", - "secondLabel" : "setJmsMessageHeaders", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2589, - "secondPos" : 3360, - "firstEndPos" : 2609, - "secondEndPos" : 3380 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2610, - "secondPos" : 3381, - "firstEndPos" : 2651, - "secondEndPos" : 3422 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2610, - "secondPos" : 3381, - "firstEndPos" : 2617, - "secondEndPos" : 3388 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2619, - "secondPos" : 3390, - "firstEndPos" : 2627, - "secondEndPos" : 3398 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "out", - "secondLabel" : "out", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2629, - "secondPos" : 3400, - "firstEndPos" : 2632, - "secondEndPos" : 3403 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "keyFormatStrategy", - "secondLabel" : "keyFormatStrategy", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 2634, - "secondPos" : 3405, - "firstEndPos" : 2651, - "secondEndPos" : 3422 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2666, - "secondPos" : 3437, - "firstEndPos" : 5694, - "secondEndPos" : 6465 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 2670, - "secondPos" : 3441, - "firstEndPos" : 2685, - "secondEndPos" : 3456 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 2670, - "secondPos" : 3441, - "firstEndPos" : 2677, - "secondEndPos" : 3448 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!=", - "secondLabel" : "!=", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 2678, - "secondPos" : 3449, - "firstEndPos" : 2680, - "secondEndPos" : 3451 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 2681, - "secondPos" : 3452, - "firstEndPos" : 2685, - "secondEndPos" : 3456 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 2687, - "secondPos" : 3458, - "firstEndPos" : 5694, - "secondEndPos" : 6465 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// convert to JMS Message of the given type", - "secondLabel" : "// convert to JMS Message of the given type", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2705, - "secondPos" : 3476, - "firstEndPos" : 2748, - "secondEndPos" : 3519 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2766, - "secondPos" : 3537, - "firstEndPos" : 2793, - "secondEndPos" : 3564 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "DefaultMessage", - "secondLabel" : "DefaultMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2766, - "secondPos" : 3537, - "firstEndPos" : 2780, - "secondEndPos" : 3551 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 2766, - "secondPos" : 3537, - "firstEndPos" : 2780, - "secondEndPos" : 3551 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 2781, - "secondPos" : 3552, - "firstEndPos" : 2792, - "secondEndPos" : 3563 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 2781, - "secondPos" : 3552, - "firstEndPos" : 2792, - "secondEndPos" : 3563 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2810, - "secondPos" : 3581, - "firstEndPos" : 3002, - "secondEndPos" : 3773 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "out", - "secondLabel" : "out", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 2814, - "secondPos" : 3585, - "firstEndPos" : 2817, - "secondEndPos" : 3588 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 2819, - "secondPos" : 3590, - "firstEndPos" : 2908, - "secondEndPos" : 3679 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2841, - "secondPos" : 3612, - "firstEndPos" : 2890, - "secondEndPos" : 3661 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 2841, - "secondPos" : 3612, - "firstEndPos" : 2889, - "secondEndPos" : 3660 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2841, - "secondPos" : 3612, - "firstEndPos" : 2852, - "secondEndPos" : 3623 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2853, - "secondPos" : 3624, - "firstEndPos" : 2854, - "secondEndPos" : 3625 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2855, - "secondPos" : 3626, - "firstEndPos" : 2889, - "secondEndPos" : 3660 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "DefaultMessage", - "secondLabel" : "DefaultMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2856, - "secondPos" : 3627, - "firstEndPos" : 2870, - "secondEndPos" : 3641 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 2856, - "secondPos" : 3627, - "firstEndPos" : 2870, - "secondEndPos" : 3641 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 2872, - "secondPos" : 3643, - "firstEndPos" : 2889, - "secondEndPos" : 3660 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2872, - "secondPos" : 3643, - "firstEndPos" : 2880, - "secondEndPos" : 3651 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 2872, - "secondPos" : 3643, - "firstEndPos" : 2880, - "secondEndPos" : 3651 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getOut", - "secondLabel" : "getOut", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2881, - "secondPos" : 3652, - "firstEndPos" : 2887, - "secondEndPos" : 3658 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 2914, - "secondPos" : 3685, - "firstEndPos" : 3002, - "secondEndPos" : 3773 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 2936, - "secondPos" : 3707, - "firstEndPos" : 2984, - "secondEndPos" : 3755 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 2936, - "secondPos" : 3707, - "firstEndPos" : 2983, - "secondEndPos" : 3754 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2936, - "secondPos" : 3707, - "firstEndPos" : 2947, - "secondEndPos" : 3718 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2948, - "secondPos" : 3719, - "firstEndPos" : 2949, - "secondEndPos" : 3720 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 2950, - "secondPos" : 3721, - "firstEndPos" : 2983, - "secondEndPos" : 3754 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "DefaultMessage", - "secondLabel" : "DefaultMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 2951, - "secondPos" : 3722, - "firstEndPos" : 2965, - "secondEndPos" : 3736 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 2951, - "secondPos" : 3722, - "firstEndPos" : 2965, - "secondEndPos" : 3736 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 2967, - "secondPos" : 3738, - "firstEndPos" : 2983, - "secondEndPos" : 3754 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2967, - "secondPos" : 3738, - "firstEndPos" : 2975, - "secondEndPos" : 3746 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 2967, - "secondPos" : 3738, - "firstEndPos" : 2975, - "secondEndPos" : 3746 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getIn", - "secondLabel" : "getIn", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 2976, - "secondPos" : 3747, - "firstEndPos" : 2981, - "secondEndPos" : 3752 -}, { - "firstType" : "SwitchStatement", - "secondType" : "SwitchStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3019, - "secondPos" : 3790, - "firstEndPos" : 5680, - "secondEndPos" : 6451 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3027, - "secondPos" : 3798, - "firstEndPos" : 3075, - "secondEndPos" : 3846 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3027, - "secondPos" : 3798, - "firstEndPos" : 3043, - "secondEndPos" : 3814 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageHelper", - "secondLabel" : "JmsMessageHelper", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3027, - "secondPos" : 3798, - "firstEndPos" : 3043, - "secondEndPos" : 3814 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "discoverJmsMessageType", - "secondLabel" : "discoverJmsMessageType", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3044, - "secondPos" : 3815, - "firstEndPos" : 3066, - "secondEndPos" : 3837 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3067, - "secondPos" : 3838, - "firstEndPos" : 3074, - "secondEndPos" : 3845 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3067, - "secondPos" : 3838, - "firstEndPos" : 3074, - "secondEndPos" : 3845 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3095, - "secondPos" : 3866, - "firstEndPos" : 3106, - "secondEndPos" : 3877 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Bytes", - "secondLabel" : "Bytes", - "firstParentType" : "SwitchCase", - "secondParentType" : "SwitchCase", - "firstPos" : 3100, - "secondPos" : 3871, - "firstEndPos" : 3105, - "secondEndPos" : 3876 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3127, - "secondPos" : 3898, - "firstEndPos" : 3178, - "secondEndPos" : 3949 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "BytesMessage", - "secondLabel" : "BytesMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3127, - "secondPos" : 3898, - "firstEndPos" : 3139, - "secondEndPos" : 3910 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 3127, - "secondPos" : 3898, - "firstEndPos" : 3139, - "secondEndPos" : 3910 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 3140, - "secondPos" : 3911, - "firstEndPos" : 3177, - "secondEndPos" : 3948 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bytesMessage", - "secondLabel" : "bytesMessage", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 3140, - "secondPos" : 3911, - "firstEndPos" : 3152, - "secondEndPos" : 3923 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 3155, - "secondPos" : 3926, - "firstEndPos" : 3177, - "secondEndPos" : 3948 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "BytesMessage", - "secondLabel" : "BytesMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3156, - "secondPos" : 3927, - "firstEndPos" : 3168, - "secondEndPos" : 3939 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 3156, - "secondPos" : 3927, - "firstEndPos" : 3168, - "secondEndPos" : 3939 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 3170, - "secondPos" : 3941, - "firstEndPos" : 3177, - "secondEndPos" : 3948 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3199, - "secondPos" : 3970, - "firstEndPos" : 3422, - "secondEndPos" : 4193 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 3203, - "secondPos" : 3974, - "firstEndPos" : 3251, - "secondEndPos" : 4022 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 3203, - "secondPos" : 3974, - "firstEndPos" : 3231, - "secondEndPos" : 4002 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3203, - "secondPos" : 3974, - "firstEndPos" : 3215, - "secondEndPos" : 3986 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bytesMessage", - "secondLabel" : "bytesMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3203, - "secondPos" : 3974, - "firstEndPos" : 3215, - "secondEndPos" : 3986 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getBodyLength", - "secondLabel" : "getBodyLength", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3216, - "secondPos" : 3987, - "firstEndPos" : 3229, - "secondEndPos" : 4000 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : ">", - "secondLabel" : ">", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 3232, - "secondPos" : 4003, - "firstEndPos" : 3233, - "secondEndPos" : 4004 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "Integer.MAX_VALUE", - "secondLabel" : "Integer.MAX_VALUE", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 3234, - "secondPos" : 4005, - "firstEndPos" : 3251, - "secondEndPos" : 4022 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 3253, - "secondPos" : 4024, - "firstEndPos" : 3422, - "secondEndPos" : 4193 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3279, - "secondPos" : 4050, - "firstEndPos" : 3363, - "secondEndPos" : 4134 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 3279, - "secondPos" : 4050, - "firstEndPos" : 3362, - "secondEndPos" : 4133 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3279, - "secondPos" : 4050, - "firstEndPos" : 3285, - "secondEndPos" : 4056 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "LOGGER", - "secondLabel" : "LOGGER", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3279, - "secondPos" : 4050, - "firstEndPos" : 3285, - "secondEndPos" : 4056 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "warn", - "secondLabel" : "warn", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3286, - "secondPos" : 4057, - "firstEndPos" : 3290, - "secondEndPos" : 4061 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3291, - "secondPos" : 4062, - "firstEndPos" : 3361, - "secondEndPos" : 4132 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Length of BytesMessage is too long: {}\"", - "secondLabel" : "\"Length of BytesMessage is too long: {}\"", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3291, - "secondPos" : 4062, - "firstEndPos" : 3331, - "secondEndPos" : 4102 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3333, - "secondPos" : 4104, - "firstEndPos" : 3361, - "secondEndPos" : 4132 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3333, - "secondPos" : 4104, - "firstEndPos" : 3345, - "secondEndPos" : 4116 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bytesMessage", - "secondLabel" : "bytesMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3333, - "secondPos" : 4104, - "firstEndPos" : 3345, - "secondEndPos" : 4116 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getBodyLength", - "secondLabel" : "getBodyLength", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3346, - "secondPos" : 4117, - "firstEndPos" : 3359, - "secondEndPos" : 4130 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 3388, - "secondPos" : 4159, - "firstEndPos" : 3400, - "secondEndPos" : 4171 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 3395, - "secondPos" : 4166, - "firstEndPos" : 3399, - "secondEndPos" : 4170 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3443, - "secondPos" : 4214, - "firstEndPos" : 3504, - "secondEndPos" : 4275 -}, { - "firstType" : "ArrayType", - "secondType" : "ArrayType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 3443, - "secondPos" : 4214, - "firstEndPos" : 3449, - "secondEndPos" : 4220 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "byte", - "secondLabel" : "byte", - "firstParentType" : "ArrayType", - "secondParentType" : "ArrayType", - "firstPos" : 3443, - "secondPos" : 4214, - "firstEndPos" : 3447, - "secondEndPos" : 4218 -}, { - "firstType" : "Dimension", - "secondType" : "Dimension", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ArrayType", - "secondParentType" : "ArrayType", - "firstPos" : 3447, - "secondPos" : 4218, - "firstEndPos" : 3449, - "secondEndPos" : 4220 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 3450, - "secondPos" : 4221, - "firstEndPos" : 3503, - "secondEndPos" : 4274 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "result", - "secondLabel" : "result", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 3450, - "secondPos" : 4221, - "firstEndPos" : 3456, - "secondEndPos" : 4227 -}, { - "firstType" : "ArrayCreation", - "secondType" : "ArrayCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 3459, - "secondPos" : 4230, - "firstEndPos" : 3503, - "secondEndPos" : 4274 -}, { - "firstType" : "ArrayType", - "secondType" : "ArrayType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ArrayCreation", - "secondParentType" : "ArrayCreation", - "firstPos" : 3463, - "secondPos" : 4234, - "firstEndPos" : 3503, - "secondEndPos" : 4274 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "byte", - "secondLabel" : "byte", - "firstParentType" : "ArrayType", - "secondParentType" : "ArrayType", - "firstPos" : 3463, - "secondPos" : 4234, - "firstEndPos" : 3467, - "secondEndPos" : 4238 -}, { - "firstType" : "Dimension", - "secondType" : "Dimension", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ArrayType", - "secondParentType" : "ArrayType", - "firstPos" : 3467, - "secondPos" : 4238, - "firstEndPos" : 3503, - "secondEndPos" : 4274 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Dimension", - "secondParentType" : "Dimension", - "firstPos" : 3468, - "secondPos" : 4239, - "firstEndPos" : 3502, - "secondEndPos" : 4273 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "int", - "secondLabel" : "int", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 3469, - "secondPos" : 4240, - "firstEndPos" : 3472, - "secondEndPos" : 4243 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 3474, - "secondPos" : 4245, - "firstEndPos" : 3502, - "secondEndPos" : 4273 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3474, - "secondPos" : 4245, - "firstEndPos" : 3486, - "secondEndPos" : 4257 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bytesMessage", - "secondLabel" : "bytesMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3474, - "secondPos" : 4245, - "firstEndPos" : 3486, - "secondEndPos" : 4257 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getBodyLength", - "secondLabel" : "getBodyLength", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3487, - "secondPos" : 4258, - "firstEndPos" : 3500, - "secondEndPos" : 4271 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3525, - "secondPos" : 4296, - "firstEndPos" : 3556, - "secondEndPos" : 4327 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 3525, - "secondPos" : 4296, - "firstEndPos" : 3555, - "secondEndPos" : 4326 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3525, - "secondPos" : 4296, - "firstEndPos" : 3537, - "secondEndPos" : 4308 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bytesMessage", - "secondLabel" : "bytesMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3525, - "secondPos" : 4296, - "firstEndPos" : 3537, - "secondEndPos" : 4308 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "readBytes", - "secondLabel" : "readBytes", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3538, - "secondPos" : 4309, - "firstEndPos" : 3547, - "secondEndPos" : 4318 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3548, - "secondPos" : 4319, - "firstEndPos" : 3554, - "secondEndPos" : 4325 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "result", - "secondLabel" : "result", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3548, - "secondPos" : 4319, - "firstEndPos" : 3554, - "secondEndPos" : 4325 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3577, - "secondPos" : 4348, - "firstEndPos" : 3653, - "secondEndPos" : 4424 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 3577, - "secondPos" : 4348, - "firstEndPos" : 3652, - "secondEndPos" : 4423 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3577, - "secondPos" : 4348, - "firstEndPos" : 3588, - "secondEndPos" : 4359 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3577, - "secondPos" : 4348, - "firstEndPos" : 3588, - "secondEndPos" : 4359 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setHeader", - "secondLabel" : "setHeader", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3589, - "secondPos" : 4360, - "firstEndPos" : 3598, - "secondEndPos" : 4369 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3599, - "secondPos" : 4370, - "firstEndPos" : 3651, - "secondEndPos" : 4422 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "SjmsConstants.JMS_MESSAGE_TYPE", - "secondLabel" : "SjmsConstants.JMS_MESSAGE_TYPE", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3599, - "secondPos" : 4370, - "firstEndPos" : 3629, - "secondEndPos" : 4400 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Bytes", - "secondLabel" : "JmsMessageType.Bytes", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3631, - "secondPos" : 4402, - "firstEndPos" : 3651, - "secondEndPos" : 4422 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3674, - "secondPos" : 4445, - "firstEndPos" : 3702, - "secondEndPos" : 4473 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 3674, - "secondPos" : 4445, - "firstEndPos" : 3701, - "secondEndPos" : 4472 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3674, - "secondPos" : 4445, - "firstEndPos" : 3685, - "secondEndPos" : 4456 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3674, - "secondPos" : 4445, - "firstEndPos" : 3685, - "secondEndPos" : 4456 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setBody", - "secondLabel" : "setBody", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3686, - "secondPos" : 4457, - "firstEndPos" : 3693, - "secondEndPos" : 4464 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3694, - "secondPos" : 4465, - "firstEndPos" : 3700, - "secondEndPos" : 4471 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "result", - "secondLabel" : "result", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 3694, - "secondPos" : 4465, - "firstEndPos" : 3700, - "secondEndPos" : 4471 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3723, - "secondPos" : 4494, - "firstEndPos" : 3729, - "secondEndPos" : 4500 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3746, - "secondPos" : 4517, - "firstEndPos" : 3755, - "secondEndPos" : 4526 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "SwitchCase", - "secondParentType" : "SwitchCase", - "firstPos" : 3751, - "secondPos" : 4522, - "firstEndPos" : 3754, - "secondEndPos" : 4525 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3776, - "secondPos" : 4547, - "firstEndPos" : 3833, - "secondEndPos" : 4604 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 3776, - "secondPos" : 4547, - "firstEndPos" : 3795, - "secondEndPos" : 4566 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3776, - "secondPos" : 4547, - "firstEndPos" : 3779, - "secondEndPos" : 4550 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 3776, - "secondPos" : 4547, - "firstEndPos" : 3779, - "secondEndPos" : 4550 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3780, - "secondPos" : 4551, - "firstEndPos" : 3786, - "secondEndPos" : 4557 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 3780, - "secondPos" : 4551, - "firstEndPos" : 3786, - "secondEndPos" : 4557 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3788, - "secondPos" : 4559, - "firstEndPos" : 3794, - "secondEndPos" : 4565 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 3788, - "secondPos" : 4559, - "firstEndPos" : 3794, - "secondEndPos" : 4565 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 3796, - "secondPos" : 4567, - "firstEndPos" : 3832, - "secondEndPos" : 4603 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "body", - "secondLabel" : "body", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 3796, - "secondPos" : 4567, - "firstEndPos" : 3800, - "secondEndPos" : 4571 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 3803, - "secondPos" : 4574, - "firstEndPos" : 3832, - "secondEndPos" : 4603 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 3807, - "secondPos" : 4578, - "firstEndPos" : 3830, - "secondEndPos" : 4601 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "HashMap", - "secondLabel" : "HashMap", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3807, - "secondPos" : 4578, - "firstEndPos" : 3814, - "secondEndPos" : 4585 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 3807, - "secondPos" : 4578, - "firstEndPos" : 3814, - "secondEndPos" : 4585 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3815, - "secondPos" : 4586, - "firstEndPos" : 3821, - "secondEndPos" : 4592 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 3815, - "secondPos" : 4586, - "firstEndPos" : 3821, - "secondEndPos" : 4592 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3823, - "secondPos" : 4594, - "firstEndPos" : 3829, - "secondEndPos" : 4600 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 3823, - "secondPos" : 4594, - "firstEndPos" : 3829, - "secondEndPos" : 4600 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3854, - "secondPos" : 4625, - "firstEndPos" : 3899, - "secondEndPos" : 4670 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "MapMessage", - "secondLabel" : "MapMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3854, - "secondPos" : 4625, - "firstEndPos" : 3864, - "secondEndPos" : 4635 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 3854, - "secondPos" : 4625, - "firstEndPos" : 3864, - "secondEndPos" : 4635 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 3865, - "secondPos" : 4636, - "firstEndPos" : 3898, - "secondEndPos" : 4669 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "mapMessage", - "secondLabel" : "mapMessage", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 3865, - "secondPos" : 4636, - "firstEndPos" : 3875, - "secondEndPos" : 4646 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 3878, - "secondPos" : 4649, - "firstEndPos" : 3898, - "secondEndPos" : 4669 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "MapMessage", - "secondLabel" : "MapMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3879, - "secondPos" : 4650, - "firstEndPos" : 3889, - "secondEndPos" : 4660 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 3879, - "secondPos" : 4650, - "firstEndPos" : 3889, - "secondEndPos" : 4660 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 3891, - "secondPos" : 4662, - "firstEndPos" : 3898, - "secondEndPos" : 4669 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3920, - "secondPos" : 4691, - "firstEndPos" : 3973, - "secondEndPos" : 4744 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 3920, - "secondPos" : 4691, - "firstEndPos" : 3939, - "secondEndPos" : 4710 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Enumeration", - "secondLabel" : "Enumeration", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3920, - "secondPos" : 4691, - "firstEndPos" : 3931, - "secondEndPos" : 4702 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 3920, - "secondPos" : 4691, - "firstEndPos" : 3931, - "secondEndPos" : 4702 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 3932, - "secondPos" : 4703, - "firstEndPos" : 3938, - "secondEndPos" : 4709 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 3932, - "secondPos" : 4703, - "firstEndPos" : 3938, - "secondEndPos" : 4709 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 3940, - "secondPos" : 4711, - "firstEndPos" : 3972, - "secondEndPos" : 4743 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "names", - "secondLabel" : "names", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 3940, - "secondPos" : 4711, - "firstEndPos" : 3945, - "secondEndPos" : 4716 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 3948, - "secondPos" : 4719, - "firstEndPos" : 3972, - "secondEndPos" : 4743 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3948, - "secondPos" : 4719, - "firstEndPos" : 3958, - "secondEndPos" : 4729 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "mapMessage", - "secondLabel" : "mapMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 3948, - "secondPos" : 4719, - "firstEndPos" : 3958, - "secondEndPos" : 4729 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getMapNames", - "secondLabel" : "getMapNames", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 3959, - "secondPos" : 4730, - "firstEndPos" : 3970, - "secondEndPos" : 4741 -}, { - "firstType" : "WhileStatement", - "secondType" : "WhileStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 3994, - "secondPos" : 4765, - "firstEndPos" : 4219, - "secondEndPos" : 4990 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "WhileStatement", - "secondParentType" : "WhileStatement", - "firstPos" : 4001, - "secondPos" : 4772, - "firstEndPos" : 4024, - "secondEndPos" : 4795 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4001, - "secondPos" : 4772, - "firstEndPos" : 4006, - "secondEndPos" : 4777 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "names", - "secondLabel" : "names", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 4001, - "secondPos" : 4772, - "firstEndPos" : 4006, - "secondEndPos" : 4777 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "hasMoreElements", - "secondLabel" : "hasMoreElements", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4007, - "secondPos" : 4778, - "firstEndPos" : 4022, - "secondEndPos" : 4793 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "WhileStatement", - "secondParentType" : "WhileStatement", - "firstPos" : 4026, - "secondPos" : 4797, - "firstEndPos" : 4219, - "secondEndPos" : 4990 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4052, - "secondPos" : 4823, - "firstEndPos" : 4085, - "secondEndPos" : 4856 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4052, - "secondPos" : 4823, - "firstEndPos" : 4058, - "secondEndPos" : 4829 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 4052, - "secondPos" : 4823, - "firstEndPos" : 4058, - "secondEndPos" : 4829 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 4059, - "secondPos" : 4830, - "firstEndPos" : 4084, - "secondEndPos" : 4855 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 4059, - "secondPos" : 4830, - "firstEndPos" : 4062, - "secondEndPos" : 4833 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 4065, - "secondPos" : 4836, - "firstEndPos" : 4084, - "secondEndPos" : 4855 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4065, - "secondPos" : 4836, - "firstEndPos" : 4070, - "secondEndPos" : 4841 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "names", - "secondLabel" : "names", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 4065, - "secondPos" : 4836, - "firstEndPos" : 4070, - "secondEndPos" : 4841 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "nextElement", - "secondLabel" : "nextElement", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4071, - "secondPos" : 4842, - "firstEndPos" : 4082, - "secondEndPos" : 4853 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4110, - "secondPos" : 4881, - "firstEndPos" : 4151, - "secondEndPos" : 4922 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4110, - "secondPos" : 4881, - "firstEndPos" : 4116, - "secondEndPos" : 4887 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 4110, - "secondPos" : 4881, - "firstEndPos" : 4116, - "secondEndPos" : 4887 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 4117, - "secondPos" : 4888, - "firstEndPos" : 4150, - "secondEndPos" : 4921 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 4117, - "secondPos" : 4888, - "firstEndPos" : 4122, - "secondEndPos" : 4893 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 4125, - "secondPos" : 4896, - "firstEndPos" : 4150, - "secondEndPos" : 4921 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4125, - "secondPos" : 4896, - "firstEndPos" : 4135, - "secondEndPos" : 4906 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "mapMessage", - "secondLabel" : "mapMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 4125, - "secondPos" : 4896, - "firstEndPos" : 4135, - "secondEndPos" : 4906 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getObject", - "secondLabel" : "getObject", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4136, - "secondPos" : 4907, - "firstEndPos" : 4145, - "secondEndPos" : 4916 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4146, - "secondPos" : 4917, - "firstEndPos" : 4149, - "secondEndPos" : 4920 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4146, - "secondPos" : 4917, - "firstEndPos" : 4149, - "secondEndPos" : 4920 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 4176, - "secondPos" : 4947, - "firstEndPos" : 4197, - "secondEndPos" : 4968 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 4176, - "secondPos" : 4947, - "firstEndPos" : 4196, - "secondEndPos" : 4967 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4176, - "secondPos" : 4947, - "firstEndPos" : 4180, - "secondEndPos" : 4951 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "body", - "secondLabel" : "body", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 4176, - "secondPos" : 4947, - "firstEndPos" : 4180, - "secondEndPos" : 4951 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4181, - "secondPos" : 4952, - "firstEndPos" : 4184, - "secondEndPos" : 4955 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4185, - "secondPos" : 4956, - "firstEndPos" : 4195, - "secondEndPos" : 4966 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4185, - "secondPos" : 4956, - "firstEndPos" : 4188, - "secondEndPos" : 4959 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4190, - "secondPos" : 4961, - "firstEndPos" : 4195, - "secondEndPos" : 4966 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4240, - "secondPos" : 5011, - "firstEndPos" : 4314, - "secondEndPos" : 5085 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 4240, - "secondPos" : 5011, - "firstEndPos" : 4313, - "secondEndPos" : 5084 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4240, - "secondPos" : 5011, - "firstEndPos" : 4251, - "secondEndPos" : 5022 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 4240, - "secondPos" : 5011, - "firstEndPos" : 4251, - "secondEndPos" : 5022 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setHeader", - "secondLabel" : "setHeader", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4252, - "secondPos" : 5023, - "firstEndPos" : 4261, - "secondEndPos" : 5032 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4262, - "secondPos" : 5033, - "firstEndPos" : 4312, - "secondEndPos" : 5083 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "SjmsConstants.JMS_MESSAGE_TYPE", - "secondLabel" : "SjmsConstants.JMS_MESSAGE_TYPE", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4262, - "secondPos" : 5033, - "firstEndPos" : 4292, - "secondEndPos" : 5063 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Map", - "secondLabel" : "JmsMessageType.Map", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4294, - "secondPos" : 5065, - "firstEndPos" : 4312, - "secondEndPos" : 5083 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4335, - "secondPos" : 5106, - "firstEndPos" : 4361, - "secondEndPos" : 5132 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 4335, - "secondPos" : 5106, - "firstEndPos" : 4360, - "secondEndPos" : 5131 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4335, - "secondPos" : 5106, - "firstEndPos" : 4346, - "secondEndPos" : 5117 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 4335, - "secondPos" : 5106, - "firstEndPos" : 4346, - "secondEndPos" : 5117 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setBody", - "secondLabel" : "setBody", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4347, - "secondPos" : 5118, - "firstEndPos" : 4354, - "secondEndPos" : 5125 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4355, - "secondPos" : 5126, - "firstEndPos" : 4359, - "secondEndPos" : 5130 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "body", - "secondLabel" : "body", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4355, - "secondPos" : 5126, - "firstEndPos" : 4359, - "secondEndPos" : 5130 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4382, - "secondPos" : 5153, - "firstEndPos" : 4388, - "secondEndPos" : 5159 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4405, - "secondPos" : 5176, - "firstEndPos" : 4417, - "secondEndPos" : 5188 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SwitchCase", - "secondParentType" : "SwitchCase", - "firstPos" : 4410, - "secondPos" : 5181, - "firstEndPos" : 4416, - "secondEndPos" : 5187 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4438, - "secondPos" : 5209, - "firstEndPos" : 4485, - "secondEndPos" : 5256 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "ObjectMessage", - "secondLabel" : "ObjectMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4438, - "secondPos" : 5209, - "firstEndPos" : 4451, - "secondEndPos" : 5222 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 4438, - "secondPos" : 5209, - "firstEndPos" : 4451, - "secondEndPos" : 5222 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 4452, - "secondPos" : 5223, - "firstEndPos" : 4484, - "secondEndPos" : 5255 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "objMsg", - "secondLabel" : "objMsg", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 4452, - "secondPos" : 5223, - "firstEndPos" : 4458, - "secondEndPos" : 5229 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 4461, - "secondPos" : 5232, - "firstEndPos" : 4484, - "secondEndPos" : 5255 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "ObjectMessage", - "secondLabel" : "ObjectMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4462, - "secondPos" : 5233, - "firstEndPos" : 4475, - "secondEndPos" : 5246 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 4462, - "secondPos" : 5233, - "firstEndPos" : 4475, - "secondEndPos" : 5246 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 4477, - "secondPos" : 5248, - "firstEndPos" : 4484, - "secondEndPos" : 5255 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4506, - "secondPos" : 5277, - "firstEndPos" : 4583, - "secondEndPos" : 5354 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 4506, - "secondPos" : 5277, - "firstEndPos" : 4582, - "secondEndPos" : 5353 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4506, - "secondPos" : 5277, - "firstEndPos" : 4517, - "secondEndPos" : 5288 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 4506, - "secondPos" : 5277, - "firstEndPos" : 4517, - "secondEndPos" : 5288 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setHeader", - "secondLabel" : "setHeader", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4518, - "secondPos" : 5289, - "firstEndPos" : 4527, - "secondEndPos" : 5298 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4528, - "secondPos" : 5299, - "firstEndPos" : 4581, - "secondEndPos" : 5352 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "SjmsConstants.JMS_MESSAGE_TYPE", - "secondLabel" : "SjmsConstants.JMS_MESSAGE_TYPE", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4528, - "secondPos" : 5299, - "firstEndPos" : 4558, - "secondEndPos" : 5329 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Object", - "secondLabel" : "JmsMessageType.Object", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4560, - "secondPos" : 5331, - "firstEndPos" : 4581, - "secondEndPos" : 5352 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4604, - "secondPos" : 5375, - "firstEndPos" : 4644, - "secondEndPos" : 5415 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 4604, - "secondPos" : 5375, - "firstEndPos" : 4643, - "secondEndPos" : 5414 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4604, - "secondPos" : 5375, - "firstEndPos" : 4615, - "secondEndPos" : 5386 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 4604, - "secondPos" : 5375, - "firstEndPos" : 4615, - "secondEndPos" : 5386 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setBody", - "secondLabel" : "setBody", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4616, - "secondPos" : 5387, - "firstEndPos" : 4623, - "secondEndPos" : 5394 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4624, - "secondPos" : 5395, - "firstEndPos" : 4642, - "secondEndPos" : 5413 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4624, - "secondPos" : 5395, - "firstEndPos" : 4642, - "secondEndPos" : 5413 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4624, - "secondPos" : 5395, - "firstEndPos" : 4630, - "secondEndPos" : 5401 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "objMsg", - "secondLabel" : "objMsg", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 4624, - "secondPos" : 5395, - "firstEndPos" : 4630, - "secondEndPos" : 5401 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getObject", - "secondLabel" : "getObject", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4631, - "secondPos" : 5402, - "firstEndPos" : 4640, - "secondEndPos" : 5411 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4665, - "secondPos" : 5436, - "firstEndPos" : 4671, - "secondEndPos" : 5442 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4688, - "secondPos" : 5459, - "firstEndPos" : 4698, - "secondEndPos" : 5469 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Text", - "secondLabel" : "Text", - "firstParentType" : "SwitchCase", - "secondParentType" : "SwitchCase", - "firstPos" : 4693, - "secondPos" : 5464, - "firstEndPos" : 4697, - "secondEndPos" : 5468 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4719, - "secondPos" : 5490, - "firstEndPos" : 4763, - "secondEndPos" : 5534 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "TextMessage", - "secondLabel" : "TextMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4719, - "secondPos" : 5490, - "firstEndPos" : 4730, - "secondEndPos" : 5501 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 4719, - "secondPos" : 5490, - "firstEndPos" : 4730, - "secondEndPos" : 5501 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 4731, - "secondPos" : 5502, - "firstEndPos" : 4762, - "secondEndPos" : 5533 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "textMsg", - "secondLabel" : "textMsg", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 4731, - "secondPos" : 5502, - "firstEndPos" : 4738, - "secondEndPos" : 5509 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 4741, - "secondPos" : 5512, - "firstEndPos" : 4762, - "secondEndPos" : 5533 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "TextMessage", - "secondLabel" : "TextMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4742, - "secondPos" : 5513, - "firstEndPos" : 4753, - "secondEndPos" : 5524 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 4742, - "secondPos" : 5513, - "firstEndPos" : 4753, - "secondEndPos" : 5524 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 4755, - "secondPos" : 5526, - "firstEndPos" : 4762, - "secondEndPos" : 5533 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4784, - "secondPos" : 5555, - "firstEndPos" : 4859, - "secondEndPos" : 5630 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 4784, - "secondPos" : 5555, - "firstEndPos" : 4858, - "secondEndPos" : 5629 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4784, - "secondPos" : 5555, - "firstEndPos" : 4795, - "secondEndPos" : 5566 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 4784, - "secondPos" : 5555, - "firstEndPos" : 4795, - "secondEndPos" : 5566 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setHeader", - "secondLabel" : "setHeader", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4796, - "secondPos" : 5567, - "firstEndPos" : 4805, - "secondEndPos" : 5576 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4806, - "secondPos" : 5577, - "firstEndPos" : 4857, - "secondEndPos" : 5628 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "SjmsConstants.JMS_MESSAGE_TYPE", - "secondLabel" : "SjmsConstants.JMS_MESSAGE_TYPE", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4806, - "secondPos" : 5577, - "firstEndPos" : 4836, - "secondEndPos" : 5607 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Text", - "secondLabel" : "JmsMessageType.Text", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4838, - "secondPos" : 5609, - "firstEndPos" : 4857, - "secondEndPos" : 5628 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4880, - "secondPos" : 5651, - "firstEndPos" : 4919, - "secondEndPos" : 5690 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 4880, - "secondPos" : 5651, - "firstEndPos" : 4918, - "secondEndPos" : 5689 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4880, - "secondPos" : 5651, - "firstEndPos" : 4891, - "secondEndPos" : 5662 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 4880, - "secondPos" : 5651, - "firstEndPos" : 4891, - "secondEndPos" : 5662 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setBody", - "secondLabel" : "setBody", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4892, - "secondPos" : 5663, - "firstEndPos" : 4899, - "secondEndPos" : 5670 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4900, - "secondPos" : 5671, - "firstEndPos" : 4917, - "secondEndPos" : 5688 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 4900, - "secondPos" : 5671, - "firstEndPos" : 4917, - "secondEndPos" : 5688 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4900, - "secondPos" : 5671, - "firstEndPos" : 4907, - "secondEndPos" : 5678 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "textMsg", - "secondLabel" : "textMsg", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 4900, - "secondPos" : 5671, - "firstEndPos" : 4907, - "secondEndPos" : 5678 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getText", - "secondLabel" : "getText", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 4908, - "secondPos" : 5679, - "firstEndPos" : 4915, - "secondEndPos" : 5686 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4940, - "secondPos" : 5711, - "firstEndPos" : 4946, - "secondEndPos" : 5717 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4963, - "secondPos" : 5734, - "firstEndPos" : 4975, - "secondEndPos" : 5746 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Stream", - "secondLabel" : "Stream", - "firstParentType" : "SwitchCase", - "secondParentType" : "SwitchCase", - "firstPos" : 4968, - "secondPos" : 5739, - "firstEndPos" : 4974, - "secondEndPos" : 5745 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 4996, - "secondPos" : 5767, - "firstEndPos" : 5050, - "secondEndPos" : 5821 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "StreamMessage", - "secondLabel" : "StreamMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 4996, - "secondPos" : 5767, - "firstEndPos" : 5009, - "secondEndPos" : 5780 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 4996, - "secondPos" : 5767, - "firstEndPos" : 5009, - "secondEndPos" : 5780 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 5010, - "secondPos" : 5781, - "firstEndPos" : 5049, - "secondEndPos" : 5820 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "streamMessage", - "secondLabel" : "streamMessage", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 5010, - "secondPos" : 5781, - "firstEndPos" : 5023, - "secondEndPos" : 5794 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 5026, - "secondPos" : 5797, - "firstEndPos" : 5049, - "secondEndPos" : 5820 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "StreamMessage", - "secondLabel" : "StreamMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5027, - "secondPos" : 5798, - "firstEndPos" : 5040, - "secondEndPos" : 5811 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 5027, - "secondPos" : 5798, - "firstEndPos" : 5040, - "secondEndPos" : 5811 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 5042, - "secondPos" : 5813, - "firstEndPos" : 5049, - "secondEndPos" : 5820 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 5071, - "secondPos" : 5842, - "firstEndPos" : 5115, - "secondEndPos" : 5886 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 5071, - "secondPos" : 5842, - "firstEndPos" : 5083, - "secondEndPos" : 5854 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "List", - "secondLabel" : "List", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5071, - "secondPos" : 5842, - "firstEndPos" : 5075, - "secondEndPos" : 5846 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 5071, - "secondPos" : 5842, - "firstEndPos" : 5075, - "secondEndPos" : 5846 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5076, - "secondPos" : 5847, - "firstEndPos" : 5082, - "secondEndPos" : 5853 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 5076, - "secondPos" : 5847, - "firstEndPos" : 5082, - "secondEndPos" : 5853 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 5084, - "secondPos" : 5855, - "firstEndPos" : 5114, - "secondEndPos" : 5885 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "list", - "secondLabel" : "list", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 5084, - "secondPos" : 5855, - "firstEndPos" : 5088, - "secondEndPos" : 5859 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 5091, - "secondPos" : 5862, - "firstEndPos" : 5114, - "secondEndPos" : 5885 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 5095, - "secondPos" : 5866, - "firstEndPos" : 5112, - "secondEndPos" : 5883 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "ArrayList", - "secondLabel" : "ArrayList", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5095, - "secondPos" : 5866, - "firstEndPos" : 5104, - "secondEndPos" : 5875 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 5095, - "secondPos" : 5866, - "firstEndPos" : 5104, - "secondEndPos" : 5875 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5105, - "secondPos" : 5876, - "firstEndPos" : 5111, - "secondEndPos" : 5882 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 5105, - "secondPos" : 5876, - "firstEndPos" : 5111, - "secondEndPos" : 5882 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 5136, - "secondPos" : 5907, - "firstEndPos" : 5147, - "secondEndPos" : 5918 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5136, - "secondPos" : 5907, - "firstEndPos" : 5142, - "secondEndPos" : 5913 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 5136, - "secondPos" : 5907, - "firstEndPos" : 5142, - "secondEndPos" : 5913 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "obj", - "secondLabel" : "obj", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 5143, - "secondPos" : 5914, - "firstEndPos" : 5146, - "secondEndPos" : 5917 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 5143, - "secondPos" : 5914, - "firstEndPos" : 5146, - "secondEndPos" : 5917 -}, { - "firstType" : "WhileStatement", - "secondType" : "WhileStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 5168, - "secondPos" : 5939, - "firstEndPos" : 5281, - "secondEndPos" : 6052 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "WhileStatement", - "secondParentType" : "WhileStatement", - "firstPos" : 5175, - "secondPos" : 5946, - "firstEndPos" : 5217, - "secondEndPos" : 5988 -}, { - "firstType" : "ParenthesizedExpression", - "secondType" : "ParenthesizedExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 5175, - "secondPos" : 5946, - "firstEndPos" : 5209, - "secondEndPos" : 5980 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParenthesizedExpression", - "secondParentType" : "ParenthesizedExpression", - "firstPos" : 5176, - "secondPos" : 5947, - "firstEndPos" : 5208, - "secondEndPos" : 5979 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "obj", - "secondLabel" : "obj", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 5176, - "secondPos" : 5947, - "firstEndPos" : 5179, - "secondEndPos" : 5950 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 5180, - "secondPos" : 5951, - "firstEndPos" : 5181, - "secondEndPos" : 5952 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 5182, - "secondPos" : 5953, - "firstEndPos" : 5208, - "secondEndPos" : 5979 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5182, - "secondPos" : 5953, - "firstEndPos" : 5195, - "secondEndPos" : 5966 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "streamMessage", - "secondLabel" : "streamMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 5182, - "secondPos" : 5953, - "firstEndPos" : 5195, - "secondEndPos" : 5966 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "readObject", - "secondLabel" : "readObject", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5196, - "secondPos" : 5967, - "firstEndPos" : 5206, - "secondEndPos" : 5977 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!=", - "secondLabel" : "!=", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 5210, - "secondPos" : 5981, - "firstEndPos" : 5212, - "secondEndPos" : 5983 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 5213, - "secondPos" : 5984, - "firstEndPos" : 5217, - "secondEndPos" : 5988 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "WhileStatement", - "secondParentType" : "WhileStatement", - "firstPos" : 5219, - "secondPos" : 5990, - "firstEndPos" : 5281, - "secondEndPos" : 6052 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 5245, - "secondPos" : 6016, - "firstEndPos" : 5259, - "secondEndPos" : 6030 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 5245, - "secondPos" : 6016, - "firstEndPos" : 5258, - "secondEndPos" : 6029 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5245, - "secondPos" : 6016, - "firstEndPos" : 5249, - "secondEndPos" : 6020 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "list", - "secondLabel" : "list", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 5245, - "secondPos" : 6016, - "firstEndPos" : 5249, - "secondEndPos" : 6020 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "add", - "secondLabel" : "add", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5250, - "secondPos" : 6021, - "firstEndPos" : 5253, - "secondEndPos" : 6024 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5254, - "secondPos" : 6025, - "firstEndPos" : 5257, - "secondEndPos" : 6028 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "obj", - "secondLabel" : "obj", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 5254, - "secondPos" : 6025, - "firstEndPos" : 5257, - "secondEndPos" : 6028 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 5302, - "secondPos" : 6073, - "firstEndPos" : 5379, - "secondEndPos" : 6150 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 5302, - "secondPos" : 6073, - "firstEndPos" : 5378, - "secondEndPos" : 6149 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5302, - "secondPos" : 6073, - "firstEndPos" : 5313, - "secondEndPos" : 6084 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 5302, - "secondPos" : 6073, - "firstEndPos" : 5313, - "secondEndPos" : 6084 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setHeader", - "secondLabel" : "setHeader", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5314, - "secondPos" : 6085, - "firstEndPos" : 5323, - "secondEndPos" : 6094 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5324, - "secondPos" : 6095, - "firstEndPos" : 5377, - "secondEndPos" : 6148 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "SjmsConstants.JMS_MESSAGE_TYPE", - "secondLabel" : "SjmsConstants.JMS_MESSAGE_TYPE", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 5324, - "secondPos" : 6095, - "firstEndPos" : 5354, - "secondEndPos" : 6125 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Stream", - "secondLabel" : "JmsMessageType.Stream", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 5356, - "secondPos" : 6127, - "firstEndPos" : 5377, - "secondEndPos" : 6148 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 5400, - "secondPos" : 6171, - "firstEndPos" : 5426, - "secondEndPos" : 6197 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 5400, - "secondPos" : 6171, - "firstEndPos" : 5425, - "secondEndPos" : 6196 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5400, - "secondPos" : 6171, - "firstEndPos" : 5411, - "secondEndPos" : 6182 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 5400, - "secondPos" : 6171, - "firstEndPos" : 5411, - "secondEndPos" : 6182 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setBody", - "secondLabel" : "setBody", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5412, - "secondPos" : 6183, - "firstEndPos" : 5419, - "secondEndPos" : 6190 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5420, - "secondPos" : 6191, - "firstEndPos" : 5424, - "secondEndPos" : 6195 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "list", - "secondLabel" : "list", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 5420, - "secondPos" : 6191, - "firstEndPos" : 5424, - "secondEndPos" : 6195 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 5447, - "secondPos" : 6218, - "firstEndPos" : 5453, - "secondEndPos" : 6224 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 5470, - "secondPos" : 6241, - "firstEndPos" : 5483, - "secondEndPos" : 6254 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SwitchCase", - "secondParentType" : "SwitchCase", - "firstPos" : 5475, - "secondPos" : 6246, - "firstEndPos" : 5482, - "secondEndPos" : 6253 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 5500, - "secondPos" : 6271, - "firstEndPos" : 5508, - "secondEndPos" : 6279 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// Do nothing. Only set the headers for an empty message", - "secondLabel" : "// Do nothing. Only set the headers for an empty message", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 5529, - "secondPos" : 6300, - "firstEndPos" : 5585, - "secondEndPos" : 6356 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 5606, - "secondPos" : 6377, - "firstEndPos" : 5635, - "secondEndPos" : 6406 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 5606, - "secondPos" : 6377, - "firstEndPos" : 5634, - "secondEndPos" : 6405 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5606, - "secondPos" : 6377, - "firstEndPos" : 5617, - "secondEndPos" : 6388 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyMessage", - "secondLabel" : "bodyMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 5606, - "secondPos" : 6377, - "firstEndPos" : 5617, - "secondEndPos" : 6388 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setBody", - "secondLabel" : "setBody", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5618, - "secondPos" : 6389, - "firstEndPos" : 5625, - "secondEndPos" : 6396 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5626, - "secondPos" : 6397, - "firstEndPos" : 5633, - "secondEndPos" : 6404 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 5626, - "secondPos" : 6397, - "firstEndPos" : 5633, - "secondEndPos" : 6404 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 5656, - "secondPos" : 6427, - "firstEndPos" : 5662, - "secondEndPos" : 6433 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 5705, - "secondPos" : 6476, - "firstEndPos" : 5774, - "secondEndPos" : 6545 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 5712, - "secondPos" : 6483, - "firstEndPos" : 5723, - "secondEndPos" : 6494 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exception", - "secondLabel" : "Exception", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5712, - "secondPos" : 6483, - "firstEndPos" : 5721, - "secondEndPos" : 6492 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 5712, - "secondPos" : 6483, - "firstEndPos" : 5721, - "secondEndPos" : 6492 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 5722, - "secondPos" : 6493, - "firstEndPos" : 5723, - "secondEndPos" : 6494 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 5725, - "secondPos" : 6496, - "firstEndPos" : 5774, - "secondEndPos" : 6545 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 5739, - "secondPos" : 6510, - "firstEndPos" : 5764, - "secondEndPos" : 6535 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 5739, - "secondPos" : 6510, - "firstEndPos" : 5763, - "secondEndPos" : 6534 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5739, - "secondPos" : 6510, - "firstEndPos" : 5747, - "secondEndPos" : 6518 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 5739, - "secondPos" : 6510, - "firstEndPos" : 5747, - "secondEndPos" : 6518 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setException", - "secondLabel" : "setException", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5748, - "secondPos" : 6519, - "firstEndPos" : 5760, - "secondEndPos" : 6531 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 5761, - "secondPos" : 6532, - "firstEndPos" : 5762, - "secondEndPos" : 6533 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 5761, - "secondPos" : 6532, - "firstEndPos" : 5762, - "secondEndPos" : 6533 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 5783, - "secondPos" : 6554, - "firstEndPos" : 5799, - "secondEndPos" : 6570 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 5790, - "secondPos" : 6561, - "firstEndPos" : 5798, - "secondEndPos" : 6569 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 5811, - "secondPos" : 6582, - "firstEndPos" : 6457, - "secondEndPos" : 7228 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5811, - "secondPos" : 6582, - "firstEndPos" : 5817, - "secondEndPos" : 6588 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5818, - "secondPos" : 6589, - "firstEndPos" : 5824, - "secondEndPos" : 6595 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5825, - "secondPos" : 6596, - "firstEndPos" : 5832, - "secondEndPos" : 6603 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5825, - "secondPos" : 6596, - "firstEndPos" : 5832, - "secondEndPos" : 6603 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createMessage", - "secondLabel" : "createMessage", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5833, - "secondPos" : 6604, - "firstEndPos" : 5846, - "secondEndPos" : 6617 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5847, - "secondPos" : 6618, - "firstEndPos" : 5864, - "secondEndPos" : 6635 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exchange", - "secondLabel" : "Exchange", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5847, - "secondPos" : 6618, - "firstEndPos" : 5855, - "secondEndPos" : 6626 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 5847, - "secondPos" : 6618, - "firstEndPos" : 5855, - "secondEndPos" : 6626 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 5856, - "secondPos" : 6627, - "firstEndPos" : 5864, - "secondEndPos" : 6635 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5866, - "secondPos" : 6637, - "firstEndPos" : 5881, - "secondEndPos" : 6652 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Session", - "secondLabel" : "Session", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5866, - "secondPos" : 6637, - "firstEndPos" : 5873, - "secondEndPos" : 6644 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 5866, - "secondPos" : 6637, - "firstEndPos" : 5873, - "secondEndPos" : 6644 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 5874, - "secondPos" : 6645, - "firstEndPos" : 5881, - "secondEndPos" : 6652 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5883, - "secondPos" : 6654, - "firstEndPos" : 5904, - "secondEndPos" : 6675 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "SjmsEndpoint", - "secondLabel" : "SjmsEndpoint", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5883, - "secondPos" : 6654, - "firstEndPos" : 5895, - "secondEndPos" : 6666 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 5883, - "secondPos" : 6654, - "firstEndPos" : 5895, - "secondEndPos" : 6666 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 5896, - "secondPos" : 6667, - "firstEndPos" : 5904, - "secondEndPos" : 6675 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exception", - "secondLabel" : "Exception", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5913, - "secondPos" : 6684, - "firstEndPos" : 5922, - "secondEndPos" : 6693 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5913, - "secondPos" : 6684, - "firstEndPos" : 5922, - "secondEndPos" : 6693 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 5923, - "secondPos" : 6694, - "firstEndPos" : 6457, - "secondEndPos" : 7228 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 5933, - "secondPos" : 6704, - "firstEndPos" : 5948, - "secondEndPos" : 6719 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5933, - "secondPos" : 6704, - "firstEndPos" : 5940, - "secondEndPos" : 6711 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 5933, - "secondPos" : 6704, - "firstEndPos" : 5940, - "secondEndPos" : 6711 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 5941, - "secondPos" : 6712, - "firstEndPos" : 5947, - "secondEndPos" : 6718 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 5941, - "secondPos" : 6712, - "firstEndPos" : 5947, - "secondEndPos" : 6718 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 5957, - "secondPos" : 6728, - "firstEndPos" : 5969, - "secondEndPos" : 6740 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5957, - "secondPos" : 6728, - "firstEndPos" : 5963, - "secondEndPos" : 6734 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 5957, - "secondPos" : 6728, - "firstEndPos" : 5963, - "secondEndPos" : 6734 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "body", - "secondLabel" : "body", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 5964, - "secondPos" : 6735, - "firstEndPos" : 5968, - "secondEndPos" : 6739 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 5964, - "secondPos" : 6735, - "firstEndPos" : 5968, - "secondEndPos" : 6739 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 5978, - "secondPos" : 6749, - "firstEndPos" : 6010, - "secondEndPos" : 6781 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 5978, - "secondPos" : 6749, - "firstEndPos" : 5997, - "secondEndPos" : 6768 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5978, - "secondPos" : 6749, - "firstEndPos" : 5981, - "secondEndPos" : 6752 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 5978, - "secondPos" : 6749, - "firstEndPos" : 5981, - "secondEndPos" : 6752 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5982, - "secondPos" : 6753, - "firstEndPos" : 5988, - "secondEndPos" : 6759 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 5982, - "secondPos" : 6753, - "firstEndPos" : 5988, - "secondEndPos" : 6759 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 5990, - "secondPos" : 6761, - "firstEndPos" : 5996, - "secondEndPos" : 6767 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 5990, - "secondPos" : 6761, - "firstEndPos" : 5996, - "secondEndPos" : 6767 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyHeaders", - "secondLabel" : "bodyHeaders", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 5998, - "secondPos" : 6769, - "firstEndPos" : 6009, - "secondEndPos" : 6780 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 5998, - "secondPos" : 6769, - "firstEndPos" : 6009, - "secondEndPos" : 6780 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 6020, - "secondPos" : 6791, - "firstEndPos" : 6357, - "secondEndPos" : 7128 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 6024, - "secondPos" : 6795, - "firstEndPos" : 6059, - "secondEndPos" : 6830 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 6024, - "secondPos" : 6795, - "firstEndPos" : 6051, - "secondEndPos" : 6822 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6024, - "secondPos" : 6795, - "firstEndPos" : 6041, - "secondEndPos" : 6812 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6024, - "secondPos" : 6795, - "firstEndPos" : 6041, - "secondEndPos" : 6812 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6024, - "secondPos" : 6795, - "firstEndPos" : 6032, - "secondEndPos" : 6803 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6024, - "secondPos" : 6795, - "firstEndPos" : 6032, - "secondEndPos" : 6803 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getOut", - "secondLabel" : "getOut", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6033, - "secondPos" : 6804, - "firstEndPos" : 6039, - "secondEndPos" : 6810 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getBody", - "secondLabel" : "getBody", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6042, - "secondPos" : 6813, - "firstEndPos" : 6049, - "secondEndPos" : 6820 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!=", - "secondLabel" : "!=", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 6052, - "secondPos" : 6823, - "firstEndPos" : 6054, - "secondEndPos" : 6825 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 6055, - "secondPos" : 6826, - "firstEndPos" : 6059, - "secondEndPos" : 6830 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 6061, - "secondPos" : 6832, - "firstEndPos" : 6207, - "secondEndPos" : 6978 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 6075, - "secondPos" : 6846, - "firstEndPos" : 6110, - "secondEndPos" : 6881 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 6075, - "secondPos" : 6846, - "firstEndPos" : 6109, - "secondEndPos" : 6880 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "body", - "secondLabel" : "body", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6075, - "secondPos" : 6846, - "firstEndPos" : 6079, - "secondEndPos" : 6850 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6080, - "secondPos" : 6851, - "firstEndPos" : 6081, - "secondEndPos" : 6852 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6082, - "secondPos" : 6853, - "firstEndPos" : 6109, - "secondEndPos" : 6880 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6082, - "secondPos" : 6853, - "firstEndPos" : 6099, - "secondEndPos" : 6870 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6082, - "secondPos" : 6853, - "firstEndPos" : 6099, - "secondEndPos" : 6870 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6082, - "secondPos" : 6853, - "firstEndPos" : 6090, - "secondEndPos" : 6861 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6082, - "secondPos" : 6853, - "firstEndPos" : 6090, - "secondEndPos" : 6861 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getOut", - "secondLabel" : "getOut", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6091, - "secondPos" : 6862, - "firstEndPos" : 6097, - "secondEndPos" : 6868 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getBody", - "secondLabel" : "getBody", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6100, - "secondPos" : 6871, - "firstEndPos" : 6107, - "secondEndPos" : 6878 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 6123, - "secondPos" : 6894, - "firstEndPos" : 6197, - "secondEndPos" : 6968 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 6123, - "secondPos" : 6894, - "firstEndPos" : 6196, - "secondEndPos" : 6967 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyHeaders", - "secondLabel" : "bodyHeaders", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6123, - "secondPos" : 6894, - "firstEndPos" : 6134, - "secondEndPos" : 6905 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6135, - "secondPos" : 6906, - "firstEndPos" : 6136, - "secondEndPos" : 6907 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6137, - "secondPos" : 6908, - "firstEndPos" : 6196, - "secondEndPos" : 6967 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 6141, - "secondPos" : 6912, - "firstEndPos" : 6164, - "secondEndPos" : 6935 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "HashMap", - "secondLabel" : "HashMap", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6141, - "secondPos" : 6912, - "firstEndPos" : 6148, - "secondEndPos" : 6919 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 6141, - "secondPos" : 6912, - "firstEndPos" : 6148, - "secondEndPos" : 6919 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6149, - "secondPos" : 6920, - "firstEndPos" : 6155, - "secondEndPos" : 6926 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 6149, - "secondPos" : 6920, - "firstEndPos" : 6155, - "secondEndPos" : 6926 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6157, - "secondPos" : 6928, - "firstEndPos" : 6163, - "secondEndPos" : 6934 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 6157, - "secondPos" : 6928, - "firstEndPos" : 6163, - "secondEndPos" : 6934 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 6165, - "secondPos" : 6936, - "firstEndPos" : 6195, - "secondEndPos" : 6966 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6165, - "secondPos" : 6936, - "firstEndPos" : 6182, - "secondEndPos" : 6953 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6165, - "secondPos" : 6936, - "firstEndPos" : 6182, - "secondEndPos" : 6953 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6165, - "secondPos" : 6936, - "firstEndPos" : 6173, - "secondEndPos" : 6944 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6165, - "secondPos" : 6936, - "firstEndPos" : 6173, - "secondEndPos" : 6944 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getOut", - "secondLabel" : "getOut", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6174, - "secondPos" : 6945, - "firstEndPos" : 6180, - "secondEndPos" : 6951 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getHeaders", - "secondLabel" : "getHeaders", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6183, - "secondPos" : 6954, - "firstEndPos" : 6193, - "secondEndPos" : 6964 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 6213, - "secondPos" : 6984, - "firstEndPos" : 6357, - "secondEndPos" : 7128 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 6227, - "secondPos" : 6998, - "firstEndPos" : 6261, - "secondEndPos" : 7032 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 6227, - "secondPos" : 6998, - "firstEndPos" : 6260, - "secondEndPos" : 7031 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "body", - "secondLabel" : "body", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6227, - "secondPos" : 6998, - "firstEndPos" : 6231, - "secondEndPos" : 7002 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6232, - "secondPos" : 7003, - "firstEndPos" : 6233, - "secondEndPos" : 7004 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6234, - "secondPos" : 7005, - "firstEndPos" : 6260, - "secondEndPos" : 7031 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6234, - "secondPos" : 7005, - "firstEndPos" : 6250, - "secondEndPos" : 7021 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6234, - "secondPos" : 7005, - "firstEndPos" : 6250, - "secondEndPos" : 7021 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6234, - "secondPos" : 7005, - "firstEndPos" : 6242, - "secondEndPos" : 7013 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6234, - "secondPos" : 7005, - "firstEndPos" : 6242, - "secondEndPos" : 7013 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getIn", - "secondLabel" : "getIn", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6243, - "secondPos" : 7014, - "firstEndPos" : 6248, - "secondEndPos" : 7019 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getBody", - "secondLabel" : "getBody", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6251, - "secondPos" : 7022, - "firstEndPos" : 6258, - "secondEndPos" : 7029 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 6274, - "secondPos" : 7045, - "firstEndPos" : 6347, - "secondEndPos" : 7118 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 6274, - "secondPos" : 7045, - "firstEndPos" : 6346, - "secondEndPos" : 7117 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyHeaders", - "secondLabel" : "bodyHeaders", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6274, - "secondPos" : 7045, - "firstEndPos" : 6285, - "secondEndPos" : 7056 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6286, - "secondPos" : 7057, - "firstEndPos" : 6287, - "secondEndPos" : 7058 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6288, - "secondPos" : 7059, - "firstEndPos" : 6346, - "secondEndPos" : 7117 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 6292, - "secondPos" : 7063, - "firstEndPos" : 6315, - "secondEndPos" : 7086 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "HashMap", - "secondLabel" : "HashMap", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6292, - "secondPos" : 7063, - "firstEndPos" : 6299, - "secondEndPos" : 7070 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 6292, - "secondPos" : 7063, - "firstEndPos" : 6299, - "secondEndPos" : 7070 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6300, - "secondPos" : 7071, - "firstEndPos" : 6306, - "secondEndPos" : 7077 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 6300, - "secondPos" : 7071, - "firstEndPos" : 6306, - "secondEndPos" : 7077 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6308, - "secondPos" : 7079, - "firstEndPos" : 6314, - "secondEndPos" : 7085 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 6308, - "secondPos" : 7079, - "firstEndPos" : 6314, - "secondEndPos" : 7085 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 6316, - "secondPos" : 7087, - "firstEndPos" : 6345, - "secondEndPos" : 7116 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6316, - "secondPos" : 7087, - "firstEndPos" : 6332, - "secondEndPos" : 7103 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6316, - "secondPos" : 7087, - "firstEndPos" : 6332, - "secondEndPos" : 7103 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6316, - "secondPos" : 7087, - "firstEndPos" : 6324, - "secondEndPos" : 7095 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6316, - "secondPos" : 7087, - "firstEndPos" : 6324, - "secondEndPos" : 7095 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getIn", - "secondLabel" : "getIn", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6325, - "secondPos" : 7096, - "firstEndPos" : 6330, - "secondEndPos" : 7101 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getHeaders", - "secondLabel" : "getHeaders", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6333, - "secondPos" : 7104, - "firstEndPos" : 6343, - "secondEndPos" : 7114 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 6367, - "secondPos" : 7138, - "firstEndPos" : 6428, - "secondEndPos" : 7199 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 6367, - "secondPos" : 7138, - "firstEndPos" : 6427, - "secondEndPos" : 7198 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6367, - "secondPos" : 7138, - "firstEndPos" : 6373, - "secondEndPos" : 7144 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6374, - "secondPos" : 7145, - "firstEndPos" : 6375, - "secondEndPos" : 7146 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 6376, - "secondPos" : 7147, - "firstEndPos" : 6427, - "secondEndPos" : 7198 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createMessage", - "secondLabel" : "createMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6376, - "secondPos" : 7147, - "firstEndPos" : 6389, - "secondEndPos" : 7160 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6390, - "secondPos" : 7161, - "firstEndPos" : 6426, - "secondEndPos" : 7197 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 6390, - "secondPos" : 7161, - "firstEndPos" : 6397, - "secondEndPos" : 7168 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "body", - "secondLabel" : "body", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 6399, - "secondPos" : 7170, - "firstEndPos" : 6403, - "secondEndPos" : 7174 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bodyHeaders", - "secondLabel" : "bodyHeaders", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 6405, - "secondPos" : 7176, - "firstEndPos" : 6416, - "secondEndPos" : 7187 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 6418, - "secondPos" : 7189, - "firstEndPos" : 6426, - "secondEndPos" : 7197 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 6437, - "secondPos" : 7208, - "firstEndPos" : 6451, - "secondEndPos" : 7222 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 6444, - "secondPos" : 7215, - "firstEndPos" : 6450, - "secondEndPos" : 7221 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 6463, - "secondPos" : 7234, - "firstEndPos" : 6790, - "secondEndPos" : 7561 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6463, - "secondPos" : 7234, - "firstEndPos" : 6469, - "secondEndPos" : 7240 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6470, - "secondPos" : 7241, - "firstEndPos" : 6476, - "secondEndPos" : 7247 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6477, - "secondPos" : 7248, - "firstEndPos" : 6484, - "secondEndPos" : 7255 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6477, - "secondPos" : 7248, - "firstEndPos" : 6484, - "secondEndPos" : 7255 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createMessage", - "secondLabel" : "createMessage", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6485, - "secondPos" : 7256, - "firstEndPos" : 6498, - "secondEndPos" : 7269 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6499, - "secondPos" : 7270, - "firstEndPos" : 6514, - "secondEndPos" : 7285 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Session", - "secondLabel" : "Session", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6499, - "secondPos" : 7270, - "firstEndPos" : 6506, - "secondEndPos" : 7277 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6499, - "secondPos" : 7270, - "firstEndPos" : 6506, - "secondEndPos" : 7277 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6507, - "secondPos" : 7278, - "firstEndPos" : 6514, - "secondEndPos" : 7285 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6516, - "secondPos" : 7287, - "firstEndPos" : 6530, - "secondEndPos" : 7301 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6516, - "secondPos" : 7287, - "firstEndPos" : 6522, - "secondEndPos" : 7293 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6516, - "secondPos" : 7287, - "firstEndPos" : 6522, - "secondEndPos" : 7293 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6523, - "secondPos" : 7294, - "firstEndPos" : 6530, - "secondEndPos" : 7301 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6532, - "secondPos" : 7303, - "firstEndPos" : 6566, - "secondEndPos" : 7337 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6532, - "secondPos" : 7303, - "firstEndPos" : 6551, - "secondEndPos" : 7322 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6532, - "secondPos" : 7303, - "firstEndPos" : 6535, - "secondEndPos" : 7306 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 6532, - "secondPos" : 7303, - "firstEndPos" : 6535, - "secondEndPos" : 7306 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6536, - "secondPos" : 7307, - "firstEndPos" : 6542, - "secondEndPos" : 7313 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 6536, - "secondPos" : 7307, - "firstEndPos" : 6542, - "secondEndPos" : 7313 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6544, - "secondPos" : 7315, - "firstEndPos" : 6550, - "secondEndPos" : 7321 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 6544, - "secondPos" : 7315, - "firstEndPos" : 6550, - "secondEndPos" : 7321 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "messageHeaders", - "secondLabel" : "messageHeaders", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6552, - "secondPos" : 7323, - "firstEndPos" : 6566, - "secondEndPos" : 7337 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6568, - "secondPos" : 7339, - "firstEndPos" : 6589, - "secondEndPos" : 7360 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "SjmsEndpoint", - "secondLabel" : "SjmsEndpoint", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6568, - "secondPos" : 7339, - "firstEndPos" : 6580, - "secondEndPos" : 7351 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6568, - "secondPos" : 7339, - "firstEndPos" : 6580, - "secondEndPos" : 7351 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6581, - "secondPos" : 7352, - "firstEndPos" : 6589, - "secondEndPos" : 7360 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exception", - "secondLabel" : "Exception", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6598, - "secondPos" : 7369, - "firstEndPos" : 6607, - "secondEndPos" : 7378 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6598, - "secondPos" : 7369, - "firstEndPos" : 6607, - "secondEndPos" : 7378 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6608, - "secondPos" : 7379, - "firstEndPos" : 6790, - "secondEndPos" : 7561 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 6618, - "secondPos" : 7389, - "firstEndPos" : 6784, - "secondEndPos" : 7555 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 6625, - "secondPos" : 7396, - "firstEndPos" : 6783, - "secondEndPos" : 7554 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createMessage", - "secondLabel" : "createMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6625, - "secondPos" : 7396, - "firstEndPos" : 6638, - "secondEndPos" : 7409 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6639, - "secondPos" : 7410, - "firstEndPos" : 6782, - "secondEndPos" : 7553 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 6639, - "secondPos" : 7410, - "firstEndPos" : 6646, - "secondEndPos" : 7417 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 6648, - "secondPos" : 7419, - "firstEndPos" : 6655, - "secondEndPos" : 7426 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "messageHeaders", - "secondLabel" : "messageHeaders", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 6657, - "secondPos" : 7428, - "firstEndPos" : 6671, - "secondEndPos" : 7442 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 6673, - "secondPos" : 7444, - "firstEndPos" : 6699, - "secondEndPos" : 7470 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6673, - "secondPos" : 7444, - "firstEndPos" : 6681, - "secondEndPos" : 7452 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6673, - "secondPos" : 7444, - "firstEndPos" : 6681, - "secondEndPos" : 7452 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isAllowNullBody", - "secondLabel" : "isAllowNullBody", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6682, - "secondPos" : 7453, - "firstEndPos" : 6697, - "secondEndPos" : 7468 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 6701, - "secondPos" : 7472, - "firstEndPos" : 6735, - "secondEndPos" : 7506 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6701, - "secondPos" : 7472, - "firstEndPos" : 6709, - "secondEndPos" : 7480 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6701, - "secondPos" : 7472, - "firstEndPos" : 6709, - "secondEndPos" : 7480 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJmsKeyFormatStrategy", - "secondLabel" : "getJmsKeyFormatStrategy", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6710, - "secondPos" : 7481, - "firstEndPos" : 6733, - "secondEndPos" : 7504 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 6737, - "secondPos" : 7508, - "firstEndPos" : 6782, - "secondEndPos" : 7553 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6737, - "secondPos" : 7508, - "firstEndPos" : 6763, - "secondEndPos" : 7534 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6737, - "secondPos" : 7508, - "firstEndPos" : 6763, - "secondEndPos" : 7534 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6737, - "secondPos" : 7508, - "firstEndPos" : 6745, - "secondEndPos" : 7516 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "endpoint", - "secondLabel" : "endpoint", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 6737, - "secondPos" : 7508, - "firstEndPos" : 6745, - "secondEndPos" : 7516 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getCamelContext", - "secondLabel" : "getCamelContext", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6746, - "secondPos" : 7517, - "firstEndPos" : 6761, - "secondEndPos" : 7532 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getTypeConverter", - "secondLabel" : "getTypeConverter", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 6764, - "secondPos" : 7535, - "firstEndPos" : 6780, - "secondEndPos" : 7551 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 6796, - "secondPos" : 7567, - "firstEndPos" : 9293, - "secondEndPos" : 10064 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6796, - "secondPos" : 7567, - "firstEndPos" : 6803, - "secondEndPos" : 7574 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6804, - "secondPos" : 7575, - "firstEndPos" : 6810, - "secondEndPos" : 7581 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6811, - "secondPos" : 7582, - "firstEndPos" : 6818, - "secondEndPos" : 7589 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6811, - "secondPos" : 7582, - "firstEndPos" : 6818, - "secondEndPos" : 7589 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createMessage", - "secondLabel" : "createMessage", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6819, - "secondPos" : 7590, - "firstEndPos" : 6832, - "secondEndPos" : 7603 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6833, - "secondPos" : 7604, - "firstEndPos" : 6848, - "secondEndPos" : 7619 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Session", - "secondLabel" : "Session", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6833, - "secondPos" : 7604, - "firstEndPos" : 6840, - "secondEndPos" : 7611 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6833, - "secondPos" : 7604, - "firstEndPos" : 6840, - "secondEndPos" : 7611 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6841, - "secondPos" : 7612, - "firstEndPos" : 6848, - "secondEndPos" : 7619 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6850, - "secondPos" : 7621, - "firstEndPos" : 6864, - "secondEndPos" : 7635 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6850, - "secondPos" : 7621, - "firstEndPos" : 6856, - "secondEndPos" : 7627 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6850, - "secondPos" : 7621, - "firstEndPos" : 6856, - "secondEndPos" : 7627 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6857, - "secondPos" : 7628, - "firstEndPos" : 6864, - "secondEndPos" : 7635 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6866, - "secondPos" : 7637, - "firstEndPos" : 6900, - "secondEndPos" : 7671 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6866, - "secondPos" : 7637, - "firstEndPos" : 6885, - "secondEndPos" : 7656 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6866, - "secondPos" : 7637, - "firstEndPos" : 6869, - "secondEndPos" : 7640 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 6866, - "secondPos" : 7637, - "firstEndPos" : 6869, - "secondEndPos" : 7640 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6870, - "secondPos" : 7641, - "firstEndPos" : 6876, - "secondEndPos" : 7647 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 6870, - "secondPos" : 7641, - "firstEndPos" : 6876, - "secondEndPos" : 7647 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6878, - "secondPos" : 7649, - "firstEndPos" : 6884, - "secondEndPos" : 7655 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 6878, - "secondPos" : 7649, - "firstEndPos" : 6884, - "secondEndPos" : 7655 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "messageHeaders", - "secondLabel" : "messageHeaders", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6886, - "secondPos" : 7657, - "firstEndPos" : 6900, - "secondEndPos" : 7671 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6902, - "secondPos" : 7673, - "firstEndPos" : 6923, - "secondEndPos" : 7694 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6902, - "secondPos" : 7673, - "firstEndPos" : 6909, - "secondEndPos" : 7680 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "allowNullBody", - "secondLabel" : "allowNullBody", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6910, - "secondPos" : 7681, - "firstEndPos" : 6923, - "secondEndPos" : 7694 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 6966, - "secondPos" : 7737, - "firstEndPos" : 7001, - "secondEndPos" : 7772 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "KeyFormatStrategy", - "secondLabel" : "KeyFormatStrategy", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 6966, - "secondPos" : 7737, - "firstEndPos" : 6983, - "secondEndPos" : 7754 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6966, - "secondPos" : 7737, - "firstEndPos" : 6983, - "secondEndPos" : 7754 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "keyFormatStrategy", - "secondLabel" : "keyFormatStrategy", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 6984, - "secondPos" : 7755, - "firstEndPos" : 7001, - "secondEndPos" : 7772 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 7003, - "secondPos" : 7774, - "firstEndPos" : 7030, - "secondEndPos" : 7801 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "TypeConverter", - "secondLabel" : "TypeConverter", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7003, - "secondPos" : 7774, - "firstEndPos" : 7016, - "secondEndPos" : 7787 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 7003, - "secondPos" : 7774, - "firstEndPos" : 7016, - "secondEndPos" : 7787 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "typeConverter", - "secondLabel" : "typeConverter", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 7017, - "secondPos" : 7788, - "firstEndPos" : 7030, - "secondEndPos" : 7801 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exception", - "secondLabel" : "Exception", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7039, - "secondPos" : 7810, - "firstEndPos" : 7048, - "secondEndPos" : 7819 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 7039, - "secondPos" : 7810, - "firstEndPos" : 7048, - "secondEndPos" : 7819 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 7049, - "secondPos" : 7820, - "firstEndPos" : 9293, - "secondEndPos" : 10064 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 7059, - "secondPos" : 7830, - "firstEndPos" : 7081, - "secondEndPos" : 7852 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7059, - "secondPos" : 7830, - "firstEndPos" : 7066, - "secondEndPos" : 7837 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7059, - "secondPos" : 7830, - "firstEndPos" : 7066, - "secondEndPos" : 7837 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7067, - "secondPos" : 7838, - "firstEndPos" : 7080, - "secondEndPos" : 7851 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7067, - "secondPos" : 7838, - "firstEndPos" : 7073, - "secondEndPos" : 7844 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7076, - "secondPos" : 7847, - "firstEndPos" : 7080, - "secondEndPos" : 7851 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 7090, - "secondPos" : 7861, - "firstEndPos" : 7176, - "secondEndPos" : 7947 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageType", - "secondLabel" : "JmsMessageType", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7090, - "secondPos" : 7861, - "firstEndPos" : 7104, - "secondEndPos" : 7875 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7090, - "secondPos" : 7861, - "firstEndPos" : 7104, - "secondEndPos" : 7875 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7105, - "secondPos" : 7876, - "firstEndPos" : 7175, - "secondEndPos" : 7946 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "messageType", - "secondLabel" : "messageType", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7105, - "secondPos" : 7876, - "firstEndPos" : 7116, - "secondEndPos" : 7887 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7119, - "secondPos" : 7890, - "firstEndPos" : 7175, - "secondEndPos" : 7946 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7119, - "secondPos" : 7890, - "firstEndPos" : 7135, - "secondEndPos" : 7906 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageHelper", - "secondLabel" : "JmsMessageHelper", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 7119, - "secondPos" : 7890, - "firstEndPos" : 7135, - "secondEndPos" : 7906 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "discoverMessageTypeFromPayload", - "secondLabel" : "discoverMessageTypeFromPayload", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7136, - "secondPos" : 7907, - "firstEndPos" : 7166, - "secondEndPos" : 7937 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7167, - "secondPos" : 7938, - "firstEndPos" : 7174, - "secondEndPos" : 7945 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 7167, - "secondPos" : 7938, - "firstEndPos" : 7174, - "secondEndPos" : 7945 -}, { - "firstType" : "SwitchStatement", - "secondType" : "SwitchStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 7186, - "secondPos" : 7957, - "firstEndPos" : 9083, - "secondEndPos" : 9854 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "messageType", - "secondLabel" : "messageType", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7194, - "secondPos" : 7965, - "firstEndPos" : 7205, - "secondEndPos" : 7976 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7217, - "secondPos" : 7988, - "firstEndPos" : 7228, - "secondEndPos" : 7999 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Bytes", - "secondLabel" : "Bytes", - "firstParentType" : "SwitchCase", - "secondParentType" : "SwitchCase", - "firstPos" : 7222, - "secondPos" : 7993, - "firstEndPos" : 7227, - "secondEndPos" : 7998 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7241, - "secondPos" : 8012, - "firstEndPos" : 7298, - "secondEndPos" : 8069 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "BytesMessage", - "secondLabel" : "BytesMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7241, - "secondPos" : 8012, - "firstEndPos" : 7253, - "secondEndPos" : 8024 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7241, - "secondPos" : 8012, - "firstEndPos" : 7253, - "secondEndPos" : 8024 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7254, - "secondPos" : 8025, - "firstEndPos" : 7297, - "secondEndPos" : 8068 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bytesMessage", - "secondLabel" : "bytesMessage", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7254, - "secondPos" : 8025, - "firstEndPos" : 7266, - "secondEndPos" : 8037 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7269, - "secondPos" : 8040, - "firstEndPos" : 7297, - "secondEndPos" : 8068 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7269, - "secondPos" : 8040, - "firstEndPos" : 7276, - "secondEndPos" : 8047 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 7269, - "secondPos" : 8040, - "firstEndPos" : 7276, - "secondEndPos" : 8047 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createBytesMessage", - "secondLabel" : "createBytesMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7277, - "secondPos" : 8048, - "firstEndPos" : 7295, - "secondEndPos" : 8066 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7311, - "secondPos" : 8082, - "firstEndPos" : 7380, - "secondEndPos" : 8151 -}, { - "firstType" : "ArrayType", - "secondType" : "ArrayType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7311, - "secondPos" : 8082, - "firstEndPos" : 7317, - "secondEndPos" : 8088 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "byte", - "secondLabel" : "byte", - "firstParentType" : "ArrayType", - "secondParentType" : "ArrayType", - "firstPos" : 7311, - "secondPos" : 8082, - "firstEndPos" : 7315, - "secondEndPos" : 8086 -}, { - "firstType" : "Dimension", - "secondType" : "Dimension", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ArrayType", - "secondParentType" : "ArrayType", - "firstPos" : 7315, - "secondPos" : 8086, - "firstEndPos" : 7317, - "secondEndPos" : 8088 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7318, - "secondPos" : 8089, - "firstEndPos" : 7379, - "secondEndPos" : 8150 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bytesToWrite", - "secondLabel" : "bytesToWrite", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7318, - "secondPos" : 8089, - "firstEndPos" : 7330, - "secondEndPos" : 8101 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7333, - "secondPos" : 8104, - "firstEndPos" : 7379, - "secondEndPos" : 8150 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7333, - "secondPos" : 8104, - "firstEndPos" : 7346, - "secondEndPos" : 8117 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "typeConverter", - "secondLabel" : "typeConverter", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 7333, - "secondPos" : 8104, - "firstEndPos" : 7346, - "secondEndPos" : 8117 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "convertTo", - "secondLabel" : "convertTo", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7347, - "secondPos" : 8118, - "firstEndPos" : 7356, - "secondEndPos" : 8127 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7357, - "secondPos" : 8128, - "firstEndPos" : 7378, - "secondEndPos" : 8149 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 7357, - "secondPos" : 8128, - "firstEndPos" : 7369, - "secondEndPos" : 8140 -}, { - "firstType" : "ArrayType", - "secondType" : "ArrayType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 7357, - "secondPos" : 8128, - "firstEndPos" : 7363, - "secondEndPos" : 8134 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "byte", - "secondLabel" : "byte", - "firstParentType" : "ArrayType", - "secondParentType" : "ArrayType", - "firstPos" : 7357, - "secondPos" : 8128, - "firstEndPos" : 7361, - "secondEndPos" : 8132 -}, { - "firstType" : "Dimension", - "secondType" : "Dimension", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ArrayType", - "secondParentType" : "ArrayType", - "firstPos" : 7361, - "secondPos" : 8132, - "firstEndPos" : 7363, - "secondEndPos" : 8134 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 7371, - "secondPos" : 8142, - "firstEndPos" : 7378, - "secondEndPos" : 8149 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7393, - "secondPos" : 8164, - "firstEndPos" : 7431, - "secondEndPos" : 8202 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 7393, - "secondPos" : 8164, - "firstEndPos" : 7430, - "secondEndPos" : 8201 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7393, - "secondPos" : 8164, - "firstEndPos" : 7405, - "secondEndPos" : 8176 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bytesMessage", - "secondLabel" : "bytesMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 7393, - "secondPos" : 8164, - "firstEndPos" : 7405, - "secondEndPos" : 8176 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "writeBytes", - "secondLabel" : "writeBytes", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7406, - "secondPos" : 8177, - "firstEndPos" : 7416, - "secondEndPos" : 8187 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7417, - "secondPos" : 8188, - "firstEndPos" : 7429, - "secondEndPos" : 8200 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bytesToWrite", - "secondLabel" : "bytesToWrite", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 7417, - "secondPos" : 8188, - "firstEndPos" : 7429, - "secondEndPos" : 8200 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7444, - "secondPos" : 8215, - "firstEndPos" : 7466, - "secondEndPos" : 8237 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 7444, - "secondPos" : 8215, - "firstEndPos" : 7465, - "secondEndPos" : 8236 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 7444, - "secondPos" : 8215, - "firstEndPos" : 7450, - "secondEndPos" : 8221 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 7451, - "secondPos" : 8222, - "firstEndPos" : 7452, - "secondEndPos" : 8223 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "bytesMessage", - "secondLabel" : "bytesMessage", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 7453, - "secondPos" : 8224, - "firstEndPos" : 7465, - "secondEndPos" : 8236 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7479, - "secondPos" : 8250, - "firstEndPos" : 7485, - "secondEndPos" : 8256 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7494, - "secondPos" : 8265, - "firstEndPos" : 7503, - "secondEndPos" : 8274 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "SwitchCase", - "secondParentType" : "SwitchCase", - "firstPos" : 7499, - "secondPos" : 8270, - "firstEndPos" : 7502, - "secondEndPos" : 8273 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7516, - "secondPos" : 8287, - "firstEndPos" : 7567, - "secondEndPos" : 8338 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "MapMessage", - "secondLabel" : "MapMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7516, - "secondPos" : 8287, - "firstEndPos" : 7526, - "secondEndPos" : 8297 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7516, - "secondPos" : 8287, - "firstEndPos" : 7526, - "secondEndPos" : 8297 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7527, - "secondPos" : 8298, - "firstEndPos" : 7566, - "secondEndPos" : 8337 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "mapMessage", - "secondLabel" : "mapMessage", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7527, - "secondPos" : 8298, - "firstEndPos" : 7537, - "secondEndPos" : 8308 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7540, - "secondPos" : 8311, - "firstEndPos" : 7566, - "secondEndPos" : 8337 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7540, - "secondPos" : 8311, - "firstEndPos" : 7547, - "secondEndPos" : 8318 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 7540, - "secondPos" : 8311, - "firstEndPos" : 7547, - "secondEndPos" : 8318 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createMapMessage", - "secondLabel" : "createMapMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7548, - "secondPos" : 8319, - "firstEndPos" : 7564, - "secondEndPos" : 8335 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7580, - "secondPos" : 8351, - "firstEndPos" : 7607, - "secondEndPos" : 8378 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7580, - "secondPos" : 8351, - "firstEndPos" : 7583, - "secondEndPos" : 8354 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7580, - "secondPos" : 8351, - "firstEndPos" : 7583, - "secondEndPos" : 8354 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7584, - "secondPos" : 8355, - "firstEndPos" : 7606, - "secondEndPos" : 8377 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "objMap", - "secondLabel" : "objMap", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7584, - "secondPos" : 8355, - "firstEndPos" : 7590, - "secondEndPos" : 8361 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7593, - "secondPos" : 8364, - "firstEndPos" : 7606, - "secondEndPos" : 8377 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7594, - "secondPos" : 8365, - "firstEndPos" : 7597, - "secondEndPos" : 8368 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 7594, - "secondPos" : 8365, - "firstEndPos" : 7597, - "secondEndPos" : 8368 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 7599, - "secondPos" : 8370, - "firstEndPos" : 7606, - "secondEndPos" : 8377 -}, { - "firstType" : "EnhancedForStatement", - "secondType" : "EnhancedForStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7620, - "secondPos" : 8391, - "firstEndPos" : 7782, - "secondEndPos" : 8553 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "EnhancedForStatement", - "secondParentType" : "EnhancedForStatement", - "firstPos" : 7625, - "secondPos" : 8396, - "firstEndPos" : 7646, - "secondEndPos" : 8417 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 7625, - "secondPos" : 8396, - "firstEndPos" : 7630, - "secondEndPos" : 8401 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "Map.Entry", - "secondLabel" : "Map.Entry", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7631, - "secondPos" : 8402, - "firstEndPos" : 7640, - "secondEndPos" : 8411 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 7631, - "secondPos" : 8402, - "firstEndPos" : 7640, - "secondEndPos" : 8411 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "entry", - "secondLabel" : "entry", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 7641, - "secondPos" : 8412, - "firstEndPos" : 7646, - "secondEndPos" : 8417 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "EnhancedForStatement", - "secondParentType" : "EnhancedForStatement", - "firstPos" : 7649, - "secondPos" : 8420, - "firstEndPos" : 7682, - "secondEndPos" : 8453 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 7650, - "secondPos" : 8421, - "firstEndPos" : 7664, - "secondEndPos" : 8435 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Set", - "secondLabel" : "Set", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7650, - "secondPos" : 8421, - "firstEndPos" : 7653, - "secondEndPos" : 8424 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 7650, - "secondPos" : 8421, - "firstEndPos" : 7653, - "secondEndPos" : 8424 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "Map.Entry", - "secondLabel" : "Map.Entry", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7654, - "secondPos" : 8425, - "firstEndPos" : 7663, - "secondEndPos" : 8434 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 7654, - "secondPos" : 8425, - "firstEndPos" : 7663, - "secondEndPos" : 8434 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 7665, - "secondPos" : 8436, - "firstEndPos" : 7682, - "secondEndPos" : 8453 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7665, - "secondPos" : 8436, - "firstEndPos" : 7671, - "secondEndPos" : 8442 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "objMap", - "secondLabel" : "objMap", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 7665, - "secondPos" : 8436, - "firstEndPos" : 7671, - "secondEndPos" : 8442 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "entrySet", - "secondLabel" : "entrySet", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7672, - "secondPos" : 8443, - "firstEndPos" : 7680, - "secondEndPos" : 8451 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "EnhancedForStatement", - "secondParentType" : "EnhancedForStatement", - "firstPos" : 7684, - "secondPos" : 8455, - "firstEndPos" : 7782, - "secondEndPos" : 8553 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 7702, - "secondPos" : 8473, - "firstEndPos" : 7768, - "secondEndPos" : 8539 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 7702, - "secondPos" : 8473, - "firstEndPos" : 7767, - "secondEndPos" : 8538 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7702, - "secondPos" : 8473, - "firstEndPos" : 7712, - "secondEndPos" : 8483 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "mapMessage", - "secondLabel" : "mapMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 7702, - "secondPos" : 8473, - "firstEndPos" : 7712, - "secondEndPos" : 8483 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setObject", - "secondLabel" : "setObject", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7713, - "secondPos" : 8484, - "firstEndPos" : 7722, - "secondEndPos" : 8493 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7723, - "secondPos" : 8494, - "firstEndPos" : 7766, - "secondEndPos" : 8537 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 7723, - "secondPos" : 8494, - "firstEndPos" : 7748, - "secondEndPos" : 8519 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7723, - "secondPos" : 8494, - "firstEndPos" : 7737, - "secondEndPos" : 8508 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 7723, - "secondPos" : 8494, - "firstEndPos" : 7737, - "secondEndPos" : 8508 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7723, - "secondPos" : 8494, - "firstEndPos" : 7728, - "secondEndPos" : 8499 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "entry", - "secondLabel" : "entry", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 7723, - "secondPos" : 8494, - "firstEndPos" : 7728, - "secondEndPos" : 8499 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getKey", - "secondLabel" : "getKey", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7729, - "secondPos" : 8500, - "firstEndPos" : 7735, - "secondEndPos" : 8506 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "toString", - "secondLabel" : "toString", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7738, - "secondPos" : 8509, - "firstEndPos" : 7746, - "secondEndPos" : 8517 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 7750, - "secondPos" : 8521, - "firstEndPos" : 7766, - "secondEndPos" : 8537 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7750, - "secondPos" : 8521, - "firstEndPos" : 7755, - "secondEndPos" : 8526 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "entry", - "secondLabel" : "entry", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 7750, - "secondPos" : 8521, - "firstEndPos" : 7755, - "secondEndPos" : 8526 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getValue", - "secondLabel" : "getValue", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7756, - "secondPos" : 8527, - "firstEndPos" : 7764, - "secondEndPos" : 8535 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7795, - "secondPos" : 8566, - "firstEndPos" : 7815, - "secondEndPos" : 8586 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 7795, - "secondPos" : 8566, - "firstEndPos" : 7814, - "secondEndPos" : 8585 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 7795, - "secondPos" : 8566, - "firstEndPos" : 7801, - "secondEndPos" : 8572 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 7802, - "secondPos" : 8573, - "firstEndPos" : 7803, - "secondEndPos" : 8574 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "mapMessage", - "secondLabel" : "mapMessage", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 7804, - "secondPos" : 8575, - "firstEndPos" : 7814, - "secondEndPos" : 8585 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7828, - "secondPos" : 8599, - "firstEndPos" : 7834, - "secondEndPos" : 8605 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7843, - "secondPos" : 8614, - "firstEndPos" : 7855, - "secondEndPos" : 8626 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SwitchCase", - "secondParentType" : "SwitchCase", - "firstPos" : 7848, - "secondPos" : 8619, - "firstEndPos" : 7854, - "secondEndPos" : 8625 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7868, - "secondPos" : 8639, - "firstEndPos" : 7928, - "secondEndPos" : 8699 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "ObjectMessage", - "secondLabel" : "ObjectMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7868, - "secondPos" : 8639, - "firstEndPos" : 7881, - "secondEndPos" : 8652 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7868, - "secondPos" : 8639, - "firstEndPos" : 7881, - "secondEndPos" : 8652 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 7882, - "secondPos" : 8653, - "firstEndPos" : 7927, - "secondEndPos" : 8698 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "objectMessage", - "secondLabel" : "objectMessage", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7882, - "secondPos" : 8653, - "firstEndPos" : 7895, - "secondEndPos" : 8666 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 7898, - "secondPos" : 8669, - "firstEndPos" : 7927, - "secondEndPos" : 8698 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7898, - "secondPos" : 8669, - "firstEndPos" : 7905, - "secondEndPos" : 8676 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 7898, - "secondPos" : 8669, - "firstEndPos" : 7905, - "secondEndPos" : 8676 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createObjectMessage", - "secondLabel" : "createObjectMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7906, - "secondPos" : 8677, - "firstEndPos" : 7925, - "secondEndPos" : 8696 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 7941, - "secondPos" : 8712, - "firstEndPos" : 7989, - "secondEndPos" : 8760 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 7941, - "secondPos" : 8712, - "firstEndPos" : 7988, - "secondEndPos" : 8759 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7941, - "secondPos" : 8712, - "firstEndPos" : 7954, - "secondEndPos" : 8725 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "objectMessage", - "secondLabel" : "objectMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 7941, - "secondPos" : 8712, - "firstEndPos" : 7954, - "secondEndPos" : 8725 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setObject", - "secondLabel" : "setObject", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7955, - "secondPos" : 8726, - "firstEndPos" : 7964, - "secondEndPos" : 8735 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 7965, - "secondPos" : 8736, - "firstEndPos" : 7987, - "secondEndPos" : 8758 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 7965, - "secondPos" : 8736, - "firstEndPos" : 7987, - "secondEndPos" : 8758 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Serializable", - "secondLabel" : "Serializable", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 7966, - "secondPos" : 8737, - "firstEndPos" : 7978, - "secondEndPos" : 8749 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 7966, - "secondPos" : 8737, - "firstEndPos" : 7978, - "secondEndPos" : 8749 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 7980, - "secondPos" : 8751, - "firstEndPos" : 7987, - "secondEndPos" : 8758 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8002, - "secondPos" : 8773, - "firstEndPos" : 8025, - "secondEndPos" : 8796 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 8002, - "secondPos" : 8773, - "firstEndPos" : 8024, - "secondEndPos" : 8795 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 8002, - "secondPos" : 8773, - "firstEndPos" : 8008, - "secondEndPos" : 8779 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 8009, - "secondPos" : 8780, - "firstEndPos" : 8010, - "secondEndPos" : 8781 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "objectMessage", - "secondLabel" : "objectMessage", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 8011, - "secondPos" : 8782, - "firstEndPos" : 8024, - "secondEndPos" : 8795 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8038, - "secondPos" : 8809, - "firstEndPos" : 8044, - "secondEndPos" : 8815 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8053, - "secondPos" : 8824, - "firstEndPos" : 8063, - "secondEndPos" : 8834 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Text", - "secondLabel" : "Text", - "firstParentType" : "SwitchCase", - "secondParentType" : "SwitchCase", - "firstPos" : 8058, - "secondPos" : 8829, - "firstEndPos" : 8062, - "secondEndPos" : 8833 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8076, - "secondPos" : 8847, - "firstEndPos" : 8130, - "secondEndPos" : 8901 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "TextMessage", - "secondLabel" : "TextMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 8076, - "secondPos" : 8847, - "firstEndPos" : 8087, - "secondEndPos" : 8858 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 8076, - "secondPos" : 8847, - "firstEndPos" : 8087, - "secondEndPos" : 8858 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 8088, - "secondPos" : 8859, - "firstEndPos" : 8129, - "secondEndPos" : 8900 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "textMessage", - "secondLabel" : "textMessage", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 8088, - "secondPos" : 8859, - "firstEndPos" : 8099, - "secondEndPos" : 8870 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 8102, - "secondPos" : 8873, - "firstEndPos" : 8129, - "secondEndPos" : 8900 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8102, - "secondPos" : 8873, - "firstEndPos" : 8109, - "secondEndPos" : 8880 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 8102, - "secondPos" : 8873, - "firstEndPos" : 8109, - "secondEndPos" : 8880 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createTextMessage", - "secondLabel" : "createTextMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8110, - "secondPos" : 8881, - "firstEndPos" : 8127, - "secondEndPos" : 8898 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8143, - "secondPos" : 8914, - "firstEndPos" : 8213, - "secondEndPos" : 8984 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 8143, - "secondPos" : 8914, - "firstEndPos" : 8149, - "secondEndPos" : 8920 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 8143, - "secondPos" : 8914, - "firstEndPos" : 8149, - "secondEndPos" : 8920 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 8150, - "secondPos" : 8921, - "firstEndPos" : 8212, - "secondEndPos" : 8983 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "convertedText", - "secondLabel" : "convertedText", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 8150, - "secondPos" : 8921, - "firstEndPos" : 8163, - "secondEndPos" : 8934 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 8166, - "secondPos" : 8937, - "firstEndPos" : 8212, - "secondEndPos" : 8983 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8166, - "secondPos" : 8937, - "firstEndPos" : 8179, - "secondEndPos" : 8950 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "typeConverter", - "secondLabel" : "typeConverter", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 8166, - "secondPos" : 8937, - "firstEndPos" : 8179, - "secondEndPos" : 8950 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "convertTo", - "secondLabel" : "convertTo", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8180, - "secondPos" : 8951, - "firstEndPos" : 8189, - "secondEndPos" : 8960 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8190, - "secondPos" : 8961, - "firstEndPos" : 8211, - "secondEndPos" : 8982 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 8190, - "secondPos" : 8961, - "firstEndPos" : 8202, - "secondEndPos" : 8973 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 8190, - "secondPos" : 8961, - "firstEndPos" : 8196, - "secondEndPos" : 8967 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 8190, - "secondPos" : 8961, - "firstEndPos" : 8196, - "secondEndPos" : 8967 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 8204, - "secondPos" : 8975, - "firstEndPos" : 8211, - "secondEndPos" : 8982 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8226, - "secondPos" : 8997, - "firstEndPos" : 8261, - "secondEndPos" : 9032 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 8226, - "secondPos" : 8997, - "firstEndPos" : 8260, - "secondEndPos" : 9031 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8226, - "secondPos" : 8997, - "firstEndPos" : 8237, - "secondEndPos" : 9008 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "textMessage", - "secondLabel" : "textMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 8226, - "secondPos" : 8997, - "firstEndPos" : 8237, - "secondEndPos" : 9008 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setText", - "secondLabel" : "setText", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8238, - "secondPos" : 9009, - "firstEndPos" : 8245, - "secondEndPos" : 9016 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8246, - "secondPos" : 9017, - "firstEndPos" : 8259, - "secondEndPos" : 9030 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "convertedText", - "secondLabel" : "convertedText", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 8246, - "secondPos" : 9017, - "firstEndPos" : 8259, - "secondEndPos" : 9030 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8274, - "secondPos" : 9045, - "firstEndPos" : 8295, - "secondEndPos" : 9066 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 8274, - "secondPos" : 9045, - "firstEndPos" : 8294, - "secondEndPos" : 9065 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 8274, - "secondPos" : 9045, - "firstEndPos" : 8280, - "secondEndPos" : 9051 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 8281, - "secondPos" : 9052, - "firstEndPos" : 8282, - "secondEndPos" : 9053 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "textMessage", - "secondLabel" : "textMessage", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 8283, - "secondPos" : 9054, - "firstEndPos" : 8294, - "secondEndPos" : 9065 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8308, - "secondPos" : 9079, - "firstEndPos" : 8314, - "secondEndPos" : 9085 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8323, - "secondPos" : 9094, - "firstEndPos" : 8335, - "secondEndPos" : 9106 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Stream", - "secondLabel" : "Stream", - "firstParentType" : "SwitchCase", - "secondParentType" : "SwitchCase", - "firstPos" : 8328, - "secondPos" : 9099, - "firstEndPos" : 8334, - "secondEndPos" : 9105 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8348, - "secondPos" : 9119, - "firstEndPos" : 8408, - "secondEndPos" : 9179 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "StreamMessage", - "secondLabel" : "StreamMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 8348, - "secondPos" : 9119, - "firstEndPos" : 8361, - "secondEndPos" : 9132 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 8348, - "secondPos" : 9119, - "firstEndPos" : 8361, - "secondEndPos" : 9132 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 8362, - "secondPos" : 9133, - "firstEndPos" : 8407, - "secondEndPos" : 9178 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "streamMessage", - "secondLabel" : "streamMessage", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 8362, - "secondPos" : 9133, - "firstEndPos" : 8375, - "secondEndPos" : 9146 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 8378, - "secondPos" : 9149, - "firstEndPos" : 8407, - "secondEndPos" : 9178 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8378, - "secondPos" : 9149, - "firstEndPos" : 8385, - "secondEndPos" : 9156 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 8378, - "secondPos" : 9149, - "firstEndPos" : 8385, - "secondEndPos" : 9156 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createStreamMessage", - "secondLabel" : "createStreamMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8386, - "secondPos" : 9157, - "firstEndPos" : 8405, - "secondEndPos" : 9176 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8421, - "secondPos" : 9192, - "firstEndPos" : 8465, - "secondEndPos" : 9236 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Collection", - "secondLabel" : "Collection", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 8421, - "secondPos" : 9192, - "firstEndPos" : 8431, - "secondEndPos" : 9202 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 8421, - "secondPos" : 9192, - "firstEndPos" : 8431, - "secondEndPos" : 9202 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 8432, - "secondPos" : 9203, - "firstEndPos" : 8464, - "secondEndPos" : 9235 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "collection", - "secondLabel" : "collection", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 8432, - "secondPos" : 9203, - "firstEndPos" : 8442, - "secondEndPos" : 9213 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 8445, - "secondPos" : 9216, - "firstEndPos" : 8464, - "secondEndPos" : 9235 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Collection", - "secondLabel" : "Collection", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 8446, - "secondPos" : 9217, - "firstEndPos" : 8456, - "secondEndPos" : 9227 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 8446, - "secondPos" : 9217, - "firstEndPos" : 8456, - "secondEndPos" : 9227 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 8457, - "secondPos" : 9228, - "firstEndPos" : 8464, - "secondEndPos" : 9235 -}, { - "firstType" : "EnhancedForStatement", - "secondType" : "EnhancedForStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8478, - "secondPos" : 9249, - "firstEndPos" : 8577, - "secondEndPos" : 9348 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "EnhancedForStatement", - "secondParentType" : "EnhancedForStatement", - "firstPos" : 8483, - "secondPos" : 9254, - "firstEndPos" : 8499, - "secondEndPos" : 9270 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 8483, - "secondPos" : 9254, - "firstEndPos" : 8488, - "secondEndPos" : 9259 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 8489, - "secondPos" : 9260, - "firstEndPos" : 8495, - "secondEndPos" : 9266 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 8489, - "secondPos" : 9260, - "firstEndPos" : 8495, - "secondEndPos" : 9266 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "obj", - "secondLabel" : "obj", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 8496, - "secondPos" : 9267, - "firstEndPos" : 8499, - "secondEndPos" : 9270 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "collection", - "secondLabel" : "collection", - "firstParentType" : "EnhancedForStatement", - "secondParentType" : "EnhancedForStatement", - "firstPos" : 8502, - "secondPos" : 9273, - "firstEndPos" : 8512, - "secondEndPos" : 9283 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "EnhancedForStatement", - "secondParentType" : "EnhancedForStatement", - "firstPos" : 8514, - "secondPos" : 9285, - "firstEndPos" : 8577, - "secondEndPos" : 9348 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 8532, - "secondPos" : 9303, - "firstEndPos" : 8563, - "secondEndPos" : 9334 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 8532, - "secondPos" : 9303, - "firstEndPos" : 8562, - "secondEndPos" : 9333 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8532, - "secondPos" : 9303, - "firstEndPos" : 8545, - "secondEndPos" : 9316 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "streamMessage", - "secondLabel" : "streamMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 8532, - "secondPos" : 9303, - "firstEndPos" : 8545, - "secondEndPos" : 9316 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "writeObject", - "secondLabel" : "writeObject", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8546, - "secondPos" : 9317, - "firstEndPos" : 8557, - "secondEndPos" : 9328 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8558, - "secondPos" : 9329, - "firstEndPos" : 8561, - "secondEndPos" : 9332 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "obj", - "secondLabel" : "obj", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 8558, - "secondPos" : 9329, - "firstEndPos" : 8561, - "secondEndPos" : 9332 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8590, - "secondPos" : 9361, - "firstEndPos" : 8613, - "secondEndPos" : 9384 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 8590, - "secondPos" : 9361, - "firstEndPos" : 8612, - "secondEndPos" : 9383 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 8590, - "secondPos" : 9361, - "firstEndPos" : 8596, - "secondEndPos" : 9367 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 8597, - "secondPos" : 9368, - "firstEndPos" : 8598, - "secondEndPos" : 9369 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "streamMessage", - "secondLabel" : "streamMessage", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 8599, - "secondPos" : 9370, - "firstEndPos" : 8612, - "secondEndPos" : 9383 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8626, - "secondPos" : 9397, - "firstEndPos" : 8632, - "secondEndPos" : 9403 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8641, - "secondPos" : 9412, - "firstEndPos" : 8654, - "secondEndPos" : 9425 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SwitchCase", - "secondParentType" : "SwitchCase", - "firstPos" : 8646, - "secondPos" : 9417, - "firstEndPos" : 8653, - "secondEndPos" : 9424 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 8667, - "secondPos" : 9438, - "firstEndPos" : 9018, - "secondEndPos" : 9789 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 8671, - "secondPos" : 9442, - "firstEndPos" : 8703, - "secondEndPos" : 9474 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "allowNullBody", - "secondLabel" : "allowNullBody", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 8671, - "secondPos" : 9442, - "firstEndPos" : 8684, - "secondEndPos" : 9455 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "&&", - "secondLabel" : "&&", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 8685, - "secondPos" : 9456, - "firstEndPos" : 8687, - "secondEndPos" : 9458 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 8688, - "secondPos" : 9459, - "firstEndPos" : 8703, - "secondEndPos" : 9474 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 8688, - "secondPos" : 9459, - "firstEndPos" : 8695, - "secondEndPos" : 9466 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "==", - "secondLabel" : "==", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 8696, - "secondPos" : 9467, - "firstEndPos" : 8698, - "secondEndPos" : 9469 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 8699, - "secondPos" : 9470, - "firstEndPos" : 8703, - "secondEndPos" : 9474 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 8705, - "secondPos" : 9476, - "firstEndPos" : 8770, - "secondEndPos" : 9541 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 8723, - "secondPos" : 9494, - "firstEndPos" : 8756, - "secondEndPos" : 9527 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 8723, - "secondPos" : 9494, - "firstEndPos" : 8755, - "secondEndPos" : 9526 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 8723, - "secondPos" : 9494, - "firstEndPos" : 8729, - "secondEndPos" : 9500 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 8730, - "secondPos" : 9501, - "firstEndPos" : 8731, - "secondEndPos" : 9502 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 8732, - "secondPos" : 9503, - "firstEndPos" : 8755, - "secondEndPos" : 9526 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8732, - "secondPos" : 9503, - "firstEndPos" : 8739, - "secondEndPos" : 9510 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "session", - "secondLabel" : "session", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 8732, - "secondPos" : 9503, - "firstEndPos" : 8739, - "secondEndPos" : 9510 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "createMessage", - "secondLabel" : "createMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8740, - "secondPos" : 9511, - "firstEndPos" : 8753, - "secondEndPos" : 9524 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 8776, - "secondPos" : 9547, - "firstEndPos" : 9018, - "secondEndPos" : 9789 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 8780, - "secondPos" : 9551, - "firstEndPos" : 8795, - "secondEndPos" : 9566 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 8780, - "secondPos" : 9551, - "firstEndPos" : 8787, - "secondEndPos" : 9558 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!=", - "secondLabel" : "!=", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 8788, - "secondPos" : 9559, - "firstEndPos" : 8790, - "secondEndPos" : 9561 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 8791, - "secondPos" : 9562, - "firstEndPos" : 8795, - "secondEndPos" : 9566 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 8797, - "secondPos" : 9568, - "firstEndPos" : 8929, - "secondEndPos" : 9700 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 8815, - "secondPos" : 9586, - "firstEndPos" : 8915, - "secondEndPos" : 9686 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 8821, - "secondPos" : 9592, - "firstEndPos" : 8914, - "secondEndPos" : 9685 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 8825, - "secondPos" : 9596, - "firstEndPos" : 8837, - "secondEndPos" : 9608 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 8825, - "secondPos" : 9596, - "firstEndPos" : 8837, - "secondEndPos" : 9608 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 8838, - "secondPos" : 9609, - "firstEndPos" : 8913, - "secondEndPos" : 9684 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Unsupported message body type \"", - "secondLabel" : "\"Unsupported message body type \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 8838, - "secondPos" : 9609, - "firstEndPos" : 8870, - "secondEndPos" : 9641 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "+", - "secondLabel" : "+", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 8871, - "secondPos" : 9642, - "firstEndPos" : 8872, - "secondEndPos" : 9643 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 8873, - "secondPos" : 9644, - "firstEndPos" : 8913, - "secondEndPos" : 9684 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8873, - "secondPos" : 9644, - "firstEndPos" : 8885, - "secondEndPos" : 9656 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "ObjectHelper", - "secondLabel" : "ObjectHelper", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 8873, - "secondPos" : 9644, - "firstEndPos" : 8885, - "secondEndPos" : 9656 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "classCanonicalName", - "secondLabel" : "classCanonicalName", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8886, - "secondPos" : 9657, - "firstEndPos" : 8904, - "secondEndPos" : 9675 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 8905, - "secondPos" : 9676, - "firstEndPos" : 8912, - "secondEndPos" : 9683 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 8905, - "secondPos" : 9676, - "firstEndPos" : 8912, - "secondEndPos" : 9683 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 8935, - "secondPos" : 9706, - "firstEndPos" : 9018, - "secondEndPos" : 9789 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 8953, - "secondPos" : 9724, - "firstEndPos" : 9004, - "secondEndPos" : 9775 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 8959, - "secondPos" : 9730, - "firstEndPos" : 9003, - "secondEndPos" : 9774 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 8963, - "secondPos" : 9734, - "firstEndPos" : 8975, - "secondEndPos" : 9746 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 8963, - "secondPos" : 9734, - "firstEndPos" : 8975, - "secondEndPos" : 9746 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Null body is not allowed\"", - "secondLabel" : "\"Null body is not allowed\"", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 8976, - "secondPos" : 9747, - "firstEndPos" : 9002, - "secondEndPos" : 9773 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 9031, - "secondPos" : 9802, - "firstEndPos" : 9037, - "secondEndPos" : 9808 -}, { - "firstType" : "SwitchCase", - "secondType" : "SwitchCase", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 9046, - "secondPos" : 9817, - "firstEndPos" : 9054, - "secondEndPos" : 9825 -}, { - "firstType" : "BreakStatement", - "secondType" : "BreakStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SwitchStatement", - "secondParentType" : "SwitchStatement", - "firstPos" : 9067, - "secondPos" : 9838, - "firstEndPos" : 9073, - "secondEndPos" : 9844 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 9093, - "secondPos" : 9864, - "firstEndPos" : 9264, - "secondEndPos" : 10035 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 9097, - "secondPos" : 9868, - "firstEndPos" : 9148, - "secondEndPos" : 9919 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 9097, - "secondPos" : 9868, - "firstEndPos" : 9119, - "secondEndPos" : 9890 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "messageHeaders", - "secondLabel" : "messageHeaders", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 9097, - "secondPos" : 9868, - "firstEndPos" : 9111, - "secondEndPos" : 9882 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!=", - "secondLabel" : "!=", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 9112, - "secondPos" : 9883, - "firstEndPos" : 9114, - "secondEndPos" : 9885 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 9115, - "secondPos" : 9886, - "firstEndPos" : 9119, - "secondEndPos" : 9890 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "&&", - "secondLabel" : "&&", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 9120, - "secondPos" : 9891, - "firstEndPos" : 9122, - "secondEndPos" : 9893 -}, { - "firstType" : "PrefixExpression", - "secondType" : "PrefixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 9123, - "secondPos" : 9894, - "firstEndPos" : 9148, - "secondEndPos" : 9919 -}, { - "firstType" : "PREFIX_EXPRESSION_OPERATOR", - "secondType" : "PREFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!", - "secondLabel" : "!", - "firstParentType" : "PrefixExpression", - "secondParentType" : "PrefixExpression", - "firstPos" : 9123, - "secondPos" : 9894, - "firstEndPos" : 9124, - "secondEndPos" : 9895 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "PrefixExpression", - "secondParentType" : "PrefixExpression", - "firstPos" : 9124, - "secondPos" : 9895, - "firstEndPos" : 9148, - "secondEndPos" : 9919 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 9124, - "secondPos" : 9895, - "firstEndPos" : 9138, - "secondEndPos" : 9909 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "messageHeaders", - "secondLabel" : "messageHeaders", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 9124, - "secondPos" : 9895, - "firstEndPos" : 9138, - "secondEndPos" : 9909 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isEmpty", - "secondLabel" : "isEmpty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 9139, - "secondPos" : 9910, - "firstEndPos" : 9146, - "secondEndPos" : 9917 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 9150, - "secondPos" : 9921, - "firstEndPos" : 9264, - "secondEndPos" : 10035 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 9164, - "secondPos" : 9935, - "firstEndPos" : 9254, - "secondEndPos" : 10025 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 9164, - "secondPos" : 9935, - "firstEndPos" : 9253, - "secondEndPos" : 10024 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 9164, - "secondPos" : 9935, - "firstEndPos" : 9170, - "secondEndPos" : 9941 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 9171, - "secondPos" : 9942, - "firstEndPos" : 9172, - "secondEndPos" : 9943 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 9173, - "secondPos" : 9944, - "firstEndPos" : 9253, - "secondEndPos" : 10024 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 9173, - "secondPos" : 9944, - "firstEndPos" : 9189, - "secondEndPos" : 9960 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageHelper", - "secondLabel" : "JmsMessageHelper", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 9173, - "secondPos" : 9944, - "firstEndPos" : 9189, - "secondEndPos" : 9960 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJmsMessageHeaders", - "secondLabel" : "setJmsMessageHeaders", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 9190, - "secondPos" : 9961, - "firstEndPos" : 9210, - "secondEndPos" : 9981 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 9211, - "secondPos" : 9982, - "firstEndPos" : 9252, - "secondEndPos" : 10023 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 9211, - "secondPos" : 9982, - "firstEndPos" : 9217, - "secondEndPos" : 9988 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "messageHeaders", - "secondLabel" : "messageHeaders", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 9219, - "secondPos" : 9990, - "firstEndPos" : 9233, - "secondEndPos" : 10004 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "keyFormatStrategy", - "secondLabel" : "keyFormatStrategy", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 9235, - "secondPos" : 10006, - "firstEndPos" : 9252, - "secondEndPos" : 10023 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 9273, - "secondPos" : 10044, - "firstEndPos" : 9287, - "secondEndPos" : 10058 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 9280, - "secondPos" : 10051, - "firstEndPos" : 9286, - "secondEndPos" : 10057 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 9299, - "secondPos" : 10070, - "firstEndPos" : 15319, - "secondEndPos" : 15997 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 9299, - "secondPos" : 10070, - "firstEndPos" : 9864, - "secondEndPos" : 10541 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 9310, - "secondPos" : 10081, - "firstEndPos" : 9421, - "secondEndPos" : 10192 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Adds or updates the ", - "secondLabel" : "Adds or updates the ", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9310, - "secondPos" : 10081, - "firstEndPos" : 9330, - "secondEndPos" : 10101 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9330, - "secondPos" : 10101, - "firstEndPos" : 9345, - "secondEndPos" : 10116 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@link", - "secondLabel" : "@link", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9330, - "secondPos" : 10101, - "firstEndPos" : 9335, - "secondEndPos" : 10106 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9337, - "secondPos" : 10108, - "firstEndPos" : 9344, - "secondEndPos" : 10115 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " headers. Header names and values are", - "secondLabel" : " headers. Header names and values are", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9345, - "secondPos" : 10116, - "firstEndPos" : 9382, - "secondEndPos" : 10153 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "checked for JMS 1.1 compliance.", - "secondLabel" : "checked for JMS 1.1 compliance.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9390, - "secondPos" : 10161, - "firstEndPos" : 9421, - "secondEndPos" : 10192 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 9436, - "secondPos" : 10207, - "firstEndPos" : 9512, - "secondEndPos" : 10283 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9436, - "secondPos" : 10207, - "firstEndPos" : 9442, - "secondEndPos" : 10213 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9443, - "secondPos" : 10214, - "firstEndPos" : 9453, - "secondEndPos" : 10224 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the ", - "secondLabel" : " the ", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9453, - "secondPos" : 10224, - "firstEndPos" : 9465, - "secondEndPos" : 10236 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9465, - "secondPos" : 10236, - "firstEndPos" : 9480, - "secondEndPos" : 10251 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@link", - "secondLabel" : "@link", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9465, - "secondPos" : 10236, - "firstEndPos" : 9470, - "secondEndPos" : 10241 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9472, - "secondPos" : 10243, - "firstEndPos" : 9479, - "secondEndPos" : 10250 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " to add or update the headers on", - "secondLabel" : " to add or update the headers on", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9480, - "secondPos" : 10251, - "firstEndPos" : 9512, - "secondEndPos" : 10283 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 9520, - "secondPos" : 10291, - "firstEndPos" : 9581, - "secondEndPos" : 10352 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9520, - "secondPos" : 10291, - "firstEndPos" : 9526, - "secondEndPos" : 10297 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "messageHeaders", - "secondLabel" : "messageHeaders", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9527, - "secondPos" : 10298, - "firstEndPos" : 9541, - "secondEndPos" : 10312 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " a ", - "secondLabel" : " a ", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9541, - "secondPos" : 10312, - "firstEndPos" : 9547, - "secondEndPos" : 10318 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9547, - "secondPos" : 10318, - "firstEndPos" : 9558, - "secondEndPos" : 10329 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@link", - "secondLabel" : "@link", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9547, - "secondPos" : 10318, - "firstEndPos" : 9552, - "secondEndPos" : 10323 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9554, - "secondPos" : 10325, - "firstEndPos" : 9557, - "secondEndPos" : 10328 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " of String/Object pairs", - "secondLabel" : " of String/Object pairs", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9558, - "secondPos" : 10329, - "firstEndPos" : 9581, - "secondEndPos" : 10352 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 9589, - "secondPos" : 10360, - "firstEndPos" : 9825, - "secondEndPos" : 10502 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9589, - "secondPos" : 10360, - "firstEndPos" : 9595, - "secondEndPos" : 10366 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "keyFormatStrategy", - "secondLabel" : "keyFormatStrategy", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9596, - "secondPos" : 10367, - "firstEndPos" : 9613, - "secondEndPos" : 10384 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the a ", - "secondLabel" : " the a ", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9613, - "secondPos" : 10384, - "firstEndPos" : 9620, - "secondEndPos" : 10391 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9620, - "secondPos" : 10391, - "firstEndPos" : 9645, - "secondEndPos" : 10416 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@link", - "secondLabel" : "@link", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9620, - "secondPos" : 10391, - "firstEndPos" : 9625, - "secondEndPos" : 10396 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "KeyFormatStrategy", - "secondLabel" : "KeyFormatStrategy", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9627, - "secondPos" : 10398, - "firstEndPos" : 9644, - "secondEndPos" : 10415 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " to used to", - "secondLabel" : " to used to", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9645, - "secondPos" : 10416, - "firstEndPos" : 9656, - "secondEndPos" : 10427 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "format keys in a JMS 1.1 compliant manner. If null the", - "secondLabel" : "format keys in a JMS 1.1 compliant manner.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9689, - "secondPos" : 10460, - "firstEndPos" : 9743, - "secondEndPos" : 10502 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 9833, - "secondPos" : 10510, - "firstEndPos" : 9856, - "secondEndPos" : 10533 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@return", - "secondLabel" : "@return", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9833, - "secondPos" : 10510, - "firstEndPos" : 9840, - "secondEndPos" : 10517 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " ", - "secondLabel" : " ", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9840, - "secondPos" : 10517, - "firstEndPos" : 9841, - "secondEndPos" : 10518 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9841, - "secondPos" : 10518, - "firstEndPos" : 9856, - "secondEndPos" : 10533 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@link", - "secondLabel" : "@link", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9841, - "secondPos" : 10518, - "firstEndPos" : 9846, - "secondEndPos" : 10523 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 9848, - "secondPos" : 10525, - "firstEndPos" : 9855, - "secondEndPos" : 10532 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 9869, - "secondPos" : 10546, - "firstEndPos" : 9876, - "secondEndPos" : 10553 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 9877, - "secondPos" : 10554, - "firstEndPos" : 9883, - "secondEndPos" : 10560 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 9884, - "secondPos" : 10561, - "firstEndPos" : 9891, - "secondEndPos" : 10568 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 9884, - "secondPos" : 10561, - "firstEndPos" : 9891, - "secondEndPos" : 10568 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJmsMessageHeaders", - "secondLabel" : "setJmsMessageHeaders", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 9892, - "secondPos" : 10569, - "firstEndPos" : 9912, - "secondEndPos" : 10589 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 9913, - "secondPos" : 10590, - "firstEndPos" : 9937, - "secondEndPos" : 10614 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 9913, - "secondPos" : 10590, - "firstEndPos" : 9918, - "secondEndPos" : 10595 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 9919, - "secondPos" : 10596, - "firstEndPos" : 9926, - "secondEndPos" : 10603 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 9919, - "secondPos" : 10596, - "firstEndPos" : 9926, - "secondEndPos" : 10603 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 9927, - "secondPos" : 10604, - "firstEndPos" : 9937, - "secondEndPos" : 10614 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 9939, - "secondPos" : 10616, - "firstEndPos" : 9973, - "secondEndPos" : 10650 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 9939, - "secondPos" : 10616, - "firstEndPos" : 9958, - "secondEndPos" : 10635 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 9939, - "secondPos" : 10616, - "firstEndPos" : 9942, - "secondEndPos" : 10619 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 9939, - "secondPos" : 10616, - "firstEndPos" : 9942, - "secondEndPos" : 10619 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 9943, - "secondPos" : 10620, - "firstEndPos" : 9949, - "secondEndPos" : 10626 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 9943, - "secondPos" : 10620, - "firstEndPos" : 9949, - "secondEndPos" : 10626 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 9951, - "secondPos" : 10628, - "firstEndPos" : 9957, - "secondEndPos" : 10634 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 9951, - "secondPos" : 10628, - "firstEndPos" : 9957, - "secondEndPos" : 10634 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "messageHeaders", - "secondLabel" : "messageHeaders", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 9959, - "secondPos" : 10636, - "firstEndPos" : 9973, - "secondEndPos" : 10650 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 9975, - "secondPos" : 10652, - "firstEndPos" : 10010, - "secondEndPos" : 10687 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "KeyFormatStrategy", - "secondLabel" : "KeyFormatStrategy", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 9975, - "secondPos" : 10652, - "firstEndPos" : 9992, - "secondEndPos" : 10669 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 9975, - "secondPos" : 10652, - "firstEndPos" : 9992, - "secondEndPos" : 10669 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "keyFormatStrategy", - "secondLabel" : "keyFormatStrategy", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 9993, - "secondPos" : 10670, - "firstEndPos" : 10010, - "secondEndPos" : 10687 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "IllegalHeaderException", - "secondLabel" : "IllegalHeaderException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10019, - "secondPos" : 10696, - "firstEndPos" : 10041, - "secondEndPos" : 10718 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 10019, - "secondPos" : 10696, - "firstEndPos" : 10041, - "secondEndPos" : 10718 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 10042, - "secondPos" : 10719, - "firstEndPos" : 15319, - "secondEndPos" : 15997 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 10052, - "secondPos" : 10730, - "firstEndPos" : 10126, - "secondEndPos" : 10804 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 10052, - "secondPos" : 10730, - "firstEndPos" : 10071, - "secondEndPos" : 10749 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10052, - "secondPos" : 10730, - "firstEndPos" : 10055, - "secondEndPos" : 10733 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 10052, - "secondPos" : 10730, - "firstEndPos" : 10055, - "secondEndPos" : 10733 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10056, - "secondPos" : 10734, - "firstEndPos" : 10062, - "secondEndPos" : 10740 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 10056, - "secondPos" : 10734, - "firstEndPos" : 10062, - "secondEndPos" : 10740 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10064, - "secondPos" : 10742, - "firstEndPos" : 10070, - "secondEndPos" : 10748 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 10064, - "secondPos" : 10742, - "firstEndPos" : 10070, - "secondEndPos" : 10748 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 10072, - "secondPos" : 10750, - "firstEndPos" : 10125, - "secondEndPos" : 10803 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 10072, - "secondPos" : 10750, - "firstEndPos" : 10079, - "secondEndPos" : 10757 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 10082, - "secondPos" : 10760, - "firstEndPos" : 10125, - "secondEndPos" : 10803 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 10086, - "secondPos" : 10764, - "firstEndPos" : 10109, - "secondEndPos" : 10787 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "HashMap", - "secondLabel" : "HashMap", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10086, - "secondPos" : 10764, - "firstEndPos" : 10093, - "secondEndPos" : 10771 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 10086, - "secondPos" : 10764, - "firstEndPos" : 10093, - "secondEndPos" : 10771 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10094, - "secondPos" : 10772, - "firstEndPos" : 10100, - "secondEndPos" : 10778 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 10094, - "secondPos" : 10772, - "firstEndPos" : 10100, - "secondEndPos" : 10778 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10102, - "secondPos" : 10780, - "firstEndPos" : 10108, - "secondEndPos" : 10786 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 10102, - "secondPos" : 10780, - "firstEndPos" : 10108, - "secondEndPos" : 10786 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "messageHeaders", - "secondLabel" : "messageHeaders", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 10110, - "secondPos" : 10788, - "firstEndPos" : 10124, - "secondEndPos" : 10802 -}, { - "firstType" : "EnhancedForStatement", - "secondType" : "EnhancedForStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 10135, - "secondPos" : 10813, - "firstEndPos" : 15286, - "secondEndPos" : 15964 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "EnhancedForStatement", - "secondParentType" : "EnhancedForStatement", - "firstPos" : 10140, - "secondPos" : 10818, - "firstEndPos" : 10177, - "secondEndPos" : 10855 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 10140, - "secondPos" : 10818, - "firstEndPos" : 10145, - "secondEndPos" : 10823 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 10146, - "secondPos" : 10824, - "firstEndPos" : 10171, - "secondEndPos" : 10849 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "Map.Entry", - "secondLabel" : "Map.Entry", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10146, - "secondPos" : 10824, - "firstEndPos" : 10155, - "secondEndPos" : 10833 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 10146, - "secondPos" : 10824, - "firstEndPos" : 10155, - "secondEndPos" : 10833 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10156, - "secondPos" : 10834, - "firstEndPos" : 10162, - "secondEndPos" : 10840 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 10156, - "secondPos" : 10834, - "firstEndPos" : 10162, - "secondEndPos" : 10840 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10164, - "secondPos" : 10842, - "firstEndPos" : 10170, - "secondEndPos" : 10848 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 10164, - "secondPos" : 10842, - "firstEndPos" : 10170, - "secondEndPos" : 10848 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "entry", - "secondLabel" : "entry", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 10172, - "secondPos" : 10850, - "firstEndPos" : 10177, - "secondEndPos" : 10855 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "EnhancedForStatement", - "secondParentType" : "EnhancedForStatement", - "firstPos" : 10180, - "secondPos" : 10858, - "firstEndPos" : 10198, - "secondEndPos" : 10876 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10180, - "secondPos" : 10858, - "firstEndPos" : 10187, - "secondEndPos" : 10865 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 10180, - "secondPos" : 10858, - "firstEndPos" : 10187, - "secondEndPos" : 10865 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "entrySet", - "secondLabel" : "entrySet", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10188, - "secondPos" : 10866, - "firstEndPos" : 10196, - "secondEndPos" : 10874 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "EnhancedForStatement", - "secondParentType" : "EnhancedForStatement", - "firstPos" : 10200, - "secondPos" : 10878, - "firstEndPos" : 15286, - "secondEndPos" : 15964 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 10214, - "secondPos" : 10892, - "firstEndPos" : 10249, - "secondEndPos" : 10927 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10214, - "secondPos" : 10892, - "firstEndPos" : 10220, - "secondEndPos" : 10898 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 10214, - "secondPos" : 10892, - "firstEndPos" : 10220, - "secondEndPos" : 10898 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 10221, - "secondPos" : 10899, - "firstEndPos" : 10248, - "secondEndPos" : 10926 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 10221, - "secondPos" : 10899, - "firstEndPos" : 10231, - "secondEndPos" : 10909 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 10234, - "secondPos" : 10912, - "firstEndPos" : 10248, - "secondEndPos" : 10926 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10234, - "secondPos" : 10912, - "firstEndPos" : 10239, - "secondEndPos" : 10917 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "entry", - "secondLabel" : "entry", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 10234, - "secondPos" : 10912, - "firstEndPos" : 10239, - "secondEndPos" : 10917 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getKey", - "secondLabel" : "getKey", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10240, - "secondPos" : 10918, - "firstEndPos" : 10246, - "secondEndPos" : 10924 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 10262, - "secondPos" : 10940, - "firstEndPos" : 10300, - "secondEndPos" : 10978 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10262, - "secondPos" : 10940, - "firstEndPos" : 10268, - "secondEndPos" : 10946 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 10262, - "secondPos" : 10940, - "firstEndPos" : 10268, - "secondEndPos" : 10946 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 10269, - "secondPos" : 10947, - "firstEndPos" : 10299, - "secondEndPos" : 10977 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 10269, - "secondPos" : 10947, - "firstEndPos" : 10280, - "secondEndPos" : 10958 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 10283, - "secondPos" : 10961, - "firstEndPos" : 10299, - "secondEndPos" : 10977 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10283, - "secondPos" : 10961, - "firstEndPos" : 10288, - "secondEndPos" : 10966 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "entry", - "secondLabel" : "entry", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 10283, - "secondPos" : 10961, - "firstEndPos" : 10288, - "secondEndPos" : 10966 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getValue", - "secondLabel" : "getValue", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10289, - "secondPos" : 10967, - "firstEndPos" : 10297, - "secondEndPos" : 10975 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 10314, - "secondPos" : 10992, - "firstEndPos" : 15276, - "secondEndPos" : 15954 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 10318, - "secondPos" : 10996, - "firstEndPos" : 10365, - "secondEndPos" : 11043 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10318, - "secondPos" : 10996, - "firstEndPos" : 10328, - "secondEndPos" : 11006 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 10318, - "secondPos" : 10996, - "firstEndPos" : 10328, - "secondEndPos" : 11006 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "equalsIgnoreCase", - "secondLabel" : "equalsIgnoreCase", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10329, - "secondPos" : 11007, - "firstEndPos" : 10345, - "secondEndPos" : 11023 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10346, - "secondPos" : 11024, - "firstEndPos" : 10364, - "secondEndPos" : 11042 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_CORRELATION_ID", - "secondLabel" : "JMS_CORRELATION_ID", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 10346, - "secondPos" : 11024, - "firstEndPos" : 10364, - "secondEndPos" : 11042 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 10367, - "secondPos" : 11045, - "firstEndPos" : 10949, - "secondEndPos" : 11627 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 10385, - "secondPos" : 11063, - "firstEndPos" : 10935, - "secondEndPos" : 11613 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 10389, - "secondPos" : 11067, - "firstEndPos" : 10408, - "secondEndPos" : 11086 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 10389, - "secondPos" : 11067, - "firstEndPos" : 10400, - "secondEndPos" : 11078 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "==", - "secondLabel" : "==", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 10401, - "secondPos" : 11079, - "firstEndPos" : 10403, - "secondEndPos" : 11081 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 10404, - "secondPos" : 11082, - "firstEndPos" : 10408, - "secondEndPos" : 11086 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 10410, - "secondPos" : 11088, - "firstEndPos" : 10613, - "secondEndPos" : 11291 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// Value can be null but we can't cast a null to a String", - "secondLabel" : "// Value can be null but we can't cast a null to a String", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 10432, - "secondPos" : 11110, - "firstEndPos" : 10489, - "secondEndPos" : 11167 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// so pass null to the setter", - "secondLabel" : "// so pass null to the setter", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 10510, - "secondPos" : 11188, - "firstEndPos" : 10539, - "secondEndPos" : 11217 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 10560, - "secondPos" : 11238, - "firstEndPos" : 10595, - "secondEndPos" : 11273 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 10560, - "secondPos" : 11238, - "firstEndPos" : 10594, - "secondEndPos" : 11272 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setCorrelationId", - "secondLabel" : "setCorrelationId", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10560, - "secondPos" : 11238, - "firstEndPos" : 10576, - "secondEndPos" : 11254 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10577, - "secondPos" : 11255, - "firstEndPos" : 10593, - "secondEndPos" : 11271 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 10577, - "secondPos" : 11255, - "firstEndPos" : 10587, - "secondEndPos" : 11265 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 10589, - "secondPos" : 11267, - "firstEndPos" : 10593, - "secondEndPos" : 11271 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 10619, - "secondPos" : 11297, - "firstEndPos" : 10935, - "secondEndPos" : 11613 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 10623, - "secondPos" : 11301, - "firstEndPos" : 10652, - "secondEndPos" : 11330 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 10623, - "secondPos" : 11301, - "firstEndPos" : 10634, - "secondEndPos" : 11312 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10646, - "secondPos" : 11324, - "firstEndPos" : 10652, - "secondEndPos" : 11330 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 10646, - "secondPos" : 11324, - "firstEndPos" : 10652, - "secondEndPos" : 11330 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 10654, - "secondPos" : 11332, - "firstEndPos" : 10745, - "secondEndPos" : 11423 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 10676, - "secondPos" : 11354, - "firstEndPos" : 10727, - "secondEndPos" : 11405 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 10676, - "secondPos" : 11354, - "firstEndPos" : 10726, - "secondEndPos" : 11404 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setCorrelationId", - "secondLabel" : "setCorrelationId", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10676, - "secondPos" : 11354, - "firstEndPos" : 10692, - "secondEndPos" : 11370 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10693, - "secondPos" : 11371, - "firstEndPos" : 10725, - "secondEndPos" : 11403 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 10693, - "secondPos" : 11371, - "firstEndPos" : 10703, - "secondEndPos" : 11381 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 10705, - "secondPos" : 11383, - "firstEndPos" : 10725, - "secondEndPos" : 11403 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10706, - "secondPos" : 11384, - "firstEndPos" : 10712, - "secondEndPos" : 11390 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 10706, - "secondPos" : 11384, - "firstEndPos" : 10712, - "secondEndPos" : 11390 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 10714, - "secondPos" : 11392, - "firstEndPos" : 10725, - "secondEndPos" : 11403 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 10751, - "secondPos" : 11429, - "firstEndPos" : 10935, - "secondEndPos" : 11613 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 10773, - "secondPos" : 11451, - "firstEndPos" : 10917, - "secondEndPos" : 11595 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 10779, - "secondPos" : 11457, - "firstEndPos" : 10916, - "secondEndPos" : 11594 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "IllegalHeaderException", - "secondLabel" : "IllegalHeaderException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 10783, - "secondPos" : 11461, - "firstEndPos" : 10805, - "secondEndPos" : 11483 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 10783, - "secondPos" : 11461, - "firstEndPos" : 10805, - "secondEndPos" : 11483 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 10806, - "secondPos" : 11484, - "firstEndPos" : 10915, - "secondEndPos" : 11593 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"The \"", - "secondLabel" : "\"The \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 10806, - "secondPos" : 11484, - "firstEndPos" : 10812, - "secondEndPos" : 11490 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "+", - "secondLabel" : "+", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 10813, - "secondPos" : 11491, - "firstEndPos" : 10814, - "secondEndPos" : 11492 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_CORRELATION_ID", - "secondLabel" : "JMS_CORRELATION_ID", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 10815, - "secondPos" : 11493, - "firstEndPos" : 10833, - "secondEndPos" : 11511 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\" must either be a String or null. Found: \"", - "secondLabel" : "\" must either be a String or null. Found: \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 10836, - "secondPos" : 11514, - "firstEndPos" : 10880, - "secondEndPos" : 11558 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 10883, - "secondPos" : 11561, - "firstEndPos" : 10915, - "secondEndPos" : 11593 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10883, - "secondPos" : 11561, - "firstEndPos" : 10905, - "secondEndPos" : 11583 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 10883, - "secondPos" : 11561, - "firstEndPos" : 10905, - "secondEndPos" : 11583 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10883, - "secondPos" : 11561, - "firstEndPos" : 10894, - "secondEndPos" : 11572 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 10883, - "secondPos" : 11561, - "firstEndPos" : 10894, - "secondEndPos" : 11572 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getClass", - "secondLabel" : "getClass", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10895, - "secondPos" : 11573, - "firstEndPos" : 10903, - "secondEndPos" : 11581 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getName", - "secondLabel" : "getName", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10906, - "secondPos" : 11584, - "firstEndPos" : 10913, - "secondEndPos" : 11591 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 10955, - "secondPos" : 11633, - "firstEndPos" : 15276, - "secondEndPos" : 15954 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 10959, - "secondPos" : 11637, - "firstEndPos" : 11000, - "secondEndPos" : 11678 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10959, - "secondPos" : 11637, - "firstEndPos" : 10969, - "secondEndPos" : 11647 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 10959, - "secondPos" : 11637, - "firstEndPos" : 10969, - "secondEndPos" : 11647 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "equalsIgnoreCase", - "secondLabel" : "equalsIgnoreCase", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10970, - "secondPos" : 11648, - "firstEndPos" : 10986, - "secondEndPos" : 11664 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 10987, - "secondPos" : 11665, - "firstEndPos" : 10999, - "secondEndPos" : 11677 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_REPLY_TO", - "secondLabel" : "JMS_REPLY_TO", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 10987, - "secondPos" : 11665, - "firstEndPos" : 10999, - "secondEndPos" : 11677 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 11002, - "secondPos" : 11680, - "firstEndPos" : 11599, - "secondEndPos" : 12277 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11020, - "secondPos" : 11698, - "firstEndPos" : 11585, - "secondEndPos" : 12263 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 11024, - "secondPos" : 11702, - "firstEndPos" : 11053, - "secondEndPos" : 11731 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 11024, - "secondPos" : 11702, - "firstEndPos" : 11035, - "secondEndPos" : 11713 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 11047, - "secondPos" : 11725, - "firstEndPos" : 11053, - "secondEndPos" : 11731 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 11047, - "secondPos" : 11725, - "firstEndPos" : 11053, - "secondEndPos" : 11731 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 11055, - "secondPos" : 11733, - "firstEndPos" : 11260, - "secondEndPos" : 11938 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// FIXME Setting the reply to appears broken. walk back", - "secondLabel" : "// FIXME Setting the reply to appears broken. walk back", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11077, - "secondPos" : 11755, - "firstEndPos" : 11132, - "secondEndPos" : 11810 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// through it. If the value is a String we must normalize it", - "secondLabel" : "// through it. If the value is a String we must normalize it", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11153, - "secondPos" : 11831, - "firstEndPos" : 11213, - "secondEndPos" : 11891 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// first", - "secondLabel" : "// first", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11234, - "secondPos" : 11912, - "firstEndPos" : 11242, - "secondEndPos" : 11920 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 11266, - "secondPos" : 11944, - "firstEndPos" : 11585, - "secondEndPos" : 12263 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// TODO write destination converter", - "secondLabel" : "// TODO write destination converter", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11288, - "secondPos" : 11966, - "firstEndPos" : 11323, - "secondEndPos" : 12001 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// Destination replyTo =", - "secondLabel" : "// Destination replyTo =", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11344, - "secondPos" : 12022, - "firstEndPos" : 11368, - "secondEndPos" : 12046 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// ExchangeHelper.convertToType(exchange,", - "secondLabel" : "// ExchangeHelper.convertToType(exchange,", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11389, - "secondPos" : 12067, - "firstEndPos" : 11430, - "secondEndPos" : 12108 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// Destination.class,", - "secondLabel" : "// Destination.class,", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11451, - "secondPos" : 12129, - "firstEndPos" : 11472, - "secondEndPos" : 12150 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// headerValue);", - "secondLabel" : "// headerValue);", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11493, - "secondPos" : 12171, - "firstEndPos" : 11509, - "secondEndPos" : 12187 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// jmsMessage.setJMSReplyTo(replyTo);", - "secondLabel" : "// jmsMessage.setJMSReplyTo(replyTo);", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11530, - "secondPos" : 12208, - "firstEndPos" : 11567, - "secondEndPos" : 12245 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 11605, - "secondPos" : 12283, - "firstEndPos" : 15276, - "secondEndPos" : 15954 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 11609, - "secondPos" : 12287, - "firstEndPos" : 11646, - "secondEndPos" : 12324 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 11609, - "secondPos" : 12287, - "firstEndPos" : 11619, - "secondEndPos" : 12297 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 11609, - "secondPos" : 12287, - "firstEndPos" : 11619, - "secondEndPos" : 12297 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "equalsIgnoreCase", - "secondLabel" : "equalsIgnoreCase", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 11620, - "secondPos" : 12298, - "firstEndPos" : 11636, - "secondEndPos" : 12314 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 11637, - "secondPos" : 12315, - "firstEndPos" : 11645, - "secondEndPos" : 12323 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_TYPE", - "secondLabel" : "JMS_TYPE", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 11637, - "secondPos" : 12315, - "firstEndPos" : 11645, - "secondEndPos" : 12323 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 11648, - "secondPos" : 12326, - "firstEndPos" : 12264, - "secondEndPos" : 12942 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11666, - "secondPos" : 12344, - "firstEndPos" : 12250, - "secondEndPos" : 12928 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 11670, - "secondPos" : 12348, - "firstEndPos" : 11689, - "secondEndPos" : 12367 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 11670, - "secondPos" : 12348, - "firstEndPos" : 11681, - "secondEndPos" : 12359 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "==", - "secondLabel" : "==", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 11682, - "secondPos" : 12360, - "firstEndPos" : 11684, - "secondEndPos" : 12362 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 11685, - "secondPos" : 12363, - "firstEndPos" : 11689, - "secondEndPos" : 12367 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 11691, - "secondPos" : 12369, - "firstEndPos" : 11892, - "secondEndPos" : 12570 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// Value can be null but we can't cast a null to a String", - "secondLabel" : "// Value can be null but we can't cast a null to a String", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11713, - "secondPos" : 12391, - "firstEndPos" : 11770, - "secondEndPos" : 12448 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// so pass null to the setter", - "secondLabel" : "// so pass null to the setter", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11791, - "secondPos" : 12469, - "firstEndPos" : 11820, - "secondEndPos" : 12498 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11841, - "secondPos" : 12519, - "firstEndPos" : 11874, - "secondEndPos" : 12552 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 11841, - "secondPos" : 12519, - "firstEndPos" : 11873, - "secondEndPos" : 12551 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setMessageType", - "secondLabel" : "setMessageType", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 11841, - "secondPos" : 12519, - "firstEndPos" : 11855, - "secondEndPos" : 12533 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 11856, - "secondPos" : 12534, - "firstEndPos" : 11872, - "secondEndPos" : 12550 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 11856, - "secondPos" : 12534, - "firstEndPos" : 11866, - "secondEndPos" : 12544 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 11868, - "secondPos" : 12546, - "firstEndPos" : 11872, - "secondEndPos" : 12550 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 11898, - "secondPos" : 12576, - "firstEndPos" : 12250, - "secondEndPos" : 12928 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 11902, - "secondPos" : 12580, - "firstEndPos" : 11931, - "secondEndPos" : 12609 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 11902, - "secondPos" : 12580, - "firstEndPos" : 11913, - "secondEndPos" : 12591 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 11925, - "secondPos" : 12603, - "firstEndPos" : 11931, - "secondEndPos" : 12609 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 11925, - "secondPos" : 12603, - "firstEndPos" : 11931, - "secondEndPos" : 12609 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 11933, - "secondPos" : 12611, - "firstEndPos" : 12070, - "secondEndPos" : 12748 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// Not null but is a String", - "secondLabel" : "// Not null but is a String", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 11955, - "secondPos" : 12633, - "firstEndPos" : 11982, - "secondEndPos" : 12660 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 12003, - "secondPos" : 12681, - "firstEndPos" : 12052, - "secondEndPos" : 12730 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 12003, - "secondPos" : 12681, - "firstEndPos" : 12051, - "secondEndPos" : 12729 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setMessageType", - "secondLabel" : "setMessageType", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12003, - "secondPos" : 12681, - "firstEndPos" : 12017, - "secondEndPos" : 12695 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12018, - "secondPos" : 12696, - "firstEndPos" : 12050, - "secondEndPos" : 12728 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 12018, - "secondPos" : 12696, - "firstEndPos" : 12028, - "secondEndPos" : 12706 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 12030, - "secondPos" : 12708, - "firstEndPos" : 12050, - "secondEndPos" : 12728 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 12031, - "secondPos" : 12709, - "firstEndPos" : 12037, - "secondEndPos" : 12715 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 12031, - "secondPos" : 12709, - "firstEndPos" : 12037, - "secondEndPos" : 12715 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 12039, - "secondPos" : 12717, - "firstEndPos" : 12050, - "secondEndPos" : 12728 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 12076, - "secondPos" : 12754, - "firstEndPos" : 12250, - "secondEndPos" : 12928 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 12098, - "secondPos" : 12776, - "firstEndPos" : 12232, - "secondEndPos" : 12910 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 12104, - "secondPos" : 12782, - "firstEndPos" : 12231, - "secondEndPos" : 12909 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "IllegalHeaderException", - "secondLabel" : "IllegalHeaderException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 12108, - "secondPos" : 12786, - "firstEndPos" : 12130, - "secondEndPos" : 12808 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 12108, - "secondPos" : 12786, - "firstEndPos" : 12130, - "secondEndPos" : 12808 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 12131, - "secondPos" : 12809, - "firstEndPos" : 12230, - "secondEndPos" : 12908 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"The \"", - "secondLabel" : "\"The \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12131, - "secondPos" : 12809, - "firstEndPos" : 12137, - "secondEndPos" : 12815 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "+", - "secondLabel" : "+", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12138, - "secondPos" : 12816, - "firstEndPos" : 12139, - "secondEndPos" : 12817 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_TYPE", - "secondLabel" : "JMS_TYPE", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12140, - "secondPos" : 12818, - "firstEndPos" : 12148, - "secondEndPos" : 12826 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\" must either be a String or null. Found: \"", - "secondLabel" : "\" must either be a String or null. Found: \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12151, - "secondPos" : 12829, - "firstEndPos" : 12195, - "secondEndPos" : 12873 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12198, - "secondPos" : 12876, - "firstEndPos" : 12230, - "secondEndPos" : 12908 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12198, - "secondPos" : 12876, - "firstEndPos" : 12220, - "secondEndPos" : 12898 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 12198, - "secondPos" : 12876, - "firstEndPos" : 12220, - "secondEndPos" : 12898 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12198, - "secondPos" : 12876, - "firstEndPos" : 12209, - "secondEndPos" : 12887 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 12198, - "secondPos" : 12876, - "firstEndPos" : 12209, - "secondEndPos" : 12887 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getClass", - "secondLabel" : "getClass", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12210, - "secondPos" : 12888, - "firstEndPos" : 12218, - "secondEndPos" : 12896 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getName", - "secondLabel" : "getName", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12221, - "secondPos" : 12899, - "firstEndPos" : 12228, - "secondEndPos" : 12906 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 12270, - "secondPos" : 12948, - "firstEndPos" : 15276, - "secondEndPos" : 15954 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 12274, - "secondPos" : 12952, - "firstEndPos" : 12315, - "secondEndPos" : 12993 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12274, - "secondPos" : 12952, - "firstEndPos" : 12284, - "secondEndPos" : 12962 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 12274, - "secondPos" : 12952, - "firstEndPos" : 12284, - "secondEndPos" : 12962 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "equalsIgnoreCase", - "secondLabel" : "equalsIgnoreCase", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12285, - "secondPos" : 12963, - "firstEndPos" : 12301, - "secondEndPos" : 12979 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12302, - "secondPos" : 12980, - "firstEndPos" : 12314, - "secondEndPos" : 12992 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_PRIORITY", - "secondLabel" : "JMS_PRIORITY", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 12302, - "secondPos" : 12980, - "firstEndPos" : 12314, - "secondEndPos" : 12992 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 12317, - "secondPos" : 12995, - "firstEndPos" : 12893, - "secondEndPos" : 13571 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 12335, - "secondPos" : 13013, - "firstEndPos" : 12879, - "secondEndPos" : 13557 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 12339, - "secondPos" : 13017, - "firstEndPos" : 12369, - "secondEndPos" : 13047 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 12339, - "secondPos" : 13017, - "firstEndPos" : 12350, - "secondEndPos" : 13028 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Integer", - "secondLabel" : "Integer", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 12362, - "secondPos" : 13040, - "firstEndPos" : 12369, - "secondEndPos" : 13047 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 12362, - "secondPos" : 13040, - "firstEndPos" : 12369, - "secondEndPos" : 13047 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 12371, - "secondPos" : 13049, - "firstEndPos" : 12704, - "secondEndPos" : 13382 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 12393, - "secondPos" : 13071, - "firstEndPos" : 12686, - "secondEndPos" : 13364 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 12397, - "secondPos" : 13075, - "firstEndPos" : 12494, - "secondEndPos" : 13172 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 12423, - "secondPos" : 13101, - "firstEndPos" : 12472, - "secondEndPos" : 13150 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 12423, - "secondPos" : 13101, - "firstEndPos" : 12471, - "secondEndPos" : 13149 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12423, - "secondPos" : 13101, - "firstEndPos" : 12433, - "secondEndPos" : 13111 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 12423, - "secondPos" : 13101, - "firstEndPos" : 12433, - "secondEndPos" : 13111 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJMSPriority", - "secondLabel" : "setJMSPriority", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12434, - "secondPos" : 13112, - "firstEndPos" : 12448, - "secondEndPos" : 13126 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 12449, - "secondPos" : 13127, - "firstEndPos" : 12470, - "secondEndPos" : 13148 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12449, - "secondPos" : 13127, - "firstEndPos" : 12470, - "secondEndPos" : 13148 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Integer", - "secondLabel" : "Integer", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 12450, - "secondPos" : 13128, - "firstEndPos" : 12457, - "secondEndPos" : 13135 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 12450, - "secondPos" : 13128, - "firstEndPos" : 12457, - "secondEndPos" : 13135 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 12459, - "secondPos" : 13137, - "firstEndPos" : 12470, - "secondEndPos" : 13148 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 12495, - "secondPos" : 13173, - "firstEndPos" : 12686, - "secondEndPos" : 13364 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 12502, - "secondPos" : 13180, - "firstEndPos" : 12516, - "secondEndPos" : 13194 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 12502, - "secondPos" : 13180, - "firstEndPos" : 12514, - "secondEndPos" : 13192 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 12502, - "secondPos" : 13180, - "firstEndPos" : 12514, - "secondEndPos" : 13192 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 12515, - "secondPos" : 13193, - "firstEndPos" : 12516, - "secondEndPos" : 13194 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 12518, - "secondPos" : 13196, - "firstEndPos" : 12686, - "secondEndPos" : 13364 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 12544, - "secondPos" : 13222, - "firstEndPos" : 12664, - "secondEndPos" : 13342 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 12550, - "secondPos" : 13228, - "firstEndPos" : 12663, - "secondEndPos" : 13341 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "IllegalHeaderException", - "secondLabel" : "IllegalHeaderException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 12554, - "secondPos" : 13232, - "firstEndPos" : 12576, - "secondEndPos" : 13254 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 12554, - "secondPos" : 13232, - "firstEndPos" : 12576, - "secondEndPos" : 13254 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 12577, - "secondPos" : 13255, - "firstEndPos" : 12659, - "secondEndPos" : 13337 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Failed to set the \"", - "secondLabel" : "\"Failed to set the \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12577, - "secondPos" : 13255, - "firstEndPos" : 12597, - "secondEndPos" : 13275 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "+", - "secondLabel" : "+", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12598, - "secondPos" : 13276, - "firstEndPos" : 12599, - "secondEndPos" : 13277 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_PRIORITY", - "secondLabel" : "JMS_PRIORITY", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12600, - "secondPos" : 13278, - "firstEndPos" : 12612, - "secondEndPos" : 13290 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\" header. Cause: \"", - "secondLabel" : "\" header. Cause: \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12615, - "secondPos" : 13293, - "firstEndPos" : 12633, - "secondEndPos" : 13311 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12636, - "secondPos" : 13314, - "firstEndPos" : 12659, - "secondEndPos" : 13337 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12636, - "secondPos" : 13314, - "firstEndPos" : 12637, - "secondEndPos" : 13315 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 12636, - "secondPos" : 13314, - "firstEndPos" : 12637, - "secondEndPos" : 13315 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getLocalizedMessage", - "secondLabel" : "getLocalizedMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12638, - "secondPos" : 13316, - "firstEndPos" : 12657, - "secondEndPos" : 13335 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 12661, - "secondPos" : 13339, - "firstEndPos" : 12662, - "secondEndPos" : 13340 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 12710, - "secondPos" : 13388, - "firstEndPos" : 12879, - "secondEndPos" : 13557 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 12732, - "secondPos" : 13410, - "firstEndPos" : 12861, - "secondEndPos" : 13539 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 12738, - "secondPos" : 13416, - "firstEndPos" : 12860, - "secondEndPos" : 13538 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "IllegalHeaderException", - "secondLabel" : "IllegalHeaderException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 12742, - "secondPos" : 13420, - "firstEndPos" : 12764, - "secondEndPos" : 13442 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 12742, - "secondPos" : 13420, - "firstEndPos" : 12764, - "secondEndPos" : 13442 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 12765, - "secondPos" : 13443, - "firstEndPos" : 12859, - "secondEndPos" : 13537 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"The \"", - "secondLabel" : "\"The \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12765, - "secondPos" : 13443, - "firstEndPos" : 12771, - "secondEndPos" : 13449 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "+", - "secondLabel" : "+", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12772, - "secondPos" : 13450, - "firstEndPos" : 12773, - "secondEndPos" : 13451 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_PRIORITY", - "secondLabel" : "JMS_PRIORITY", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12774, - "secondPos" : 13452, - "firstEndPos" : 12786, - "secondEndPos" : 13464 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\" must be a Integer. Type found: \"", - "secondLabel" : "\" must be a Integer. Type found: \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12789, - "secondPos" : 13467, - "firstEndPos" : 12824, - "secondEndPos" : 13502 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 12827, - "secondPos" : 13505, - "firstEndPos" : 12859, - "secondEndPos" : 13537 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12827, - "secondPos" : 13505, - "firstEndPos" : 12849, - "secondEndPos" : 13527 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 12827, - "secondPos" : 13505, - "firstEndPos" : 12849, - "secondEndPos" : 13527 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12827, - "secondPos" : 13505, - "firstEndPos" : 12838, - "secondEndPos" : 13516 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 12827, - "secondPos" : 13505, - "firstEndPos" : 12838, - "secondEndPos" : 13516 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getClass", - "secondLabel" : "getClass", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12839, - "secondPos" : 13517, - "firstEndPos" : 12847, - "secondEndPos" : 13525 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getName", - "secondLabel" : "getName", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12850, - "secondPos" : 13528, - "firstEndPos" : 12857, - "secondEndPos" : 13535 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 12899, - "secondPos" : 13577, - "firstEndPos" : 15276, - "secondEndPos" : 15954 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 12903, - "secondPos" : 13581, - "firstEndPos" : 12949, - "secondEndPos" : 13627 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12903, - "secondPos" : 13581, - "firstEndPos" : 12913, - "secondEndPos" : 13591 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 12903, - "secondPos" : 13581, - "firstEndPos" : 12913, - "secondEndPos" : 13591 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "equalsIgnoreCase", - "secondLabel" : "equalsIgnoreCase", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12914, - "secondPos" : 13592, - "firstEndPos" : 12930, - "secondEndPos" : 13608 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12931, - "secondPos" : 13609, - "firstEndPos" : 12948, - "secondEndPos" : 13626 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_DELIVERY_MODE", - "secondLabel" : "JMS_DELIVERY_MODE", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 12931, - "secondPos" : 13609, - "firstEndPos" : 12948, - "secondEndPos" : 13626 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 12951, - "secondPos" : 13629, - "firstEndPos" : 13277, - "secondEndPos" : 13955 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 12969, - "secondPos" : 13647, - "firstEndPos" : 13263, - "secondEndPos" : 13941 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 12973, - "secondPos" : 13651, - "firstEndPos" : 13074, - "secondEndPos" : 13752 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 12995, - "secondPos" : 13673, - "firstEndPos" : 13056, - "secondEndPos" : 13734 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 12995, - "secondPos" : 13673, - "firstEndPos" : 13055, - "secondEndPos" : 13733 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 12995, - "secondPos" : 13673, - "firstEndPos" : 13011, - "secondEndPos" : 13689 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageHelper", - "secondLabel" : "JmsMessageHelper", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 12995, - "secondPos" : 13673, - "firstEndPos" : 13011, - "secondEndPos" : 13689 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJMSDeliveryMode", - "secondLabel" : "setJMSDeliveryMode", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13012, - "secondPos" : 13690, - "firstEndPos" : 13030, - "secondEndPos" : 13708 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13031, - "secondPos" : 13709, - "firstEndPos" : 13054, - "secondEndPos" : 13732 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 13031, - "secondPos" : 13709, - "firstEndPos" : 13041, - "secondEndPos" : 13719 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 13043, - "secondPos" : 13721, - "firstEndPos" : 13054, - "secondEndPos" : 13732 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 13075, - "secondPos" : 13753, - "firstEndPos" : 13263, - "secondEndPos" : 13941 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 13082, - "secondPos" : 13760, - "firstEndPos" : 13096, - "secondEndPos" : 13774 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 13082, - "secondPos" : 13760, - "firstEndPos" : 13094, - "secondEndPos" : 13772 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 13082, - "secondPos" : 13760, - "firstEndPos" : 13094, - "secondEndPos" : 13772 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 13095, - "secondPos" : 13773, - "firstEndPos" : 13096, - "secondEndPos" : 13774 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 13098, - "secondPos" : 13776, - "firstEndPos" : 13263, - "secondEndPos" : 13941 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 13120, - "secondPos" : 13798, - "firstEndPos" : 13245, - "secondEndPos" : 13923 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 13126, - "secondPos" : 13804, - "firstEndPos" : 13244, - "secondEndPos" : 13922 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "IllegalHeaderException", - "secondLabel" : "IllegalHeaderException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 13130, - "secondPos" : 13808, - "firstEndPos" : 13152, - "secondEndPos" : 13830 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 13130, - "secondPos" : 13808, - "firstEndPos" : 13152, - "secondEndPos" : 13830 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 13153, - "secondPos" : 13831, - "firstEndPos" : 13240, - "secondEndPos" : 13918 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Failed to set the \"", - "secondLabel" : "\"Failed to set the \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13153, - "secondPos" : 13831, - "firstEndPos" : 13173, - "secondEndPos" : 13851 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "+", - "secondLabel" : "+", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13174, - "secondPos" : 13852, - "firstEndPos" : 13175, - "secondEndPos" : 13853 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_DELIVERY_MODE", - "secondLabel" : "JMS_DELIVERY_MODE", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13176, - "secondPos" : 13854, - "firstEndPos" : 13193, - "secondEndPos" : 13871 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\" header. Cause: \"", - "secondLabel" : "\" header. Cause: \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13196, - "secondPos" : 13874, - "firstEndPos" : 13214, - "secondEndPos" : 13892 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13217, - "secondPos" : 13895, - "firstEndPos" : 13240, - "secondEndPos" : 13918 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13217, - "secondPos" : 13895, - "firstEndPos" : 13218, - "secondEndPos" : 13896 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 13217, - "secondPos" : 13895, - "firstEndPos" : 13218, - "secondEndPos" : 13896 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getLocalizedMessage", - "secondLabel" : "getLocalizedMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13219, - "secondPos" : 13897, - "firstEndPos" : 13238, - "secondEndPos" : 13916 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 13242, - "secondPos" : 13920, - "firstEndPos" : 13243, - "secondEndPos" : 13921 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 13283, - "secondPos" : 13961, - "firstEndPos" : 15276, - "secondEndPos" : 15954 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 13287, - "secondPos" : 13965, - "firstEndPos" : 13330, - "secondEndPos" : 14008 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13287, - "secondPos" : 13965, - "firstEndPos" : 13297, - "secondEndPos" : 13975 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 13287, - "secondPos" : 13965, - "firstEndPos" : 13297, - "secondEndPos" : 13975 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "equalsIgnoreCase", - "secondLabel" : "equalsIgnoreCase", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13298, - "secondPos" : 13976, - "firstEndPos" : 13314, - "secondEndPos" : 13992 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13315, - "secondPos" : 13993, - "firstEndPos" : 13329, - "secondEndPos" : 14007 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_EXPIRATION", - "secondLabel" : "JMS_EXPIRATION", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 13315, - "secondPos" : 13993, - "firstEndPos" : 13329, - "secondEndPos" : 14007 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 13332, - "secondPos" : 14010, - "firstEndPos" : 13905, - "secondEndPos" : 14583 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 13350, - "secondPos" : 14028, - "firstEndPos" : 13891, - "secondEndPos" : 14569 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 13354, - "secondPos" : 14032, - "firstEndPos" : 13381, - "secondEndPos" : 14059 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 13354, - "secondPos" : 14032, - "firstEndPos" : 13365, - "secondEndPos" : 14043 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Long", - "secondLabel" : "Long", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 13377, - "secondPos" : 14055, - "firstEndPos" : 13381, - "secondEndPos" : 14059 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 13377, - "secondPos" : 14055, - "firstEndPos" : 13381, - "secondEndPos" : 14059 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 13383, - "secondPos" : 14061, - "firstEndPos" : 13717, - "secondEndPos" : 14395 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 13405, - "secondPos" : 14083, - "firstEndPos" : 13699, - "secondEndPos" : 14377 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 13409, - "secondPos" : 14087, - "firstEndPos" : 13505, - "secondEndPos" : 14183 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 13435, - "secondPos" : 14113, - "firstEndPos" : 13483, - "secondEndPos" : 14161 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 13435, - "secondPos" : 14113, - "firstEndPos" : 13482, - "secondEndPos" : 14160 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13435, - "secondPos" : 14113, - "firstEndPos" : 13445, - "secondEndPos" : 14123 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 13435, - "secondPos" : 14113, - "firstEndPos" : 13445, - "secondEndPos" : 14123 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJMSExpiration", - "secondLabel" : "setJMSExpiration", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13446, - "secondPos" : 14124, - "firstEndPos" : 13462, - "secondEndPos" : 14140 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 13463, - "secondPos" : 14141, - "firstEndPos" : 13481, - "secondEndPos" : 14159 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13463, - "secondPos" : 14141, - "firstEndPos" : 13481, - "secondEndPos" : 14159 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Long", - "secondLabel" : "Long", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 13464, - "secondPos" : 14142, - "firstEndPos" : 13468, - "secondEndPos" : 14146 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 13464, - "secondPos" : 14142, - "firstEndPos" : 13468, - "secondEndPos" : 14146 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 13470, - "secondPos" : 14148, - "firstEndPos" : 13481, - "secondEndPos" : 14159 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 13506, - "secondPos" : 14184, - "firstEndPos" : 13699, - "secondEndPos" : 14377 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 13513, - "secondPos" : 14191, - "firstEndPos" : 13527, - "secondEndPos" : 14205 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 13513, - "secondPos" : 14191, - "firstEndPos" : 13525, - "secondEndPos" : 14203 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 13513, - "secondPos" : 14191, - "firstEndPos" : 13525, - "secondEndPos" : 14203 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 13526, - "secondPos" : 14204, - "firstEndPos" : 13527, - "secondEndPos" : 14205 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 13529, - "secondPos" : 14207, - "firstEndPos" : 13699, - "secondEndPos" : 14377 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 13555, - "secondPos" : 14233, - "firstEndPos" : 13677, - "secondEndPos" : 14355 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 13561, - "secondPos" : 14239, - "firstEndPos" : 13676, - "secondEndPos" : 14354 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "IllegalHeaderException", - "secondLabel" : "IllegalHeaderException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 13565, - "secondPos" : 14243, - "firstEndPos" : 13587, - "secondEndPos" : 14265 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 13565, - "secondPos" : 14243, - "firstEndPos" : 13587, - "secondEndPos" : 14265 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 13588, - "secondPos" : 14266, - "firstEndPos" : 13672, - "secondEndPos" : 14350 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Failed to set the \"", - "secondLabel" : "\"Failed to set the \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13588, - "secondPos" : 14266, - "firstEndPos" : 13608, - "secondEndPos" : 14286 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "+", - "secondLabel" : "+", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13609, - "secondPos" : 14287, - "firstEndPos" : 13610, - "secondEndPos" : 14288 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_EXPIRATION", - "secondLabel" : "JMS_EXPIRATION", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13611, - "secondPos" : 14289, - "firstEndPos" : 13625, - "secondEndPos" : 14303 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\" header. Cause: \"", - "secondLabel" : "\" header. Cause: \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13628, - "secondPos" : 14306, - "firstEndPos" : 13646, - "secondEndPos" : 14324 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13649, - "secondPos" : 14327, - "firstEndPos" : 13672, - "secondEndPos" : 14350 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13649, - "secondPos" : 14327, - "firstEndPos" : 13650, - "secondEndPos" : 14328 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 13649, - "secondPos" : 14327, - "firstEndPos" : 13650, - "secondEndPos" : 14328 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getLocalizedMessage", - "secondLabel" : "getLocalizedMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13651, - "secondPos" : 14329, - "firstEndPos" : 13670, - "secondEndPos" : 14348 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 13674, - "secondPos" : 14352, - "firstEndPos" : 13675, - "secondEndPos" : 14353 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 13723, - "secondPos" : 14401, - "firstEndPos" : 13891, - "secondEndPos" : 14569 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 13745, - "secondPos" : 14423, - "firstEndPos" : 13873, - "secondEndPos" : 14551 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 13751, - "secondPos" : 14429, - "firstEndPos" : 13872, - "secondEndPos" : 14550 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "IllegalHeaderException", - "secondLabel" : "IllegalHeaderException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 13755, - "secondPos" : 14433, - "firstEndPos" : 13777, - "secondEndPos" : 14455 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 13755, - "secondPos" : 14433, - "firstEndPos" : 13777, - "secondEndPos" : 14455 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 13778, - "secondPos" : 14456, - "firstEndPos" : 13871, - "secondEndPos" : 14549 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"The \"", - "secondLabel" : "\"The \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13778, - "secondPos" : 14456, - "firstEndPos" : 13784, - "secondEndPos" : 14462 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "+", - "secondLabel" : "+", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13785, - "secondPos" : 14463, - "firstEndPos" : 13786, - "secondEndPos" : 14464 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_EXPIRATION", - "secondLabel" : "JMS_EXPIRATION", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13787, - "secondPos" : 14465, - "firstEndPos" : 13801, - "secondEndPos" : 14479 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\" must be a Long. Type found: \"", - "secondLabel" : "\" must be a Long. Type found: \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13804, - "secondPos" : 14482, - "firstEndPos" : 13836, - "secondEndPos" : 14514 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 13839, - "secondPos" : 14517, - "firstEndPos" : 13871, - "secondEndPos" : 14549 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13839, - "secondPos" : 14517, - "firstEndPos" : 13861, - "secondEndPos" : 14539 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 13839, - "secondPos" : 14517, - "firstEndPos" : 13861, - "secondEndPos" : 14539 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13839, - "secondPos" : 14517, - "firstEndPos" : 13850, - "secondEndPos" : 14528 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 13839, - "secondPos" : 14517, - "firstEndPos" : 13850, - "secondEndPos" : 14528 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getClass", - "secondLabel" : "getClass", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13851, - "secondPos" : 14529, - "firstEndPos" : 13859, - "secondEndPos" : 14537 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getName", - "secondLabel" : "getName", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13862, - "secondPos" : 14540, - "firstEndPos" : 13869, - "secondEndPos" : 14547 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 13911, - "secondPos" : 14589, - "firstEndPos" : 15276, - "secondEndPos" : 15954 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 13929, - "secondPos" : 14607, - "firstEndPos" : 14009, - "secondEndPos" : 14687 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 13929, - "secondPos" : 14607, - "firstEndPos" : 14008, - "secondEndPos" : 14686 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13929, - "secondPos" : 14607, - "firstEndPos" : 13935, - "secondEndPos" : 14613 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "LOGGER", - "secondLabel" : "LOGGER", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 13929, - "secondPos" : 14607, - "firstEndPos" : 13935, - "secondEndPos" : 14613 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "trace", - "secondLabel" : "trace", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13936, - "secondPos" : 14614, - "firstEndPos" : 13941, - "secondEndPos" : 14619 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 13942, - "secondPos" : 14620, - "firstEndPos" : 14007, - "secondEndPos" : 14685 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Ignoring JMS header: {} with value: {}\"", - "secondLabel" : "\"Ignoring JMS header: {} with value: {}\"", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 13942, - "secondPos" : 14620, - "firstEndPos" : 13982, - "secondEndPos" : 14660 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 13984, - "secondPos" : 14662, - "firstEndPos" : 13994, - "secondEndPos" : 14672 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 13996, - "secondPos" : 14674, - "firstEndPos" : 14007, - "secondEndPos" : 14685 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 14026, - "secondPos" : 14704, - "firstEndPos" : 15262, - "secondEndPos" : 15940 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 14030, - "secondPos" : 14708, - "firstEndPos" : 14239, - "secondEndPos" : 14917 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 14030, - "secondPos" : 14708, - "firstEndPos" : 14074, - "secondEndPos" : 14752 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14030, - "secondPos" : 14708, - "firstEndPos" : 14040, - "secondEndPos" : 14718 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 14030, - "secondPos" : 14708, - "firstEndPos" : 14040, - "secondEndPos" : 14718 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "equalsIgnoreCase", - "secondLabel" : "equalsIgnoreCase", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14041, - "secondPos" : 14719, - "firstEndPos" : 14057, - "secondEndPos" : 14735 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14058, - "secondPos" : 14736, - "firstEndPos" : 14073, - "secondEndPos" : 14751 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_DESTINATION", - "secondLabel" : "JMS_DESTINATION", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 14058, - "secondPos" : 14736, - "firstEndPos" : 14073, - "secondEndPos" : 14751 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "||", - "secondLabel" : "||", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 14075, - "secondPos" : 14753, - "firstEndPos" : 14077, - "secondEndPos" : 14755 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 14078, - "secondPos" : 14756, - "firstEndPos" : 14121, - "secondEndPos" : 14799 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14078, - "secondPos" : 14756, - "firstEndPos" : 14088, - "secondEndPos" : 14766 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 14078, - "secondPos" : 14756, - "firstEndPos" : 14088, - "secondEndPos" : 14766 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "equalsIgnoreCase", - "secondLabel" : "equalsIgnoreCase", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14089, - "secondPos" : 14767, - "firstEndPos" : 14105, - "secondEndPos" : 14783 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14106, - "secondPos" : 14784, - "firstEndPos" : 14120, - "secondEndPos" : 14798 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_MESSAGE_ID", - "secondLabel" : "JMS_MESSAGE_ID", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 14106, - "secondPos" : 14784, - "firstEndPos" : 14120, - "secondEndPos" : 14798 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 14125, - "secondPos" : 14803, - "firstEndPos" : 14167, - "secondEndPos" : 14845 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14125, - "secondPos" : 14803, - "firstEndPos" : 14135, - "secondEndPos" : 14813 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 14125, - "secondPos" : 14803, - "firstEndPos" : 14135, - "secondEndPos" : 14813 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "equalsIgnoreCase", - "secondLabel" : "equalsIgnoreCase", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14136, - "secondPos" : 14814, - "firstEndPos" : 14152, - "secondEndPos" : 14830 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14153, - "secondPos" : 14831, - "firstEndPos" : 14166, - "secondEndPos" : 14844 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_TIMESTAMP", - "secondLabel" : "JMS_TIMESTAMP", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 14153, - "secondPos" : 14831, - "firstEndPos" : 14166, - "secondEndPos" : 14844 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 14195, - "secondPos" : 14873, - "firstEndPos" : 14239, - "secondEndPos" : 14917 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14195, - "secondPos" : 14873, - "firstEndPos" : 14205, - "secondEndPos" : 14883 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 14195, - "secondPos" : 14873, - "firstEndPos" : 14205, - "secondEndPos" : 14883 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "equalsIgnoreCase", - "secondLabel" : "equalsIgnoreCase", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14206, - "secondPos" : 14884, - "firstEndPos" : 14222, - "secondEndPos" : 14900 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14223, - "secondPos" : 14901, - "firstEndPos" : 14238, - "secondEndPos" : 14916 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_REDELIVERED", - "secondLabel" : "JMS_REDELIVERED", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 14223, - "secondPos" : 14901, - "firstEndPos" : 14238, - "secondEndPos" : 14916 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 14241, - "secondPos" : 14919, - "firstEndPos" : 14703, - "secondEndPos" : 15381 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// The following properties are set by the", - "secondLabel" : "// The following properties are set by the", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 14263, - "secondPos" : 14941, - "firstEndPos" : 14305, - "secondEndPos" : 14983 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// MessageProducer:", - "secondLabel" : "// MessageProducer:", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 14326, - "secondPos" : 15004, - "firstEndPos" : 14345, - "secondEndPos" : 15023 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// JMSDestination", - "secondLabel" : "// JMSDestination", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 14366, - "secondPos" : 15044, - "firstEndPos" : 14383, - "secondEndPos" : 15061 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// The following are set on the underlying JMS provider:", - "secondLabel" : "// The following are set on the underlying JMS provider:", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 14404, - "secondPos" : 15082, - "firstEndPos" : 14460, - "secondEndPos" : 15138 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// JMSMessageID, JMSTimestamp, JMSRedelivered", - "secondLabel" : "// JMSMessageID, JMSTimestamp, JMSRedelivered", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 14481, - "secondPos" : 15159, - "firstEndPos" : 14526, - "secondEndPos" : 15204 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// log at trace level to not spam log", - "secondLabel" : "// log at trace level to not spam log", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 14547, - "secondPos" : 15225, - "firstEndPos" : 14584, - "secondEndPos" : 15262 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 14605, - "secondPos" : 15283, - "firstEndPos" : 14685, - "secondEndPos" : 15363 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 14605, - "secondPos" : 15283, - "firstEndPos" : 14684, - "secondEndPos" : 15362 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14605, - "secondPos" : 15283, - "firstEndPos" : 14611, - "secondEndPos" : 15289 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "LOGGER", - "secondLabel" : "LOGGER", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 14605, - "secondPos" : 15283, - "firstEndPos" : 14611, - "secondEndPos" : 15289 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "trace", - "secondLabel" : "trace", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14612, - "secondPos" : 15290, - "firstEndPos" : 14617, - "secondEndPos" : 15295 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14618, - "secondPos" : 15296, - "firstEndPos" : 14683, - "secondEndPos" : 15361 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Ignoring JMS header: {} with value: {}\"", - "secondLabel" : "\"Ignoring JMS header: {} with value: {}\"", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 14618, - "secondPos" : 15296, - "firstEndPos" : 14658, - "secondEndPos" : 15336 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 14660, - "secondPos" : 15338, - "firstEndPos" : 14670, - "secondEndPos" : 15348 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 14672, - "secondPos" : 15350, - "firstEndPos" : 14683, - "secondEndPos" : 15361 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 14709, - "secondPos" : 15387, - "firstEndPos" : 15262, - "secondEndPos" : 15940 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 14731, - "secondPos" : 15409, - "firstEndPos" : 15244, - "secondEndPos" : 15922 -}, { - "firstType" : "PrefixExpression", - "secondType" : "PrefixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 14735, - "secondPos" : 15413, - "firstEndPos" : 14775, - "secondEndPos" : 15453 -}, { - "firstType" : "PREFIX_EXPRESSION_OPERATOR", - "secondType" : "PREFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!", - "secondLabel" : "!", - "firstParentType" : "PrefixExpression", - "secondParentType" : "PrefixExpression", - "firstPos" : 14735, - "secondPos" : 15413, - "firstEndPos" : 14736, - "secondEndPos" : 15414 -}, { - "firstType" : "ParenthesizedExpression", - "secondType" : "ParenthesizedExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "PrefixExpression", - "secondParentType" : "PrefixExpression", - "firstPos" : 14736, - "secondPos" : 15414, - "firstEndPos" : 14775, - "secondEndPos" : 15453 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParenthesizedExpression", - "secondParentType" : "ParenthesizedExpression", - "firstPos" : 14737, - "secondPos" : 15415, - "firstEndPos" : 14774, - "secondEndPos" : 15452 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 14737, - "secondPos" : 15415, - "firstEndPos" : 14748, - "secondEndPos" : 15426 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageType", - "secondLabel" : "JmsMessageType", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 14760, - "secondPos" : 15438, - "firstEndPos" : 14774, - "secondEndPos" : 15452 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 14760, - "secondPos" : 15438, - "firstEndPos" : 14774, - "secondEndPos" : 15452 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 14777, - "secondPos" : 15455, - "firstEndPos" : 15244, - "secondEndPos" : 15922 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 14803, - "secondPos" : 15481, - "firstEndPos" : 14864, - "secondEndPos" : 15542 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 14803, - "secondPos" : 15481, - "firstEndPos" : 14809, - "secondEndPos" : 15487 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 14803, - "secondPos" : 15481, - "firstEndPos" : 14809, - "secondEndPos" : 15487 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 14810, - "secondPos" : 15488, - "firstEndPos" : 14863, - "secondEndPos" : 15541 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "encodedName", - "secondLabel" : "encodedName", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 14810, - "secondPos" : 15488, - "firstEndPos" : 14821, - "secondEndPos" : 15499 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 14824, - "secondPos" : 15502, - "firstEndPos" : 14863, - "secondEndPos" : 15541 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14824, - "secondPos" : 15502, - "firstEndPos" : 14841, - "secondEndPos" : 15519 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "keyFormatStrategy", - "secondLabel" : "keyFormatStrategy", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 14824, - "secondPos" : 15502, - "firstEndPos" : 14841, - "secondEndPos" : 15519 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "encodeKey", - "secondLabel" : "encodeKey", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14842, - "secondPos" : 15520, - "firstEndPos" : 14851, - "secondEndPos" : 15529 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14852, - "secondPos" : 15530, - "firstEndPos" : 14862, - "secondEndPos" : 15540 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerName", - "secondLabel" : "headerName", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 14852, - "secondPos" : 15530, - "firstEndPos" : 14862, - "secondEndPos" : 15540 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 14889, - "secondPos" : 15567, - "firstEndPos" : 15222, - "secondEndPos" : 15900 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 14893, - "secondPos" : 15571, - "firstEndPos" : 15016, - "secondEndPos" : 15694 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 14923, - "secondPos" : 15601, - "firstEndPos" : 14990, - "secondEndPos" : 15668 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 14923, - "secondPos" : 15601, - "firstEndPos" : 14989, - "secondEndPos" : 15667 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14923, - "secondPos" : 15601, - "firstEndPos" : 14939, - "secondEndPos" : 15617 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageHelper", - "secondLabel" : "JmsMessageHelper", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 14923, - "secondPos" : 15601, - "firstEndPos" : 14939, - "secondEndPos" : 15617 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setProperty", - "secondLabel" : "setProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14940, - "secondPos" : 15618, - "firstEndPos" : 14951, - "secondEndPos" : 15629 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 14952, - "secondPos" : 15630, - "firstEndPos" : 14988, - "secondEndPos" : 15666 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 14952, - "secondPos" : 15630, - "firstEndPos" : 14962, - "secondEndPos" : 15640 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "encodedName", - "secondLabel" : "encodedName", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 14964, - "secondPos" : 15642, - "firstEndPos" : 14975, - "secondEndPos" : 15653 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headerValue", - "secondLabel" : "headerValue", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 14977, - "secondPos" : 15655, - "firstEndPos" : 14988, - "secondEndPos" : 15666 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 15017, - "secondPos" : 15695, - "firstEndPos" : 15222, - "secondEndPos" : 15900 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 15024, - "secondPos" : 15702, - "firstEndPos" : 15038, - "secondEndPos" : 15716 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15024, - "secondPos" : 15702, - "firstEndPos" : 15036, - "secondEndPos" : 15714 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 15024, - "secondPos" : 15702, - "firstEndPos" : 15036, - "secondEndPos" : 15714 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 15037, - "secondPos" : 15715, - "firstEndPos" : 15038, - "secondEndPos" : 15716 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 15040, - "secondPos" : 15718, - "firstEndPos" : 15222, - "secondEndPos" : 15900 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 15070, - "secondPos" : 15748, - "firstEndPos" : 15196, - "secondEndPos" : 15874 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 15076, - "secondPos" : 15754, - "firstEndPos" : 15195, - "secondEndPos" : 15873 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "IllegalHeaderException", - "secondLabel" : "IllegalHeaderException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15080, - "secondPos" : 15758, - "firstEndPos" : 15102, - "secondEndPos" : 15780 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 15080, - "secondPos" : 15758, - "firstEndPos" : 15102, - "secondEndPos" : 15780 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 15103, - "secondPos" : 15781, - "firstEndPos" : 15191, - "secondEndPos" : 15869 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Failed to set the header \"", - "secondLabel" : "\"Failed to set the header \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 15103, - "secondPos" : 15781, - "firstEndPos" : 15130, - "secondEndPos" : 15808 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "+", - "secondLabel" : "+", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 15131, - "secondPos" : 15809, - "firstEndPos" : 15132, - "secondEndPos" : 15810 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "encodedName", - "secondLabel" : "encodedName", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 15133, - "secondPos" : 15811, - "firstEndPos" : 15144, - "secondEndPos" : 15822 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\" header. Cause: \"", - "secondLabel" : "\" header. Cause: \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 15147, - "secondPos" : 15825, - "firstEndPos" : 15165, - "secondEndPos" : 15843 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 15168, - "secondPos" : 15846, - "firstEndPos" : 15191, - "secondEndPos" : 15869 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15168, - "secondPos" : 15846, - "firstEndPos" : 15169, - "secondEndPos" : 15847 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 15168, - "secondPos" : 15846, - "firstEndPos" : 15169, - "secondEndPos" : 15847 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getLocalizedMessage", - "secondLabel" : "getLocalizedMessage", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15170, - "secondPos" : 15848, - "firstEndPos" : 15189, - "secondEndPos" : 15867 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 15193, - "secondPos" : 15871, - "firstEndPos" : 15194, - "secondEndPos" : 15872 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 15295, - "secondPos" : 15973, - "firstEndPos" : 15313, - "secondEndPos" : 15991 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 15302, - "secondPos" : 15980, - "firstEndPos" : 15312, - "secondEndPos" : 15990 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 15325, - "secondPos" : 16003, - "firstEndPos" : 17477, - "secondEndPos" : 18155 -}, { - "firstType" : "SingleMemberAnnotation", - "secondType" : "SingleMemberAnnotation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 15325, - "secondPos" : 16003, - "firstEndPos" : 15355, - "secondEndPos" : 16033 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "SuppressWarnings", - "secondLabel" : "SuppressWarnings", - "firstParentType" : "SingleMemberAnnotation", - "secondParentType" : "SingleMemberAnnotation", - "firstPos" : 15326, - "secondPos" : 16004, - "firstEndPos" : 15342, - "secondEndPos" : 16020 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"unchecked\"", - "secondLabel" : "\"unchecked\"", - "firstParentType" : "SingleMemberAnnotation", - "secondParentType" : "SingleMemberAnnotation", - "firstPos" : 15343, - "secondPos" : 16021, - "firstEndPos" : 15354, - "secondEndPos" : 16032 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 15360, - "secondPos" : 16038, - "firstEndPos" : 15366, - "secondEndPos" : 16044 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 15367, - "secondPos" : 16045, - "firstEndPos" : 15373, - "secondEndPos" : 16051 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exchange", - "secondLabel" : "Exchange", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15374, - "secondPos" : 16052, - "firstEndPos" : 15382, - "secondEndPos" : 16060 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 15374, - "secondPos" : 16052, - "firstEndPos" : 15382, - "secondEndPos" : 16060 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJmsMessageHeaders", - "secondLabel" : "setJmsMessageHeaders", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 15383, - "secondPos" : 16061, - "firstEndPos" : 15403, - "secondEndPos" : 16081 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 15404, - "secondPos" : 16082, - "firstEndPos" : 15428, - "secondEndPos" : 16106 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 15404, - "secondPos" : 16082, - "firstEndPos" : 15409, - "secondEndPos" : 16087 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15410, - "secondPos" : 16088, - "firstEndPos" : 15417, - "secondEndPos" : 16095 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 15410, - "secondPos" : 16088, - "firstEndPos" : 15417, - "secondEndPos" : 16095 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 15418, - "secondPos" : 16096, - "firstEndPos" : 15428, - "secondEndPos" : 16106 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 15430, - "secondPos" : 16108, - "firstEndPos" : 15453, - "secondEndPos" : 16131 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 15430, - "secondPos" : 16108, - "firstEndPos" : 15435, - "secondEndPos" : 16113 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exchange", - "secondLabel" : "Exchange", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15436, - "secondPos" : 16114, - "firstEndPos" : 15444, - "secondEndPos" : 16122 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 15436, - "secondPos" : 16114, - "firstEndPos" : 15444, - "secondEndPos" : 16122 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 15445, - "secondPos" : 16123, - "firstEndPos" : 15453, - "secondEndPos" : 16131 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 15455, - "secondPos" : 16133, - "firstEndPos" : 15466, - "secondEndPos" : 16144 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 15455, - "secondPos" : 16133, - "firstEndPos" : 15462, - "secondEndPos" : 16140 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "out", - "secondLabel" : "out", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 15463, - "secondPos" : 16141, - "firstEndPos" : 15466, - "secondEndPos" : 16144 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 15468, - "secondPos" : 16146, - "firstEndPos" : 15503, - "secondEndPos" : 16181 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "KeyFormatStrategy", - "secondLabel" : "KeyFormatStrategy", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15468, - "secondPos" : 16146, - "firstEndPos" : 15485, - "secondEndPos" : 16163 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 15468, - "secondPos" : 16146, - "firstEndPos" : 15485, - "secondEndPos" : 16163 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "keyFormatStrategy", - "secondLabel" : "keyFormatStrategy", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 15486, - "secondPos" : 16164, - "firstEndPos" : 15503, - "secondEndPos" : 16181 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15512, - "secondPos" : 16190, - "firstEndPos" : 15524, - "secondEndPos" : 16202 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 15512, - "secondPos" : 16190, - "firstEndPos" : 15524, - "secondEndPos" : 16202 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 15525, - "secondPos" : 16203, - "firstEndPos" : 17477, - "secondEndPos" : 18155 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 15535, - "secondPos" : 16213, - "firstEndPos" : 15595, - "secondEndPos" : 16273 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 15535, - "secondPos" : 16213, - "firstEndPos" : 15554, - "secondEndPos" : 16232 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15535, - "secondPos" : 16213, - "firstEndPos" : 15538, - "secondEndPos" : 16216 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 15535, - "secondPos" : 16213, - "firstEndPos" : 15538, - "secondEndPos" : 16216 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15539, - "secondPos" : 16217, - "firstEndPos" : 15545, - "secondEndPos" : 16223 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 15539, - "secondPos" : 16217, - "firstEndPos" : 15545, - "secondEndPos" : 16223 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15547, - "secondPos" : 16225, - "firstEndPos" : 15553, - "secondEndPos" : 16231 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 15547, - "secondPos" : 16225, - "firstEndPos" : 15553, - "secondEndPos" : 16231 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 15555, - "secondPos" : 16233, - "firstEndPos" : 15594, - "secondEndPos" : 16272 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 15555, - "secondPos" : 16233, - "firstEndPos" : 15562, - "secondEndPos" : 16240 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 15565, - "secondPos" : 16243, - "firstEndPos" : 15594, - "secondEndPos" : 16272 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 15569, - "secondPos" : 16247, - "firstEndPos" : 15592, - "secondEndPos" : 16270 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "HashMap", - "secondLabel" : "HashMap", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15569, - "secondPos" : 16247, - "firstEndPos" : 15576, - "secondEndPos" : 16254 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 15569, - "secondPos" : 16247, - "firstEndPos" : 15576, - "secondEndPos" : 16254 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15577, - "secondPos" : 16255, - "firstEndPos" : 15583, - "secondEndPos" : 16261 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 15577, - "secondPos" : 16255, - "firstEndPos" : 15583, - "secondEndPos" : 16261 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 15585, - "secondPos" : 16263, - "firstEndPos" : 15591, - "secondEndPos" : 16269 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 15585, - "secondPos" : 16263, - "firstEndPos" : 15591, - "secondEndPos" : 16269 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 15604, - "secondPos" : 16282, - "firstEndPos" : 17299, - "secondEndPos" : 17977 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 15608, - "secondPos" : 16286, - "firstEndPos" : 15626, - "secondEndPos" : 16304 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 15608, - "secondPos" : 16286, - "firstEndPos" : 15618, - "secondEndPos" : 16296 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!=", - "secondLabel" : "!=", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 15619, - "secondPos" : 16297, - "firstEndPos" : 15621, - "secondEndPos" : 16299 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 15622, - "secondPos" : 16300, - "firstEndPos" : 15626, - "secondEndPos" : 16304 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 15628, - "secondPos" : 16306, - "firstEndPos" : 17299, - "secondEndPos" : 17977 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// lets populate the standard JMS message headers", - "secondLabel" : "// lets populate the standard JMS message headers", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 15642, - "secondPos" : 16320, - "firstEndPos" : 15691, - "secondEndPos" : 16369 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 15704, - "secondPos" : 16382, - "firstEndPos" : 16731, - "secondEndPos" : 17409 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 15708, - "secondPos" : 16386, - "firstEndPos" : 16640, - "secondEndPos" : 17318 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 15726, - "secondPos" : 16404, - "firstEndPos" : 15792, - "secondEndPos" : 16470 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 15726, - "secondPos" : 16404, - "firstEndPos" : 15791, - "secondEndPos" : 16469 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15726, - "secondPos" : 16404, - "firstEndPos" : 15733, - "secondEndPos" : 16411 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 15726, - "secondPos" : 16404, - "firstEndPos" : 15733, - "secondEndPos" : 16411 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15734, - "secondPos" : 16412, - "firstEndPos" : 15737, - "secondEndPos" : 16415 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15738, - "secondPos" : 16416, - "firstEndPos" : 15790, - "secondEndPos" : 16468 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_CORRELATION_ID", - "secondLabel" : "JMS_CORRELATION_ID", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 15738, - "secondPos" : 16416, - "firstEndPos" : 15756, - "secondEndPos" : 16434 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 15758, - "secondPos" : 16436, - "firstEndPos" : 15790, - "secondEndPos" : 16468 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15758, - "secondPos" : 16436, - "firstEndPos" : 15768, - "secondEndPos" : 16446 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 15758, - "secondPos" : 16436, - "firstEndPos" : 15768, - "secondEndPos" : 16446 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSCorrelationID", - "secondLabel" : "getJMSCorrelationID", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15769, - "secondPos" : 16447, - "firstEndPos" : 15788, - "secondEndPos" : 16466 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 15809, - "secondPos" : 16487, - "firstEndPos" : 15873, - "secondEndPos" : 16551 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 15809, - "secondPos" : 16487, - "firstEndPos" : 15872, - "secondEndPos" : 16550 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15809, - "secondPos" : 16487, - "firstEndPos" : 15816, - "secondEndPos" : 16494 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 15809, - "secondPos" : 16487, - "firstEndPos" : 15816, - "secondEndPos" : 16494 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15817, - "secondPos" : 16495, - "firstEndPos" : 15820, - "secondEndPos" : 16498 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15821, - "secondPos" : 16499, - "firstEndPos" : 15871, - "secondEndPos" : 16549 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_DELIVERY_MODE", - "secondLabel" : "JMS_DELIVERY_MODE", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 15821, - "secondPos" : 16499, - "firstEndPos" : 15838, - "secondEndPos" : 16516 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 15840, - "secondPos" : 16518, - "firstEndPos" : 15871, - "secondEndPos" : 16549 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15840, - "secondPos" : 16518, - "firstEndPos" : 15850, - "secondEndPos" : 16528 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 15840, - "secondPos" : 16518, - "firstEndPos" : 15850, - "secondEndPos" : 16528 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSDeliveryMode", - "secondLabel" : "getJMSDeliveryMode", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15851, - "secondPos" : 16529, - "firstEndPos" : 15869, - "secondEndPos" : 16547 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 15890, - "secondPos" : 16568, - "firstEndPos" : 15951, - "secondEndPos" : 16629 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 15890, - "secondPos" : 16568, - "firstEndPos" : 15950, - "secondEndPos" : 16628 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15890, - "secondPos" : 16568, - "firstEndPos" : 15897, - "secondEndPos" : 16575 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 15890, - "secondPos" : 16568, - "firstEndPos" : 15897, - "secondEndPos" : 16575 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15898, - "secondPos" : 16576, - "firstEndPos" : 15901, - "secondEndPos" : 16579 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15902, - "secondPos" : 16580, - "firstEndPos" : 15949, - "secondEndPos" : 16627 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_DESTINATION", - "secondLabel" : "JMS_DESTINATION", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 15902, - "secondPos" : 16580, - "firstEndPos" : 15917, - "secondEndPos" : 16595 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 15919, - "secondPos" : 16597, - "firstEndPos" : 15949, - "secondEndPos" : 16627 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15919, - "secondPos" : 16597, - "firstEndPos" : 15929, - "secondEndPos" : 16607 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 15919, - "secondPos" : 16597, - "firstEndPos" : 15929, - "secondEndPos" : 16607 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSDestination", - "secondLabel" : "getJMSDestination", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15930, - "secondPos" : 16608, - "firstEndPos" : 15947, - "secondEndPos" : 16625 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 15968, - "secondPos" : 16646, - "firstEndPos" : 16027, - "secondEndPos" : 16705 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 15968, - "secondPos" : 16646, - "firstEndPos" : 16026, - "secondEndPos" : 16704 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15968, - "secondPos" : 16646, - "firstEndPos" : 15975, - "secondEndPos" : 16653 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 15968, - "secondPos" : 16646, - "firstEndPos" : 15975, - "secondEndPos" : 16653 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15976, - "secondPos" : 16654, - "firstEndPos" : 15979, - "secondEndPos" : 16657 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15980, - "secondPos" : 16658, - "firstEndPos" : 16025, - "secondEndPos" : 16703 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_EXPIRATION", - "secondLabel" : "JMS_EXPIRATION", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 15980, - "secondPos" : 16658, - "firstEndPos" : 15994, - "secondEndPos" : 16672 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 15996, - "secondPos" : 16674, - "firstEndPos" : 16025, - "secondEndPos" : 16703 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 15996, - "secondPos" : 16674, - "firstEndPos" : 16006, - "secondEndPos" : 16684 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 15996, - "secondPos" : 16674, - "firstEndPos" : 16006, - "secondEndPos" : 16684 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSExpiration", - "secondLabel" : "getJMSExpiration", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16007, - "secondPos" : 16685, - "firstEndPos" : 16023, - "secondEndPos" : 16701 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16044, - "secondPos" : 16722, - "firstEndPos" : 16102, - "secondEndPos" : 16780 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 16044, - "secondPos" : 16722, - "firstEndPos" : 16101, - "secondEndPos" : 16779 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16044, - "secondPos" : 16722, - "firstEndPos" : 16051, - "secondEndPos" : 16729 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16044, - "secondPos" : 16722, - "firstEndPos" : 16051, - "secondEndPos" : 16729 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16052, - "secondPos" : 16730, - "firstEndPos" : 16055, - "secondEndPos" : 16733 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16056, - "secondPos" : 16734, - "firstEndPos" : 16100, - "secondEndPos" : 16778 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_MESSAGE_ID", - "secondLabel" : "JMS_MESSAGE_ID", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16056, - "secondPos" : 16734, - "firstEndPos" : 16070, - "secondEndPos" : 16748 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16072, - "secondPos" : 16750, - "firstEndPos" : 16100, - "secondEndPos" : 16778 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16072, - "secondPos" : 16750, - "firstEndPos" : 16082, - "secondEndPos" : 16760 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16072, - "secondPos" : 16750, - "firstEndPos" : 16082, - "secondEndPos" : 16760 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSMessageID", - "secondLabel" : "getJMSMessageID", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16083, - "secondPos" : 16761, - "firstEndPos" : 16098, - "secondEndPos" : 16776 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16119, - "secondPos" : 16797, - "firstEndPos" : 16174, - "secondEndPos" : 16852 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 16119, - "secondPos" : 16797, - "firstEndPos" : 16173, - "secondEndPos" : 16851 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16119, - "secondPos" : 16797, - "firstEndPos" : 16126, - "secondEndPos" : 16804 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16119, - "secondPos" : 16797, - "firstEndPos" : 16126, - "secondEndPos" : 16804 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16127, - "secondPos" : 16805, - "firstEndPos" : 16130, - "secondEndPos" : 16808 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16131, - "secondPos" : 16809, - "firstEndPos" : 16172, - "secondEndPos" : 16850 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_PRIORITY", - "secondLabel" : "JMS_PRIORITY", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16131, - "secondPos" : 16809, - "firstEndPos" : 16143, - "secondEndPos" : 16821 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16145, - "secondPos" : 16823, - "firstEndPos" : 16172, - "secondEndPos" : 16850 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16145, - "secondPos" : 16823, - "firstEndPos" : 16155, - "secondEndPos" : 16833 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16145, - "secondPos" : 16823, - "firstEndPos" : 16155, - "secondEndPos" : 16833 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSPriority", - "secondLabel" : "getJMSPriority", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16156, - "secondPos" : 16834, - "firstEndPos" : 16170, - "secondEndPos" : 16848 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16191, - "secondPos" : 16869, - "firstEndPos" : 16252, - "secondEndPos" : 16930 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 16191, - "secondPos" : 16869, - "firstEndPos" : 16251, - "secondEndPos" : 16929 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16191, - "secondPos" : 16869, - "firstEndPos" : 16198, - "secondEndPos" : 16876 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16191, - "secondPos" : 16869, - "firstEndPos" : 16198, - "secondEndPos" : 16876 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16199, - "secondPos" : 16877, - "firstEndPos" : 16202, - "secondEndPos" : 16880 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16203, - "secondPos" : 16881, - "firstEndPos" : 16250, - "secondEndPos" : 16928 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_REDELIVERED", - "secondLabel" : "JMS_REDELIVERED", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16203, - "secondPos" : 16881, - "firstEndPos" : 16218, - "secondEndPos" : 16896 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16220, - "secondPos" : 16898, - "firstEndPos" : 16250, - "secondEndPos" : 16928 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16220, - "secondPos" : 16898, - "firstEndPos" : 16230, - "secondEndPos" : 16908 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16220, - "secondPos" : 16898, - "firstEndPos" : 16230, - "secondEndPos" : 16908 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSRedelivered", - "secondLabel" : "getJMSRedelivered", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16231, - "secondPos" : 16909, - "firstEndPos" : 16248, - "secondEndPos" : 16926 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16269, - "secondPos" : 16947, - "firstEndPos" : 16326, - "secondEndPos" : 17004 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 16269, - "secondPos" : 16947, - "firstEndPos" : 16325, - "secondEndPos" : 17003 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16269, - "secondPos" : 16947, - "firstEndPos" : 16276, - "secondEndPos" : 16954 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16269, - "secondPos" : 16947, - "firstEndPos" : 16276, - "secondEndPos" : 16954 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16277, - "secondPos" : 16955, - "firstEndPos" : 16280, - "secondEndPos" : 16958 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16281, - "secondPos" : 16959, - "firstEndPos" : 16324, - "secondEndPos" : 17002 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_TIMESTAMP", - "secondLabel" : "JMS_TIMESTAMP", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16281, - "secondPos" : 16959, - "firstEndPos" : 16294, - "secondEndPos" : 16972 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16296, - "secondPos" : 16974, - "firstEndPos" : 16324, - "secondEndPos" : 17002 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16296, - "secondPos" : 16974, - "firstEndPos" : 16306, - "secondEndPos" : 16984 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16296, - "secondPos" : 16974, - "firstEndPos" : 16306, - "secondEndPos" : 16984 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSTimestamp", - "secondLabel" : "getJMSTimestamp", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16307, - "secondPos" : 16985, - "firstEndPos" : 16322, - "secondEndPos" : 17000 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16343, - "secondPos" : 17021, - "firstEndPos" : 16396, - "secondEndPos" : 17074 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 16343, - "secondPos" : 17021, - "firstEndPos" : 16395, - "secondEndPos" : 17073 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16343, - "secondPos" : 17021, - "firstEndPos" : 16350, - "secondEndPos" : 17028 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16343, - "secondPos" : 17021, - "firstEndPos" : 16350, - "secondEndPos" : 17028 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16351, - "secondPos" : 17029, - "firstEndPos" : 16354, - "secondEndPos" : 17032 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16355, - "secondPos" : 17033, - "firstEndPos" : 16394, - "secondEndPos" : 17072 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_REPLY_TO", - "secondLabel" : "JMS_REPLY_TO", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16355, - "secondPos" : 17033, - "firstEndPos" : 16367, - "secondEndPos" : 17045 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16369, - "secondPos" : 17047, - "firstEndPos" : 16394, - "secondEndPos" : 17072 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSReplyTo", - "secondLabel" : "getJMSReplyTo", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16369, - "secondPos" : 17047, - "firstEndPos" : 16382, - "secondEndPos" : 17060 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16383, - "secondPos" : 17061, - "firstEndPos" : 16393, - "secondEndPos" : 17071 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16383, - "secondPos" : 17061, - "firstEndPos" : 16393, - "secondEndPos" : 17071 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16413, - "secondPos" : 17091, - "firstEndPos" : 16459, - "secondEndPos" : 17137 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 16413, - "secondPos" : 17091, - "firstEndPos" : 16458, - "secondEndPos" : 17136 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16413, - "secondPos" : 17091, - "firstEndPos" : 16420, - "secondEndPos" : 17098 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16413, - "secondPos" : 17091, - "firstEndPos" : 16420, - "secondEndPos" : 17098 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16421, - "secondPos" : 17099, - "firstEndPos" : 16424, - "secondEndPos" : 17102 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16425, - "secondPos" : 17103, - "firstEndPos" : 16457, - "secondEndPos" : 17135 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_TYPE", - "secondLabel" : "JMS_TYPE", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16425, - "secondPos" : 17103, - "firstEndPos" : 16433, - "secondEndPos" : 17111 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16435, - "secondPos" : 17113, - "firstEndPos" : 16457, - "secondEndPos" : 17135 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSType", - "secondLabel" : "getJMSType", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16435, - "secondPos" : 17113, - "firstEndPos" : 16445, - "secondEndPos" : 17123 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16446, - "secondPos" : 17124, - "firstEndPos" : 16456, - "secondEndPos" : 17134 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16446, - "secondPos" : 17124, - "firstEndPos" : 16456, - "secondEndPos" : 17134 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// this works around a bug in the ActiveMQ property handling", - "secondLabel" : "// this works around a bug in the ActiveMQ property handling", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16477, - "secondPos" : 17155, - "firstEndPos" : 16537, - "secondEndPos" : 17215 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16554, - "secondPos" : 17232, - "firstEndPos" : 16626, - "secondEndPos" : 17304 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 16554, - "secondPos" : 17232, - "firstEndPos" : 16625, - "secondEndPos" : 17303 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16554, - "secondPos" : 17232, - "firstEndPos" : 16561, - "secondEndPos" : 17239 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16554, - "secondPos" : 17232, - "firstEndPos" : 16561, - "secondEndPos" : 17239 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16562, - "secondPos" : 17240, - "firstEndPos" : 16565, - "secondEndPos" : 17243 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16566, - "secondPos" : 17244, - "firstEndPos" : 16624, - "secondEndPos" : 17302 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSX_GROUP_ID", - "secondLabel" : "JMSX_GROUP_ID", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16566, - "secondPos" : 17244, - "firstEndPos" : 16579, - "secondEndPos" : 17257 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16581, - "secondPos" : 17259, - "firstEndPos" : 16624, - "secondEndPos" : 17302 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16581, - "secondPos" : 17259, - "firstEndPos" : 16591, - "secondEndPos" : 17269 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16581, - "secondPos" : 17259, - "firstEndPos" : 16591, - "secondEndPos" : 17269 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getStringProperty", - "secondLabel" : "getStringProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16592, - "secondPos" : 17270, - "firstEndPos" : 16609, - "secondEndPos" : 17287 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16610, - "secondPos" : 17288, - "firstEndPos" : 16623, - "secondEndPos" : 17301 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSX_GROUP_ID", - "secondLabel" : "JMSX_GROUP_ID", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16610, - "secondPos" : 17288, - "firstEndPos" : 16623, - "secondEndPos" : 17301 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 16641, - "secondPos" : 17319, - "firstEndPos" : 16731, - "secondEndPos" : 17409 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 16648, - "secondPos" : 17326, - "firstEndPos" : 16662, - "secondEndPos" : 17340 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 16648, - "secondPos" : 17326, - "firstEndPos" : 16660, - "secondEndPos" : 17338 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 16648, - "secondPos" : 17326, - "firstEndPos" : 16660, - "secondEndPos" : 17338 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 16661, - "secondPos" : 17339, - "firstEndPos" : 16662, - "secondEndPos" : 17340 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 16664, - "secondPos" : 17342, - "firstEndPos" : 16731, - "secondEndPos" : 17409 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16682, - "secondPos" : 17360, - "firstEndPos" : 16717, - "secondEndPos" : 17395 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 16688, - "secondPos" : 17366, - "firstEndPos" : 16716, - "secondEndPos" : 17394 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "RuntimeCamelException", - "secondLabel" : "RuntimeCamelException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 16692, - "secondPos" : 17370, - "firstEndPos" : 16713, - "secondEndPos" : 17391 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 16692, - "secondPos" : 17370, - "firstEndPos" : 16713, - "secondEndPos" : 17391 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 16714, - "secondPos" : 17392, - "firstEndPos" : 16715, - "secondEndPos" : 17393 -}, { - "firstType" : "ForStatement", - "secondType" : "ForStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16745, - "secondPos" : 17423, - "firstEndPos" : 17289, - "secondEndPos" : 17967 -}, { - "firstType" : "VariableDeclarationExpression", - "secondType" : "VariableDeclarationExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ForStatement", - "secondParentType" : "ForStatement", - "firstPos" : 16750, - "secondPos" : 17428, - "firstEndPos" : 16819, - "secondEndPos" : 17497 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "VariableDeclarationExpression", - "secondParentType" : "VariableDeclarationExpression", - "firstPos" : 16750, - "secondPos" : 17428, - "firstEndPos" : 16755, - "secondEndPos" : 17433 -}, { - "firstType" : "ParameterizedType", - "secondType" : "ParameterizedType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationExpression", - "secondParentType" : "VariableDeclarationExpression", - "firstPos" : 16756, - "secondPos" : 17434, - "firstEndPos" : 16775, - "secondEndPos" : 17453 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Enumeration", - "secondLabel" : "Enumeration", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 16756, - "secondPos" : 17434, - "firstEndPos" : 16767, - "secondEndPos" : 17445 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 16756, - "secondPos" : 17434, - "firstEndPos" : 16767, - "secondEndPos" : 17445 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 16768, - "secondPos" : 17446, - "firstEndPos" : 16774, - "secondEndPos" : 17452 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ParameterizedType", - "secondParentType" : "ParameterizedType", - "firstPos" : 16768, - "secondPos" : 17446, - "firstEndPos" : 16774, - "secondEndPos" : 17452 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationExpression", - "secondParentType" : "VariableDeclarationExpression", - "firstPos" : 16776, - "secondPos" : 17454, - "firstEndPos" : 16819, - "secondEndPos" : 17497 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "enumeration", - "secondLabel" : "enumeration", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 16776, - "secondPos" : 17454, - "firstEndPos" : 16787, - "secondEndPos" : 17465 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 16790, - "secondPos" : 17468, - "firstEndPos" : 16819, - "secondEndPos" : 17497 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16790, - "secondPos" : 17468, - "firstEndPos" : 16800, - "secondEndPos" : 17478 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16790, - "secondPos" : 17468, - "firstEndPos" : 16800, - "secondEndPos" : 17478 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getPropertyNames", - "secondLabel" : "getPropertyNames", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16801, - "secondPos" : 17479, - "firstEndPos" : 16817, - "secondEndPos" : 17495 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ForStatement", - "secondParentType" : "ForStatement", - "firstPos" : 16821, - "secondPos" : 17499, - "firstEndPos" : 16850, - "secondEndPos" : 17528 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16821, - "secondPos" : 17499, - "firstEndPos" : 16832, - "secondEndPos" : 17510 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "enumeration", - "secondLabel" : "enumeration", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16821, - "secondPos" : 17499, - "firstEndPos" : 16832, - "secondEndPos" : 17510 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "hasMoreElements", - "secondLabel" : "hasMoreElements", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16833, - "secondPos" : 17511, - "firstEndPos" : 16848, - "secondEndPos" : 17526 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ForStatement", - "secondParentType" : "ForStatement", - "firstPos" : 16853, - "secondPos" : 17531, - "firstEndPos" : 17289, - "secondEndPos" : 17967 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16871, - "secondPos" : 17549, - "firstEndPos" : 16910, - "secondEndPos" : 17588 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 16871, - "secondPos" : 17549, - "firstEndPos" : 16877, - "secondEndPos" : 17555 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 16871, - "secondPos" : 17549, - "firstEndPos" : 16877, - "secondEndPos" : 17555 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 16878, - "secondPos" : 17556, - "firstEndPos" : 16909, - "secondEndPos" : 17587 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 16878, - "secondPos" : 17556, - "firstEndPos" : 16881, - "secondEndPos" : 17559 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 16884, - "secondPos" : 17562, - "firstEndPos" : 16909, - "secondEndPos" : 17587 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16884, - "secondPos" : 17562, - "firstEndPos" : 16895, - "secondEndPos" : 17573 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "enumeration", - "secondLabel" : "enumeration", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 16884, - "secondPos" : 17562, - "firstEndPos" : 16895, - "secondEndPos" : 17573 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "nextElement", - "secondLabel" : "nextElement", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16896, - "secondPos" : 17574, - "firstEndPos" : 16907, - "secondEndPos" : 17585 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16927, - "secondPos" : 17605, - "firstEndPos" : 17089, - "secondEndPos" : 17767 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 16931, - "secondPos" : 17609, - "firstEndPos" : 16955, - "secondEndPos" : 17633 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "hasIllegalHeaderKey", - "secondLabel" : "hasIllegalHeaderKey", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16931, - "secondPos" : 17609, - "firstEndPos" : 16950, - "secondEndPos" : 17628 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 16951, - "secondPos" : 17629, - "firstEndPos" : 16954, - "secondEndPos" : 17632 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 16951, - "secondPos" : 17629, - "firstEndPos" : 16954, - "secondEndPos" : 17632 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 16957, - "secondPos" : 17635, - "firstEndPos" : 17089, - "secondEndPos" : 17767 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 16979, - "secondPos" : 17657, - "firstEndPos" : 17071, - "secondEndPos" : 17749 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 16985, - "secondPos" : 17663, - "firstEndPos" : 17070, - "secondEndPos" : 17748 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "IllegalHeaderException", - "secondLabel" : "IllegalHeaderException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 16989, - "secondPos" : 17667, - "firstEndPos" : 17011, - "secondEndPos" : 17689 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 16989, - "secondPos" : 17667, - "firstEndPos" : 17011, - "secondEndPos" : 17689 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 17012, - "secondPos" : 17690, - "firstEndPos" : 17069, - "secondEndPos" : 17747 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Header \"", - "secondLabel" : "\"Header \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 17012, - "secondPos" : 17690, - "firstEndPos" : 17021, - "secondEndPos" : 17699 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "+", - "secondLabel" : "+", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 17022, - "secondPos" : 17700, - "firstEndPos" : 17023, - "secondEndPos" : 17701 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 17024, - "secondPos" : 17702, - "firstEndPos" : 17027, - "secondEndPos" : 17705 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\" is not a legal JMS header name value\"", - "secondLabel" : "\" is not a legal JMS header name value\"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 17030, - "secondPos" : 17708, - "firstEndPos" : 17069, - "secondEndPos" : 17747 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 17106, - "secondPos" : 17784, - "firstEndPos" : 17155, - "secondEndPos" : 17833 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 17106, - "secondPos" : 17784, - "firstEndPos" : 17112, - "secondEndPos" : 17790 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 17106, - "secondPos" : 17784, - "firstEndPos" : 17112, - "secondEndPos" : 17790 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 17113, - "secondPos" : 17791, - "firstEndPos" : 17154, - "secondEndPos" : 17832 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 17113, - "secondPos" : 17791, - "firstEndPos" : 17118, - "secondEndPos" : 17796 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 17121, - "secondPos" : 17799, - "firstEndPos" : 17154, - "secondEndPos" : 17832 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17121, - "secondPos" : 17799, - "firstEndPos" : 17131, - "secondEndPos" : 17809 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 17121, - "secondPos" : 17799, - "firstEndPos" : 17131, - "secondEndPos" : 17809 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getObjectProperty", - "secondLabel" : "getObjectProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17132, - "secondPos" : 17810, - "firstEndPos" : 17149, - "secondEndPos" : 17827 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17150, - "secondPos" : 17828, - "firstEndPos" : 17153, - "secondEndPos" : 17831 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 17150, - "secondPos" : 17828, - "firstEndPos" : 17153, - "secondEndPos" : 17831 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 17172, - "secondPos" : 17850, - "firstEndPos" : 17226, - "secondEndPos" : 17904 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 17172, - "secondPos" : 17850, - "firstEndPos" : 17178, - "secondEndPos" : 17856 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 17172, - "secondPos" : 17850, - "firstEndPos" : 17178, - "secondEndPos" : 17856 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 17179, - "secondPos" : 17857, - "firstEndPos" : 17225, - "secondEndPos" : 17903 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "decodedName", - "secondLabel" : "decodedName", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 17179, - "secondPos" : 17857, - "firstEndPos" : 17190, - "secondEndPos" : 17868 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 17193, - "secondPos" : 17871, - "firstEndPos" : 17225, - "secondEndPos" : 17903 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17193, - "secondPos" : 17871, - "firstEndPos" : 17210, - "secondEndPos" : 17888 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "keyFormatStrategy", - "secondLabel" : "keyFormatStrategy", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 17193, - "secondPos" : 17871, - "firstEndPos" : 17210, - "secondEndPos" : 17888 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "decodeKey", - "secondLabel" : "decodeKey", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17211, - "secondPos" : 17889, - "firstEndPos" : 17220, - "secondEndPos" : 17898 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17221, - "secondPos" : 17899, - "firstEndPos" : 17224, - "secondEndPos" : 17902 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 17221, - "secondPos" : 17899, - "firstEndPos" : 17224, - "secondEndPos" : 17902 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 17243, - "secondPos" : 17921, - "firstEndPos" : 17275, - "secondEndPos" : 17953 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 17243, - "secondPos" : 17921, - "firstEndPos" : 17274, - "secondEndPos" : 17952 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17243, - "secondPos" : 17921, - "firstEndPos" : 17250, - "secondEndPos" : 17928 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 17243, - "secondPos" : 17921, - "firstEndPos" : 17250, - "secondEndPos" : 17928 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "put", - "secondLabel" : "put", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17251, - "secondPos" : 17929, - "firstEndPos" : 17254, - "secondEndPos" : 17932 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17255, - "secondPos" : 17933, - "firstEndPos" : 17273, - "secondEndPos" : 17951 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "decodedName", - "secondLabel" : "decodedName", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 17255, - "secondPos" : 17933, - "firstEndPos" : 17266, - "secondEndPos" : 17944 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 17268, - "secondPos" : 17946, - "firstEndPos" : 17273, - "secondEndPos" : 17951 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 17308, - "secondPos" : 17986, - "firstEndPos" : 17446, - "secondEndPos" : 18124 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "out", - "secondLabel" : "out", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 17312, - "secondPos" : 17990, - "firstEndPos" : 17315, - "secondEndPos" : 17993 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 17317, - "secondPos" : 17995, - "firstEndPos" : 17379, - "secondEndPos" : 18057 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 17331, - "secondPos" : 18009, - "firstEndPos" : 17369, - "secondEndPos" : 18047 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 17331, - "secondPos" : 18009, - "firstEndPos" : 17368, - "secondEndPos" : 18046 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17331, - "secondPos" : 18009, - "firstEndPos" : 17348, - "secondEndPos" : 18026 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 17331, - "secondPos" : 18009, - "firstEndPos" : 17348, - "secondEndPos" : 18026 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17331, - "secondPos" : 18009, - "firstEndPos" : 17339, - "secondEndPos" : 18017 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 17331, - "secondPos" : 18009, - "firstEndPos" : 17339, - "secondEndPos" : 18017 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getOut", - "secondLabel" : "getOut", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17340, - "secondPos" : 18018, - "firstEndPos" : 17346, - "secondEndPos" : 18024 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setHeaders", - "secondLabel" : "setHeaders", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17349, - "secondPos" : 18027, - "firstEndPos" : 17359, - "secondEndPos" : 18037 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17360, - "secondPos" : 18038, - "firstEndPos" : 17367, - "secondEndPos" : 18045 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 17360, - "secondPos" : 18038, - "firstEndPos" : 17367, - "secondEndPos" : 18045 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 17385, - "secondPos" : 18063, - "firstEndPos" : 17446, - "secondEndPos" : 18124 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 17399, - "secondPos" : 18077, - "firstEndPos" : 17436, - "secondEndPos" : 18114 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 17399, - "secondPos" : 18077, - "firstEndPos" : 17435, - "secondEndPos" : 18113 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17399, - "secondPos" : 18077, - "firstEndPos" : 17415, - "secondEndPos" : 18093 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 17399, - "secondPos" : 18077, - "firstEndPos" : 17415, - "secondEndPos" : 18093 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17399, - "secondPos" : 18077, - "firstEndPos" : 17407, - "secondEndPos" : 18085 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 17399, - "secondPos" : 18077, - "firstEndPos" : 17407, - "secondEndPos" : 18085 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getIn", - "secondLabel" : "getIn", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17408, - "secondPos" : 18086, - "firstEndPos" : 17413, - "secondEndPos" : 18091 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setHeaders", - "secondLabel" : "setHeaders", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17416, - "secondPos" : 18094, - "firstEndPos" : 17426, - "secondEndPos" : 18104 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17427, - "secondPos" : 18105, - "firstEndPos" : 17434, - "secondEndPos" : 18112 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "headers", - "secondLabel" : "headers", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 17427, - "secondPos" : 18105, - "firstEndPos" : 17434, - "secondEndPos" : 18112 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 17455, - "secondPos" : 18133, - "firstEndPos" : 17471, - "secondEndPos" : 18149 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "exchange", - "secondLabel" : "exchange", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 17462, - "secondPos" : 18140, - "firstEndPos" : 17470, - "secondEndPos" : 18148 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 17483, - "secondPos" : 18161, - "firstEndPos" : 17873, - "secondEndPos" : 18551 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 17483, - "secondPos" : 18161, - "firstEndPos" : 17623, - "secondEndPos" : 18301 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 17494, - "secondPos" : 18172, - "firstEndPos" : 17528, - "secondEndPos" : 18206 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Gets the JMSType from the message.", - "secondLabel" : "Gets the JMSType from the message.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 17494, - "secondPos" : 18172, - "firstEndPos" : 17528, - "secondEndPos" : 18206 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 17543, - "secondPos" : 18221, - "firstEndPos" : 17569, - "secondEndPos" : 18247 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 17543, - "secondPos" : 18221, - "firstEndPos" : 17549, - "secondEndPos" : 18227 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 17550, - "secondPos" : 18228, - "firstEndPos" : 17557, - "secondEndPos" : 18235 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the message", - "secondLabel" : " the message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 17557, - "secondPos" : 18235, - "firstEndPos" : 17569, - "secondEndPos" : 18247 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 17577, - "secondPos" : 18255, - "firstEndPos" : 17615, - "secondEndPos" : 18293 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@return", - "secondLabel" : "@return", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 17577, - "secondPos" : 18255, - "firstEndPos" : 17584, - "secondEndPos" : 18262 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the type, can be null", - "secondLabel" : " the type, can be null", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 17584, - "secondPos" : 18262, - "firstEndPos" : 17615, - "secondEndPos" : 18293 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 17628, - "secondPos" : 18306, - "firstEndPos" : 17634, - "secondEndPos" : 18312 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 17635, - "secondPos" : 18313, - "firstEndPos" : 17641, - "secondEndPos" : 18319 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 17642, - "secondPos" : 18320, - "firstEndPos" : 17648, - "secondEndPos" : 18326 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 17642, - "secondPos" : 18320, - "firstEndPos" : 17648, - "secondEndPos" : 18326 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSType", - "secondLabel" : "getJMSType", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 17649, - "secondPos" : 18327, - "firstEndPos" : 17659, - "secondEndPos" : 18337 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 17660, - "secondPos" : 18338, - "firstEndPos" : 17675, - "secondEndPos" : 18353 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 17660, - "secondPos" : 18338, - "firstEndPos" : 17667, - "secondEndPos" : 18345 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 17660, - "secondPos" : 18338, - "firstEndPos" : 17667, - "secondEndPos" : 18345 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 17668, - "secondPos" : 18346, - "firstEndPos" : 17675, - "secondEndPos" : 18353 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 17677, - "secondPos" : 18355, - "firstEndPos" : 17873, - "secondEndPos" : 18551 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 17687, - "secondPos" : 18365, - "firstEndPos" : 17845, - "secondEndPos" : 18523 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 17691, - "secondPos" : 18369, - "firstEndPos" : 17743, - "secondEndPos" : 18421 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 17705, - "secondPos" : 18383, - "firstEndPos" : 17733, - "secondEndPos" : 18411 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 17712, - "secondPos" : 18390, - "firstEndPos" : 17732, - "secondEndPos" : 18410 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17712, - "secondPos" : 18390, - "firstEndPos" : 17719, - "secondEndPos" : 18397 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 17712, - "secondPos" : 18390, - "firstEndPos" : 17719, - "secondEndPos" : 18397 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSType", - "secondLabel" : "getJMSType", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 17720, - "secondPos" : 18398, - "firstEndPos" : 17730, - "secondEndPos" : 18408 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 17744, - "secondPos" : 18422, - "firstEndPos" : 17845, - "secondEndPos" : 18523 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 17751, - "secondPos" : 18429, - "firstEndPos" : 17762, - "secondEndPos" : 18440 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exception", - "secondLabel" : "Exception", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 17751, - "secondPos" : 18429, - "firstEndPos" : 17760, - "secondEndPos" : 18438 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 17751, - "secondPos" : 18429, - "firstEndPos" : 17760, - "secondEndPos" : 18438 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 17761, - "secondPos" : 18439, - "firstEndPos" : 17762, - "secondEndPos" : 18440 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 17764, - "secondPos" : 18442, - "firstEndPos" : 17845, - "secondEndPos" : 18523 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// ignore due OracleAQ does not support accessing JMSType", - "secondLabel" : "// ignore due OracleAQ does not support accessing JMSType", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 17778, - "secondPos" : 18456, - "firstEndPos" : 17835, - "secondEndPos" : 18513 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 17855, - "secondPos" : 18533, - "firstEndPos" : 17867, - "secondEndPos" : 18545 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 17862, - "secondPos" : 18540, - "firstEndPos" : 17866, - "secondEndPos" : 18544 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 17879, - "secondPos" : 18557, - "firstEndPos" : 19579, - "secondEndPos" : 20257 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 17879, - "secondPos" : 18557, - "firstEndPos" : 18143, - "secondEndPos" : 18821 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 17890, - "secondPos" : 18568, - "firstEndPos" : 17930, - "secondEndPos" : 18608 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Sets the JMSDeliveryMode on the message.", - "secondLabel" : "Sets the JMSDeliveryMode on the message.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 17890, - "secondPos" : 18568, - "firstEndPos" : 17930, - "secondEndPos" : 18608 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 17945, - "secondPos" : 18623, - "firstEndPos" : 17976, - "secondEndPos" : 18654 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 17945, - "secondPos" : 18623, - "firstEndPos" : 17951, - "secondEndPos" : 18629 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 17952, - "secondPos" : 18630, - "firstEndPos" : 17959, - "secondEndPos" : 18637 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the message", - "secondLabel" : " the message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 17959, - "secondPos" : 18637, - "firstEndPos" : 17976, - "secondEndPos" : 18654 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 17984, - "secondPos" : 18662, - "firstEndPos" : 18052, - "secondEndPos" : 18730 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 17984, - "secondPos" : 18662, - "firstEndPos" : 17990, - "secondEndPos" : 18668 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "deliveryMode", - "secondLabel" : "deliveryMode", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 17991, - "secondPos" : 18669, - "firstEndPos" : 18003, - "secondEndPos" : 18681 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the delivery mode, either as a String or integer", - "secondLabel" : " the delivery mode, either as a String or integer", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 18003, - "secondPos" : 18681, - "firstEndPos" : 18052, - "secondEndPos" : 18730 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 18060, - "secondPos" : 18738, - "firstEndPos" : 18135, - "secondEndPos" : 18813 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@throws", - "secondLabel" : "@throws", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 18060, - "secondPos" : 18738, - "firstEndPos" : 18067, - "secondEndPos" : 18745 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "javax.jms.JMSException", - "secondLabel" : "javax.jms.JMSException", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 18068, - "secondPos" : 18746, - "firstEndPos" : 18090, - "secondEndPos" : 18768 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " is thrown if error setting the delivery mode", - "secondLabel" : " is thrown if error setting the delivery mode", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 18090, - "secondPos" : 18768, - "firstEndPos" : 18135, - "secondEndPos" : 18813 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 18148, - "secondPos" : 18826, - "firstEndPos" : 18154, - "secondEndPos" : 18832 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 18155, - "secondPos" : 18833, - "firstEndPos" : 18161, - "secondEndPos" : 18839 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 18162, - "secondPos" : 18840, - "firstEndPos" : 18166, - "secondEndPos" : 18844 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJMSDeliveryMode", - "secondLabel" : "setJMSDeliveryMode", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 18167, - "secondPos" : 18845, - "firstEndPos" : 18185, - "secondEndPos" : 18863 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 18186, - "secondPos" : 18864, - "firstEndPos" : 18201, - "secondEndPos" : 18879 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 18186, - "secondPos" : 18864, - "firstEndPos" : 18193, - "secondEndPos" : 18871 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 18186, - "secondPos" : 18864, - "firstEndPos" : 18193, - "secondEndPos" : 18871 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 18194, - "secondPos" : 18872, - "firstEndPos" : 18201, - "secondEndPos" : 18879 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 18203, - "secondPos" : 18881, - "firstEndPos" : 18222, - "secondEndPos" : 18900 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 18203, - "secondPos" : 18881, - "firstEndPos" : 18209, - "secondEndPos" : 18887 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 18203, - "secondPos" : 18881, - "firstEndPos" : 18209, - "secondEndPos" : 18887 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "deliveryMode", - "secondLabel" : "deliveryMode", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 18210, - "secondPos" : 18888, - "firstEndPos" : 18222, - "secondEndPos" : 18900 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 18231, - "secondPos" : 18909, - "firstEndPos" : 18243, - "secondEndPos" : 18921 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 18231, - "secondPos" : 18909, - "firstEndPos" : 18243, - "secondEndPos" : 18921 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 18244, - "secondPos" : 18922, - "firstEndPos" : 19579, - "secondEndPos" : 20257 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 18254, - "secondPos" : 18932, - "firstEndPos" : 18267, - "secondEndPos" : 18945 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Integer", - "secondLabel" : "Integer", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 18254, - "secondPos" : 18932, - "firstEndPos" : 18261, - "secondEndPos" : 18939 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 18254, - "secondPos" : 18932, - "firstEndPos" : 18261, - "secondEndPos" : 18939 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "mode", - "secondLabel" : "mode", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 18262, - "secondPos" : 18940, - "firstEndPos" : 18266, - "secondEndPos" : 18944 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 18262, - "secondPos" : 18940, - "firstEndPos" : 18266, - "secondEndPos" : 18944 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 18277, - "secondPos" : 18955, - "firstEndPos" : 19530, - "secondEndPos" : 20208 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 18281, - "secondPos" : 18959, - "firstEndPos" : 18311, - "secondEndPos" : 18989 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "deliveryMode", - "secondLabel" : "deliveryMode", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 18281, - "secondPos" : 18959, - "firstEndPos" : 18293, - "secondEndPos" : 18971 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 18305, - "secondPos" : 18983, - "firstEndPos" : 18311, - "secondEndPos" : 18989 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 18305, - "secondPos" : 18983, - "firstEndPos" : 18311, - "secondEndPos" : 18989 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 18313, - "secondPos" : 18991, - "firstEndPos" : 19190, - "secondEndPos" : 19868 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 18327, - "secondPos" : 19005, - "firstEndPos" : 18360, - "secondEndPos" : 19038 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 18327, - "secondPos" : 19005, - "firstEndPos" : 18333, - "secondEndPos" : 19011 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 18327, - "secondPos" : 19005, - "firstEndPos" : 18333, - "secondEndPos" : 19011 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 18334, - "secondPos" : 19012, - "firstEndPos" : 18359, - "secondEndPos" : 19037 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "s", - "secondLabel" : "s", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 18334, - "secondPos" : 19012, - "firstEndPos" : 18335, - "secondEndPos" : 19013 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 18338, - "secondPos" : 19016, - "firstEndPos" : 18359, - "secondEndPos" : 19037 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 18339, - "secondPos" : 19017, - "firstEndPos" : 18345, - "secondEndPos" : 19023 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 18339, - "secondPos" : 19017, - "firstEndPos" : 18345, - "secondEndPos" : 19023 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "deliveryMode", - "secondLabel" : "deliveryMode", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 18347, - "secondPos" : 19025, - "firstEndPos" : 18359, - "secondEndPos" : 19037 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 18373, - "secondPos" : 19051, - "firstEndPos" : 19180, - "secondEndPos" : 19858 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 18377, - "secondPos" : 19055, - "firstEndPos" : 18425, - "secondEndPos" : 19103 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 18377, - "secondPos" : 19055, - "firstEndPos" : 18405, - "secondEndPos" : 19083 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_DELIVERY_MODE_PERSISTENT", - "secondLabel" : "JMS_DELIVERY_MODE_PERSISTENT", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 18377, - "secondPos" : 19055, - "firstEndPos" : 18405, - "secondEndPos" : 19083 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "equalsIgnoreCase", - "secondLabel" : "equalsIgnoreCase", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 18406, - "secondPos" : 19084, - "firstEndPos" : 18422, - "secondEndPos" : 19100 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 18423, - "secondPos" : 19101, - "firstEndPos" : 18424, - "secondEndPos" : 19102 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "s", - "secondLabel" : "s", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 18423, - "secondPos" : 19101, - "firstEndPos" : 18424, - "secondEndPos" : 19102 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 18427, - "secondPos" : 19105, - "firstEndPos" : 18490, - "secondEndPos" : 19168 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 18445, - "secondPos" : 19123, - "firstEndPos" : 18476, - "secondEndPos" : 19154 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 18445, - "secondPos" : 19123, - "firstEndPos" : 18475, - "secondEndPos" : 19153 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "mode", - "secondLabel" : "mode", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 18445, - "secondPos" : 19123, - "firstEndPos" : 18449, - "secondEndPos" : 19127 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 18450, - "secondPos" : 19128, - "firstEndPos" : 18451, - "secondEndPos" : 19129 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "DeliveryMode.PERSISTENT", - "secondLabel" : "DeliveryMode.PERSISTENT", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 18452, - "secondPos" : 19130, - "firstEndPos" : 18475, - "secondEndPos" : 19153 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 18496, - "secondPos" : 19174, - "firstEndPos" : 19180, - "secondEndPos" : 19858 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 18500, - "secondPos" : 19178, - "firstEndPos" : 18552, - "secondEndPos" : 19230 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 18500, - "secondPos" : 19178, - "firstEndPos" : 18532, - "secondEndPos" : 19210 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMS_DELIVERY_MODE_NON_PERSISTENT", - "secondLabel" : "JMS_DELIVERY_MODE_NON_PERSISTENT", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 18500, - "secondPos" : 19178, - "firstEndPos" : 18532, - "secondEndPos" : 19210 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "equalsIgnoreCase", - "secondLabel" : "equalsIgnoreCase", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 18533, - "secondPos" : 19211, - "firstEndPos" : 18549, - "secondEndPos" : 19227 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 18550, - "secondPos" : 19228, - "firstEndPos" : 18551, - "secondEndPos" : 19229 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "s", - "secondLabel" : "s", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 18550, - "secondPos" : 19228, - "firstEndPos" : 18551, - "secondEndPos" : 19229 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 18554, - "secondPos" : 19232, - "firstEndPos" : 18621, - "secondEndPos" : 19299 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 18572, - "secondPos" : 19250, - "firstEndPos" : 18607, - "secondEndPos" : 19285 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 18572, - "secondPos" : 19250, - "firstEndPos" : 18606, - "secondEndPos" : 19284 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "mode", - "secondLabel" : "mode", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 18572, - "secondPos" : 19250, - "firstEndPos" : 18576, - "secondEndPos" : 19254 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 18577, - "secondPos" : 19255, - "firstEndPos" : 18578, - "secondEndPos" : 19256 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "DeliveryMode.NON_PERSISTENT", - "secondLabel" : "DeliveryMode.NON_PERSISTENT", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 18579, - "secondPos" : 19257, - "firstEndPos" : 18606, - "secondEndPos" : 19284 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 18627, - "secondPos" : 19305, - "firstEndPos" : 19180, - "secondEndPos" : 19858 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// it may be a number in the String so try that", - "secondLabel" : "// it may be a number in the String so try that", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 18645, - "secondPos" : 19323, - "firstEndPos" : 18692, - "secondEndPos" : 19370 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 18709, - "secondPos" : 19387, - "firstEndPos" : 18730, - "secondEndPos" : 19408 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Integer", - "secondLabel" : "Integer", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 18709, - "secondPos" : 19387, - "firstEndPos" : 18716, - "secondEndPos" : 19394 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 18709, - "secondPos" : 19387, - "firstEndPos" : 18716, - "secondEndPos" : 19394 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 18717, - "secondPos" : 19395, - "firstEndPos" : 18729, - "secondEndPos" : 19407 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 18717, - "secondPos" : 19395, - "firstEndPos" : 18722, - "secondEndPos" : 19400 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 18725, - "secondPos" : 19403, - "firstEndPos" : 18729, - "secondEndPos" : 19407 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 18747, - "secondPos" : 19425, - "firstEndPos" : 18943, - "secondEndPos" : 19621 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 18751, - "secondPos" : 19429, - "firstEndPos" : 18818, - "secondEndPos" : 19496 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 18773, - "secondPos" : 19451, - "firstEndPos" : 18800, - "secondEndPos" : 19478 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 18773, - "secondPos" : 19451, - "firstEndPos" : 18799, - "secondEndPos" : 19477 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 18773, - "secondPos" : 19451, - "firstEndPos" : 18778, - "secondEndPos" : 19456 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 18779, - "secondPos" : 19457, - "firstEndPos" : 18780, - "secondEndPos" : 19458 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 18781, - "secondPos" : 19459, - "firstEndPos" : 18799, - "secondEndPos" : 19477 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 18781, - "secondPos" : 19459, - "firstEndPos" : 18788, - "secondEndPos" : 19466 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Integer", - "secondLabel" : "Integer", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 18781, - "secondPos" : 19459, - "firstEndPos" : 18788, - "secondEndPos" : 19466 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "valueOf", - "secondLabel" : "valueOf", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 18789, - "secondPos" : 19467, - "firstEndPos" : 18796, - "secondEndPos" : 19474 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 18797, - "secondPos" : 19475, - "firstEndPos" : 18798, - "secondEndPos" : 19476 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "s", - "secondLabel" : "s", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 18797, - "secondPos" : 19475, - "firstEndPos" : 18798, - "secondEndPos" : 19476 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 18819, - "secondPos" : 19497, - "firstEndPos" : 18943, - "secondEndPos" : 19621 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 18826, - "secondPos" : 19504, - "firstEndPos" : 18849, - "secondEndPos" : 19527 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "NumberFormatException", - "secondLabel" : "NumberFormatException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 18826, - "secondPos" : 19504, - "firstEndPos" : 18847, - "secondEndPos" : 19525 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 18826, - "secondPos" : 19504, - "firstEndPos" : 18847, - "secondEndPos" : 19525 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 18848, - "secondPos" : 19526, - "firstEndPos" : 18849, - "secondEndPos" : 19527 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 18851, - "secondPos" : 19529, - "firstEndPos" : 18943, - "secondEndPos" : 19621 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// Do nothing. The error handler below is sufficient", - "secondLabel" : "// Do nothing. The error handler below is sufficient", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 18873, - "secondPos" : 19551, - "firstEndPos" : 18925, - "secondEndPos" : 19603 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 18960, - "secondPos" : 19638, - "firstEndPos" : 19166, - "secondEndPos" : 19844 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 18964, - "secondPos" : 19642, - "firstEndPos" : 18977, - "secondEndPos" : 19655 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 18964, - "secondPos" : 19642, - "firstEndPos" : 18969, - "secondEndPos" : 19647 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!=", - "secondLabel" : "!=", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 18970, - "secondPos" : 19648, - "firstEndPos" : 18972, - "secondEndPos" : 19650 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 18973, - "secondPos" : 19651, - "firstEndPos" : 18977, - "secondEndPos" : 19655 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 18979, - "secondPos" : 19657, - "firstEndPos" : 19032, - "secondEndPos" : 19710 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 19001, - "secondPos" : 19679, - "firstEndPos" : 19014, - "secondEndPos" : 19692 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 19001, - "secondPos" : 19679, - "firstEndPos" : 19013, - "secondEndPos" : 19691 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "mode", - "secondLabel" : "mode", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 19001, - "secondPos" : 19679, - "firstEndPos" : 19005, - "secondEndPos" : 19683 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 19006, - "secondPos" : 19684, - "firstEndPos" : 19007, - "secondEndPos" : 19685 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 19008, - "secondPos" : 19686, - "firstEndPos" : 19013, - "secondEndPos" : 19691 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 19038, - "secondPos" : 19716, - "firstEndPos" : 19166, - "secondEndPos" : 19844 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 19060, - "secondPos" : 19738, - "firstEndPos" : 19148, - "secondEndPos" : 19826 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 19066, - "secondPos" : 19744, - "firstEndPos" : 19147, - "secondEndPos" : 19825 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "IllegalArgumentException", - "secondLabel" : "IllegalArgumentException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 19070, - "secondPos" : 19748, - "firstEndPos" : 19094, - "secondEndPos" : 19772 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 19070, - "secondPos" : 19748, - "firstEndPos" : 19094, - "secondEndPos" : 19772 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 19095, - "secondPos" : 19773, - "firstEndPos" : 19146, - "secondEndPos" : 19824 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Unknown delivery mode with value: \"", - "secondLabel" : "\"Unknown delivery mode with value: \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 19095, - "secondPos" : 19773, - "firstEndPos" : 19131, - "secondEndPos" : 19809 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "+", - "secondLabel" : "+", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 19132, - "secondPos" : 19810, - "firstEndPos" : 19133, - "secondEndPos" : 19811 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "deliveryMode", - "secondLabel" : "deliveryMode", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 19134, - "secondPos" : 19812, - "firstEndPos" : 19146, - "secondEndPos" : 19824 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 19196, - "secondPos" : 19874, - "firstEndPos" : 19530, - "secondEndPos" : 20208 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 19200, - "secondPos" : 19878, - "firstEndPos" : 19231, - "secondEndPos" : 19909 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "deliveryMode", - "secondLabel" : "deliveryMode", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 19200, - "secondPos" : 19878, - "firstEndPos" : 19212, - "secondEndPos" : 19890 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Integer", - "secondLabel" : "Integer", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 19224, - "secondPos" : 19902, - "firstEndPos" : 19231, - "secondEndPos" : 19909 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 19224, - "secondPos" : 19902, - "firstEndPos" : 19231, - "secondEndPos" : 19909 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 19233, - "secondPos" : 19911, - "firstEndPos" : 19342, - "secondEndPos" : 20020 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// fallback and try to convert to a number", - "secondLabel" : "// fallback and try to convert to a number", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 19247, - "secondPos" : 19925, - "firstEndPos" : 19289, - "secondEndPos" : 19967 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 19302, - "secondPos" : 19980, - "firstEndPos" : 19332, - "secondEndPos" : 20010 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 19302, - "secondPos" : 19980, - "firstEndPos" : 19331, - "secondEndPos" : 20009 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "mode", - "secondLabel" : "mode", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 19302, - "secondPos" : 19980, - "firstEndPos" : 19306, - "secondEndPos" : 19984 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 19307, - "secondPos" : 19985, - "firstEndPos" : 19308, - "secondEndPos" : 19986 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 19309, - "secondPos" : 19987, - "firstEndPos" : 19331, - "secondEndPos" : 20009 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Integer", - "secondLabel" : "Integer", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 19310, - "secondPos" : 19988, - "firstEndPos" : 19317, - "secondEndPos" : 19995 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 19310, - "secondPos" : 19988, - "firstEndPos" : 19317, - "secondEndPos" : 19995 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "deliveryMode", - "secondLabel" : "deliveryMode", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 19319, - "secondPos" : 19997, - "firstEndPos" : 19331, - "secondEndPos" : 20009 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 19348, - "secondPos" : 20026, - "firstEndPos" : 19530, - "secondEndPos" : 20208 -}, { - "firstType" : "ThrowStatement", - "secondType" : "ThrowStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 19362, - "secondPos" : 20040, - "firstEndPos" : 19520, - "secondEndPos" : 20198 -}, { - "firstType" : "ClassInstanceCreation", - "secondType" : "ClassInstanceCreation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ThrowStatement", - "secondParentType" : "ThrowStatement", - "firstPos" : 19368, - "secondPos" : 20046, - "firstEndPos" : 19519, - "secondEndPos" : 20197 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "IllegalArgumentException", - "secondLabel" : "IllegalArgumentException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 19372, - "secondPos" : 20050, - "firstEndPos" : 19396, - "secondEndPos" : 20074 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 19372, - "secondPos" : 20050, - "firstEndPos" : 19396, - "secondEndPos" : 20074 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ClassInstanceCreation", - "secondParentType" : "ClassInstanceCreation", - "firstPos" : 19397, - "secondPos" : 20075, - "firstEndPos" : 19518, - "secondEndPos" : 20196 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Unable to convert the given delivery mode of type \"", - "secondLabel" : "\"Unable to convert the given delivery mode of type \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 19397, - "secondPos" : 20075, - "firstEndPos" : 19449, - "secondEndPos" : 20127 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "+", - "secondLabel" : "+", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 19450, - "secondPos" : 20128, - "firstEndPos" : 19451, - "secondEndPos" : 20129 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 19452, - "secondPos" : 20130, - "firstEndPos" : 19485, - "secondEndPos" : 20163 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19452, - "secondPos" : 20130, - "firstEndPos" : 19475, - "secondEndPos" : 20153 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 19452, - "secondPos" : 20130, - "firstEndPos" : 19475, - "secondEndPos" : 20153 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19452, - "secondPos" : 20130, - "firstEndPos" : 19464, - "secondEndPos" : 20142 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "deliveryMode", - "secondLabel" : "deliveryMode", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 19452, - "secondPos" : 20130, - "firstEndPos" : 19464, - "secondEndPos" : 20142 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getClass", - "secondLabel" : "getClass", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19465, - "secondPos" : 20143, - "firstEndPos" : 19473, - "secondEndPos" : 20151 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getName", - "secondLabel" : "getName", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19476, - "secondPos" : 20154, - "firstEndPos" : 19483, - "secondEndPos" : 20161 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\" with value: \"", - "secondLabel" : "\" with value: \"", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 19488, - "secondPos" : 20166, - "firstEndPos" : 19503, - "secondEndPos" : 20181 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "deliveryMode", - "secondLabel" : "deliveryMode", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 19506, - "secondPos" : 20184, - "firstEndPos" : 19518, - "secondEndPos" : 20196 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 19540, - "secondPos" : 20218, - "firstEndPos" : 19573, - "secondEndPos" : 20251 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 19540, - "secondPos" : 20218, - "firstEndPos" : 19572, - "secondEndPos" : 20250 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19540, - "secondPos" : 20218, - "firstEndPos" : 19547, - "secondEndPos" : 20225 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 19540, - "secondPos" : 20218, - "firstEndPos" : 19547, - "secondEndPos" : 20225 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJMSDeliveryMode", - "secondLabel" : "setJMSDeliveryMode", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19548, - "secondPos" : 20226, - "firstEndPos" : 19566, - "secondEndPos" : 20244 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19567, - "secondPos" : 20245, - "firstEndPos" : 19571, - "secondEndPos" : 20249 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "mode", - "secondLabel" : "mode", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 19567, - "secondPos" : 20245, - "firstEndPos" : 19571, - "secondEndPos" : 20249 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 19585, - "secondPos" : 20263, - "firstEndPos" : 20027, - "secondEndPos" : 20705 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 19585, - "secondPos" : 20263, - "firstEndPos" : 19781, - "secondEndPos" : 20459 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 19596, - "secondPos" : 20274, - "firstEndPos" : 19687, - "secondEndPos" : 20365 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Sets the correlation id on the JMS message.", - "secondLabel" : "Sets the correlation id on the JMS message.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 19596, - "secondPos" : 20274, - "firstEndPos" : 19639, - "secondEndPos" : 20317 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "

", - "secondLabel" : "

", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 19647, - "secondPos" : 20325, - "firstEndPos" : 19651, - "secondEndPos" : 20329 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Will ignore exception thrown", - "secondLabel" : "Will ignore exception thrown", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 19659, - "secondPos" : 20337, - "firstEndPos" : 19687, - "secondEndPos" : 20365 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 19702, - "secondPos" : 20380, - "firstEndPos" : 19732, - "secondEndPos" : 20410 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 19702, - "secondPos" : 20380, - "firstEndPos" : 19708, - "secondEndPos" : 20386 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 19709, - "secondPos" : 20387, - "firstEndPos" : 19716, - "secondEndPos" : 20394 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the JMS message", - "secondLabel" : " the JMS message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 19716, - "secondPos" : 20394, - "firstEndPos" : 19732, - "secondEndPos" : 20410 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 19740, - "secondPos" : 20418, - "firstEndPos" : 19773, - "secondEndPos" : 20451 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 19740, - "secondPos" : 20418, - "firstEndPos" : 19746, - "secondEndPos" : 20424 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "type", - "secondLabel" : "type", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 19747, - "secondPos" : 20425, - "firstEndPos" : 19751, - "secondEndPos" : 20429 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the correlation id", - "secondLabel" : " the correlation id", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 19751, - "secondPos" : 20429, - "firstEndPos" : 19773, - "secondEndPos" : 20451 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 19786, - "secondPos" : 20464, - "firstEndPos" : 19792, - "secondEndPos" : 20470 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 19793, - "secondPos" : 20471, - "firstEndPos" : 19799, - "secondEndPos" : 20477 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 19800, - "secondPos" : 20478, - "firstEndPos" : 19804, - "secondEndPos" : 20482 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setMessageType", - "secondLabel" : "setMessageType", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 19805, - "secondPos" : 20483, - "firstEndPos" : 19819, - "secondEndPos" : 20497 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 19820, - "secondPos" : 20498, - "firstEndPos" : 19835, - "secondEndPos" : 20513 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 19820, - "secondPos" : 20498, - "firstEndPos" : 19827, - "secondEndPos" : 20505 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 19820, - "secondPos" : 20498, - "firstEndPos" : 19827, - "secondEndPos" : 20505 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 19828, - "secondPos" : 20506, - "firstEndPos" : 19835, - "secondEndPos" : 20513 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 19837, - "secondPos" : 20515, - "firstEndPos" : 19848, - "secondEndPos" : 20526 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 19837, - "secondPos" : 20515, - "firstEndPos" : 19843, - "secondEndPos" : 20521 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 19837, - "secondPos" : 20515, - "firstEndPos" : 19843, - "secondEndPos" : 20521 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "type", - "secondLabel" : "type", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 19844, - "secondPos" : 20522, - "firstEndPos" : 19848, - "secondEndPos" : 20526 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 19850, - "secondPos" : 20528, - "firstEndPos" : 20027, - "secondEndPos" : 20705 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 19860, - "secondPos" : 20538, - "firstEndPos" : 20021, - "secondEndPos" : 20699 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 19864, - "secondPos" : 20542, - "firstEndPos" : 19913, - "secondEndPos" : 20591 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 19878, - "secondPos" : 20556, - "firstEndPos" : 19903, - "secondEndPos" : 20581 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 19878, - "secondPos" : 20556, - "firstEndPos" : 19902, - "secondEndPos" : 20580 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19878, - "secondPos" : 20556, - "firstEndPos" : 19885, - "secondEndPos" : 20563 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 19878, - "secondPos" : 20556, - "firstEndPos" : 19885, - "secondEndPos" : 20563 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJMSType", - "secondLabel" : "setJMSType", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19886, - "secondPos" : 20564, - "firstEndPos" : 19896, - "secondEndPos" : 20574 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19897, - "secondPos" : 20575, - "firstEndPos" : 19901, - "secondEndPos" : 20579 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "type", - "secondLabel" : "type", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 19897, - "secondPos" : 20575, - "firstEndPos" : 19901, - "secondEndPos" : 20579 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 19914, - "secondPos" : 20592, - "firstEndPos" : 20021, - "secondEndPos" : 20699 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 19921, - "secondPos" : 20599, - "firstEndPos" : 19935, - "secondEndPos" : 20613 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 19921, - "secondPos" : 20599, - "firstEndPos" : 19933, - "secondEndPos" : 20611 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 19921, - "secondPos" : 20599, - "firstEndPos" : 19933, - "secondEndPos" : 20611 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 19934, - "secondPos" : 20612, - "firstEndPos" : 19935, - "secondEndPos" : 20613 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 19937, - "secondPos" : 20615, - "firstEndPos" : 20021, - "secondEndPos" : 20699 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 19951, - "secondPos" : 20629, - "firstEndPos" : 20011, - "secondEndPos" : 20689 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 19951, - "secondPos" : 20629, - "firstEndPos" : 20010, - "secondEndPos" : 20688 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19951, - "secondPos" : 20629, - "firstEndPos" : 19957, - "secondEndPos" : 20635 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "LOGGER", - "secondLabel" : "LOGGER", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 19951, - "secondPos" : 20629, - "firstEndPos" : 19957, - "secondEndPos" : 20635 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "debug", - "secondLabel" : "debug", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19958, - "secondPos" : 20636, - "firstEndPos" : 19963, - "secondEndPos" : 20641 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 19964, - "secondPos" : 20642, - "firstEndPos" : 20009, - "secondEndPos" : 20687 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Error setting the message type: {}\"", - "secondLabel" : "\"Error setting the message type: {}\"", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 19964, - "secondPos" : 20642, - "firstEndPos" : 20000, - "secondEndPos" : 20678 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "type", - "secondLabel" : "type", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 20002, - "secondPos" : 20680, - "firstEndPos" : 20006, - "secondEndPos" : 20684 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 20008, - "secondPos" : 20686, - "firstEndPos" : 20009, - "secondEndPos" : 20687 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 20033, - "secondPos" : 20711, - "firstEndPos" : 20526, - "secondEndPos" : 21204 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20033, - "secondPos" : 20711, - "firstEndPos" : 20241, - "secondEndPos" : 20919 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 20044, - "secondPos" : 20722, - "firstEndPos" : 20135, - "secondEndPos" : 20813 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Sets the correlation id on the JMS message.", - "secondLabel" : "Sets the correlation id on the JMS message.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20044, - "secondPos" : 20722, - "firstEndPos" : 20087, - "secondEndPos" : 20765 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "

", - "secondLabel" : "

", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20095, - "secondPos" : 20773, - "firstEndPos" : 20099, - "secondEndPos" : 20777 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Will ignore exception thrown", - "secondLabel" : "Will ignore exception thrown", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20107, - "secondPos" : 20785, - "firstEndPos" : 20135, - "secondEndPos" : 20813 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 20150, - "secondPos" : 20828, - "firstEndPos" : 20186, - "secondEndPos" : 20864 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20150, - "secondPos" : 20828, - "firstEndPos" : 20156, - "secondEndPos" : 20834 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20157, - "secondPos" : 20835, - "firstEndPos" : 20164, - "secondEndPos" : 20842 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the JMS message", - "secondLabel" : " the JMS message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20164, - "secondPos" : 20842, - "firstEndPos" : 20186, - "secondEndPos" : 20864 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 20194, - "secondPos" : 20872, - "firstEndPos" : 20233, - "secondEndPos" : 20911 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20194, - "secondPos" : 20872, - "firstEndPos" : 20200, - "secondEndPos" : 20878 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "correlationId", - "secondLabel" : "correlationId", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20201, - "secondPos" : 20879, - "firstEndPos" : 20214, - "secondEndPos" : 20892 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the correlation id", - "secondLabel" : " the correlation id", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20214, - "secondPos" : 20892, - "firstEndPos" : 20233, - "secondEndPos" : 20911 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20246, - "secondPos" : 20924, - "firstEndPos" : 20252, - "secondEndPos" : 20930 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20253, - "secondPos" : 20931, - "firstEndPos" : 20259, - "secondEndPos" : 20937 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20260, - "secondPos" : 20938, - "firstEndPos" : 20264, - "secondEndPos" : 20942 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setCorrelationId", - "secondLabel" : "setCorrelationId", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20265, - "secondPos" : 20943, - "firstEndPos" : 20281, - "secondEndPos" : 20959 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20282, - "secondPos" : 20960, - "firstEndPos" : 20297, - "secondEndPos" : 20975 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 20282, - "secondPos" : 20960, - "firstEndPos" : 20289, - "secondEndPos" : 20967 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 20282, - "secondPos" : 20960, - "firstEndPos" : 20289, - "secondEndPos" : 20967 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 20290, - "secondPos" : 20968, - "firstEndPos" : 20297, - "secondEndPos" : 20975 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20299, - "secondPos" : 20977, - "firstEndPos" : 20319, - "secondEndPos" : 20997 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 20299, - "secondPos" : 20977, - "firstEndPos" : 20305, - "secondEndPos" : 20983 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 20299, - "secondPos" : 20977, - "firstEndPos" : 20305, - "secondEndPos" : 20983 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "correlationId", - "secondLabel" : "correlationId", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 20306, - "secondPos" : 20984, - "firstEndPos" : 20319, - "secondEndPos" : 20997 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20321, - "secondPos" : 20999, - "firstEndPos" : 20526, - "secondEndPos" : 21204 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 20331, - "secondPos" : 21009, - "firstEndPos" : 20520, - "secondEndPos" : 21198 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 20335, - "secondPos" : 21013, - "firstEndPos" : 20402, - "secondEndPos" : 21080 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 20349, - "secondPos" : 21027, - "firstEndPos" : 20392, - "secondEndPos" : 21070 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 20349, - "secondPos" : 21027, - "firstEndPos" : 20391, - "secondEndPos" : 21069 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20349, - "secondPos" : 21027, - "firstEndPos" : 20356, - "secondEndPos" : 21034 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 20349, - "secondPos" : 21027, - "firstEndPos" : 20356, - "secondEndPos" : 21034 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJMSCorrelationID", - "secondLabel" : "setJMSCorrelationID", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20357, - "secondPos" : 21035, - "firstEndPos" : 20376, - "secondEndPos" : 21054 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20377, - "secondPos" : 21055, - "firstEndPos" : 20390, - "secondEndPos" : 21068 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "correlationId", - "secondLabel" : "correlationId", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 20377, - "secondPos" : 21055, - "firstEndPos" : 20390, - "secondEndPos" : 21068 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 20403, - "secondPos" : 21081, - "firstEndPos" : 20520, - "secondEndPos" : 21198 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 20410, - "secondPos" : 21088, - "firstEndPos" : 20424, - "secondEndPos" : 21102 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 20410, - "secondPos" : 21088, - "firstEndPos" : 20422, - "secondEndPos" : 21100 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 20410, - "secondPos" : 21088, - "firstEndPos" : 20422, - "secondEndPos" : 21100 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 20423, - "secondPos" : 21101, - "firstEndPos" : 20424, - "secondEndPos" : 21102 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 20426, - "secondPos" : 21104, - "firstEndPos" : 20520, - "secondEndPos" : 21198 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 20440, - "secondPos" : 21118, - "firstEndPos" : 20510, - "secondEndPos" : 21188 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 20440, - "secondPos" : 21118, - "firstEndPos" : 20509, - "secondEndPos" : 21187 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20440, - "secondPos" : 21118, - "firstEndPos" : 20446, - "secondEndPos" : 21124 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "LOGGER", - "secondLabel" : "LOGGER", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 20440, - "secondPos" : 21118, - "firstEndPos" : 20446, - "secondEndPos" : 21124 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "debug", - "secondLabel" : "debug", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20447, - "secondPos" : 21125, - "firstEndPos" : 20452, - "secondEndPos" : 21130 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20453, - "secondPos" : 21131, - "firstEndPos" : 20508, - "secondEndPos" : 21186 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Error setting the correlationId: {}\"", - "secondLabel" : "\"Error setting the correlationId: {}\"", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 20453, - "secondPos" : 21131, - "firstEndPos" : 20490, - "secondEndPos" : 21168 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "correlationId", - "secondLabel" : "correlationId", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 20492, - "secondPos" : 21170, - "firstEndPos" : 20505, - "secondEndPos" : 21183 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 20507, - "secondPos" : 21185, - "firstEndPos" : 20508, - "secondEndPos" : 21186 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 20532, - "secondPos" : 21210, - "firstEndPos" : 20942, - "secondEndPos" : 21620 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20532, - "secondPos" : 21210, - "firstEndPos" : 20674, - "secondEndPos" : 21352 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 20543, - "secondPos" : 21221, - "firstEndPos" : 20578, - "secondEndPos" : 21256 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Sets the JMSReplyTo on the message.", - "secondLabel" : "Sets the JMSReplyTo on the message.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20543, - "secondPos" : 21221, - "firstEndPos" : 20578, - "secondEndPos" : 21256 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 20593, - "secondPos" : 21271, - "firstEndPos" : 20619, - "secondEndPos" : 21297 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20593, - "secondPos" : 21271, - "firstEndPos" : 20599, - "secondEndPos" : 21277 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20600, - "secondPos" : 21278, - "firstEndPos" : 20607, - "secondEndPos" : 21285 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the message", - "secondLabel" : " the message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20607, - "secondPos" : 21285, - "firstEndPos" : 20619, - "secondEndPos" : 21297 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 20627, - "secondPos" : 21305, - "firstEndPos" : 20666, - "secondEndPos" : 21344 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20627, - "secondPos" : 21305, - "firstEndPos" : 20633, - "secondEndPos" : 21311 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "replyTo", - "secondLabel" : "replyTo", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20634, - "secondPos" : 21312, - "firstEndPos" : 20641, - "secondEndPos" : 21319 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the reply to destination", - "secondLabel" : " the reply to destination", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20641, - "secondPos" : 21319, - "firstEndPos" : 20666, - "secondEndPos" : 21344 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20679, - "secondPos" : 21357, - "firstEndPos" : 20685, - "secondEndPos" : 21363 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20686, - "secondPos" : 21364, - "firstEndPos" : 20692, - "secondEndPos" : 21370 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20693, - "secondPos" : 21371, - "firstEndPos" : 20697, - "secondEndPos" : 21375 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJMSReplyTo", - "secondLabel" : "setJMSReplyTo", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20698, - "secondPos" : 21376, - "firstEndPos" : 20711, - "secondEndPos" : 21389 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20712, - "secondPos" : 21390, - "firstEndPos" : 20727, - "secondEndPos" : 21405 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 20712, - "secondPos" : 21390, - "firstEndPos" : 20719, - "secondEndPos" : 21397 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 20712, - "secondPos" : 21390, - "firstEndPos" : 20719, - "secondEndPos" : 21397 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 20720, - "secondPos" : 21398, - "firstEndPos" : 20727, - "secondEndPos" : 21405 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20729, - "secondPos" : 21407, - "firstEndPos" : 20748, - "secondEndPos" : 21426 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Destination", - "secondLabel" : "Destination", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 20729, - "secondPos" : 21407, - "firstEndPos" : 20740, - "secondEndPos" : 21418 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 20729, - "secondPos" : 21407, - "firstEndPos" : 20740, - "secondEndPos" : 21418 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "replyTo", - "secondLabel" : "replyTo", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 20741, - "secondPos" : 21419, - "firstEndPos" : 20748, - "secondEndPos" : 21426 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20750, - "secondPos" : 21428, - "firstEndPos" : 20942, - "secondEndPos" : 21620 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 20760, - "secondPos" : 21438, - "firstEndPos" : 20936, - "secondEndPos" : 21614 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 20764, - "secondPos" : 21442, - "firstEndPos" : 20819, - "secondEndPos" : 21497 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 20778, - "secondPos" : 21456, - "firstEndPos" : 20809, - "secondEndPos" : 21487 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 20778, - "secondPos" : 21456, - "firstEndPos" : 20808, - "secondEndPos" : 21486 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20778, - "secondPos" : 21456, - "firstEndPos" : 20785, - "secondEndPos" : 21463 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 20778, - "secondPos" : 21456, - "firstEndPos" : 20785, - "secondEndPos" : 21463 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setJMSReplyTo", - "secondLabel" : "setJMSReplyTo", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20786, - "secondPos" : 21464, - "firstEndPos" : 20799, - "secondEndPos" : 21477 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20800, - "secondPos" : 21478, - "firstEndPos" : 20807, - "secondEndPos" : 21485 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "replyTo", - "secondLabel" : "replyTo", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 20800, - "secondPos" : 21478, - "firstEndPos" : 20807, - "secondEndPos" : 21485 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 20820, - "secondPos" : 21498, - "firstEndPos" : 20936, - "secondEndPos" : 21614 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 20827, - "secondPos" : 21505, - "firstEndPos" : 20838, - "secondEndPos" : 21516 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exception", - "secondLabel" : "Exception", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 20827, - "secondPos" : 21505, - "firstEndPos" : 20836, - "secondEndPos" : 21514 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 20827, - "secondPos" : 21505, - "firstEndPos" : 20836, - "secondEndPos" : 21514 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 20837, - "secondPos" : 21515, - "firstEndPos" : 20838, - "secondEndPos" : 21516 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 20840, - "secondPos" : 21518, - "firstEndPos" : 20936, - "secondEndPos" : 21614 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 20854, - "secondPos" : 21532, - "firstEndPos" : 20926, - "secondEndPos" : 21604 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 20854, - "secondPos" : 21532, - "firstEndPos" : 20925, - "secondEndPos" : 21603 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20854, - "secondPos" : 21532, - "firstEndPos" : 20860, - "secondEndPos" : 21538 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "LOGGER", - "secondLabel" : "LOGGER", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 20854, - "secondPos" : 21532, - "firstEndPos" : 20860, - "secondEndPos" : 21538 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "debug", - "secondLabel" : "debug", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20861, - "secondPos" : 21539, - "firstEndPos" : 20866, - "secondEndPos" : 21544 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20867, - "secondPos" : 21545, - "firstEndPos" : 20924, - "secondEndPos" : 21602 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"Error setting the correlationId: {}\"", - "secondLabel" : "\"Error setting the correlationId: {}\"", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 20867, - "secondPos" : 21545, - "firstEndPos" : 20904, - "secondEndPos" : 21582 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 20906, - "secondPos" : 21584, - "firstEndPos" : 20924, - "secondEndPos" : 21602 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20906, - "secondPos" : 21584, - "firstEndPos" : 20913, - "secondEndPos" : 21591 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "replyTo", - "secondLabel" : "replyTo", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 20906, - "secondPos" : 21584, - "firstEndPos" : 20913, - "secondEndPos" : 21591 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "toString", - "secondLabel" : "toString", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 20914, - "secondPos" : 21592, - "firstEndPos" : 20922, - "secondEndPos" : 21600 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 20948, - "secondPos" : 21626, - "firstEndPos" : 21358, - "secondEndPos" : 22036 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 20948, - "secondPos" : 21626, - "firstEndPos" : 21095, - "secondEndPos" : 21773 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 20959, - "secondPos" : 21637, - "firstEndPos" : 20996, - "secondEndPos" : 21674 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Gets the JMSReplyTo from the message.", - "secondLabel" : "Gets the JMSReplyTo from the message.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 20959, - "secondPos" : 21637, - "firstEndPos" : 20996, - "secondEndPos" : 21674 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 21011, - "secondPos" : 21689, - "firstEndPos" : 21037, - "secondEndPos" : 21715 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21011, - "secondPos" : 21689, - "firstEndPos" : 21017, - "secondEndPos" : 21695 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21018, - "secondPos" : 21696, - "firstEndPos" : 21025, - "secondEndPos" : 21703 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the message", - "secondLabel" : " the message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21025, - "secondPos" : 21703, - "firstEndPos" : 21037, - "secondEndPos" : 21715 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 21045, - "secondPos" : 21723, - "firstEndPos" : 21087, - "secondEndPos" : 21765 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@return", - "secondLabel" : "@return", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21045, - "secondPos" : 21723, - "firstEndPos" : 21052, - "secondEndPos" : 21730 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the reply to, can be null", - "secondLabel" : " the reply to, can be null", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21052, - "secondPos" : 21730, - "firstEndPos" : 21087, - "secondEndPos" : 21765 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21100, - "secondPos" : 21778, - "firstEndPos" : 21106, - "secondEndPos" : 21784 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21107, - "secondPos" : 21785, - "firstEndPos" : 21113, - "secondEndPos" : 21791 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Destination", - "secondLabel" : "Destination", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 21114, - "secondPos" : 21792, - "firstEndPos" : 21125, - "secondEndPos" : 21803 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21114, - "secondPos" : 21792, - "firstEndPos" : 21125, - "secondEndPos" : 21803 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSReplyTo", - "secondLabel" : "getJMSReplyTo", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21126, - "secondPos" : 21804, - "firstEndPos" : 21139, - "secondEndPos" : 21817 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21140, - "secondPos" : 21818, - "firstEndPos" : 21155, - "secondEndPos" : 21833 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 21140, - "secondPos" : 21818, - "firstEndPos" : 21147, - "secondEndPos" : 21825 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 21140, - "secondPos" : 21818, - "firstEndPos" : 21147, - "secondEndPos" : 21825 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 21148, - "secondPos" : 21826, - "firstEndPos" : 21155, - "secondEndPos" : 21833 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21157, - "secondPos" : 21835, - "firstEndPos" : 21358, - "secondEndPos" : 22036 -}, { - "firstType" : "TryStatement", - "secondType" : "TryStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 21167, - "secondPos" : 21845, - "firstEndPos" : 21331, - "secondEndPos" : 22009 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 21171, - "secondPos" : 21849, - "firstEndPos" : 21226, - "secondEndPos" : 21904 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 21185, - "secondPos" : 21863, - "firstEndPos" : 21216, - "secondEndPos" : 21894 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 21192, - "secondPos" : 21870, - "firstEndPos" : 21215, - "secondEndPos" : 21893 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 21192, - "secondPos" : 21870, - "firstEndPos" : 21199, - "secondEndPos" : 21877 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 21192, - "secondPos" : 21870, - "firstEndPos" : 21199, - "secondEndPos" : 21877 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "getJMSReplyTo", - "secondLabel" : "getJMSReplyTo", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 21200, - "secondPos" : 21878, - "firstEndPos" : 21213, - "secondEndPos" : 21891 -}, { - "firstType" : "CatchClause", - "secondType" : "CatchClause", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TryStatement", - "secondParentType" : "TryStatement", - "firstPos" : 21227, - "secondPos" : 21905, - "firstEndPos" : 21331, - "secondEndPos" : 22009 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 21234, - "secondPos" : 21912, - "firstEndPos" : 21245, - "secondEndPos" : 21923 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Exception", - "secondLabel" : "Exception", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 21234, - "secondPos" : 21912, - "firstEndPos" : 21243, - "secondEndPos" : 21921 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 21234, - "secondPos" : 21912, - "firstEndPos" : 21243, - "secondEndPos" : 21921 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "e", - "secondLabel" : "e", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 21244, - "secondPos" : 21922, - "firstEndPos" : 21245, - "secondEndPos" : 21923 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CatchClause", - "secondParentType" : "CatchClause", - "firstPos" : 21247, - "secondPos" : 21925, - "firstEndPos" : 21331, - "secondEndPos" : 22009 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// ignore due OracleAQ does not support accessing JMSReplyTo", - "secondLabel" : "// ignore due OracleAQ does not support accessing JMSReplyTo", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 21261, - "secondPos" : 21939, - "firstEndPos" : 21321, - "secondEndPos" : 21999 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 21340, - "secondPos" : 22018, - "firstEndPos" : 21352, - "secondEndPos" : 22030 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 21347, - "secondPos" : 22025, - "firstEndPos" : 21351, - "secondEndPos" : 22029 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 21364, - "secondPos" : 22042, - "firstEndPos" : 22777, - "secondEndPos" : 23455 -}, { - "firstType" : "Javadoc", - "secondType" : "Javadoc", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21364, - "secondPos" : 22042, - "firstEndPos" : 21604, - "secondEndPos" : 22282 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 21375, - "secondPos" : 22053, - "firstEndPos" : 21418, - "secondEndPos" : 22096 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : "Sets the property on the given JMS message.", - "secondLabel" : "Sets the property on the given JMS message.", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21375, - "secondPos" : 22053, - "firstEndPos" : 21418, - "secondEndPos" : 22096 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 21433, - "secondPos" : 22111, - "firstEndPos" : 21466, - "secondEndPos" : 22144 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21433, - "secondPos" : 22111, - "firstEndPos" : 21439, - "secondEndPos" : 22117 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21440, - "secondPos" : 22118, - "firstEndPos" : 21450, - "secondEndPos" : 22128 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the JMS message", - "secondLabel" : " the JMS message", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21450, - "secondPos" : 22128, - "firstEndPos" : 21466, - "secondEndPos" : 22144 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 21474, - "secondPos" : 22152, - "firstEndPos" : 21519, - "secondEndPos" : 22197 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21474, - "secondPos" : 22152, - "firstEndPos" : 21480, - "secondEndPos" : 22158 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "name", - "secondLabel" : "name", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21481, - "secondPos" : 22159, - "firstEndPos" : 21485, - "secondEndPos" : 22163 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " name of the property to set", - "secondLabel" : " name of the property to set", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21485, - "secondPos" : 22163, - "firstEndPos" : 21519, - "secondEndPos" : 22197 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 21527, - "secondPos" : 22205, - "firstEndPos" : 21554, - "secondEndPos" : 22232 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@param", - "secondLabel" : "@param", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21527, - "secondPos" : 22205, - "firstEndPos" : 21533, - "secondEndPos" : 22211 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21534, - "secondPos" : 22212, - "firstEndPos" : 21539, - "secondEndPos" : 22217 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " the value", - "secondLabel" : " the value", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21539, - "secondPos" : 22217, - "firstEndPos" : 21554, - "secondEndPos" : 22232 -}, { - "firstType" : "TagElement", - "secondType" : "TagElement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Javadoc", - "secondParentType" : "Javadoc", - "firstPos" : 21562, - "secondPos" : 22240, - "firstEndPos" : 21596, - "secondEndPos" : 22274 -}, { - "firstType" : "TAG_NAME", - "secondType" : "TAG_NAME", - "firstLabel" : "@throws", - "secondLabel" : "@throws", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21562, - "secondPos" : 22240, - "firstEndPos" : 21569, - "secondEndPos" : 22247 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21570, - "secondPos" : 22248, - "firstEndPos" : 21582, - "secondEndPos" : 22260 -}, { - "firstType" : "TextElement", - "secondType" : "TextElement", - "firstLabel" : " can be thrown", - "secondLabel" : " can be thrown", - "firstParentType" : "TagElement", - "secondParentType" : "TagElement", - "firstPos" : 21582, - "secondPos" : 22260, - "firstEndPos" : 21596, - "secondEndPos" : 22274 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21609, - "secondPos" : 22287, - "firstEndPos" : 21615, - "secondEndPos" : 22293 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21616, - "secondPos" : 22294, - "firstEndPos" : 21622, - "secondEndPos" : 22300 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "void", - "secondLabel" : "void", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21623, - "secondPos" : 22301, - "firstEndPos" : 21627, - "secondEndPos" : 22305 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setProperty", - "secondLabel" : "setProperty", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21628, - "secondPos" : 22306, - "firstEndPos" : 21639, - "secondEndPos" : 22317 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21640, - "secondPos" : 22318, - "firstEndPos" : 21658, - "secondEndPos" : 22336 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 21640, - "secondPos" : 22318, - "firstEndPos" : 21647, - "secondEndPos" : 22325 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 21640, - "secondPos" : 22318, - "firstEndPos" : 21647, - "secondEndPos" : 22325 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 21648, - "secondPos" : 22326, - "firstEndPos" : 21658, - "secondEndPos" : 22336 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21660, - "secondPos" : 22338, - "firstEndPos" : 21671, - "secondEndPos" : 22349 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 21660, - "secondPos" : 22338, - "firstEndPos" : 21666, - "secondEndPos" : 22344 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 21660, - "secondPos" : 22338, - "firstEndPos" : 21666, - "secondEndPos" : 22344 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "name", - "secondLabel" : "name", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 21667, - "secondPos" : 22345, - "firstEndPos" : 21671, - "secondEndPos" : 22349 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21673, - "secondPos" : 22351, - "firstEndPos" : 21685, - "secondEndPos" : 22363 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 21673, - "secondPos" : 22351, - "firstEndPos" : 21679, - "secondEndPos" : 22357 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 21673, - "secondPos" : 22351, - "firstEndPos" : 21679, - "secondEndPos" : 22357 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 21680, - "secondPos" : 22358, - "firstEndPos" : 21685, - "secondEndPos" : 22363 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JMSException", - "secondLabel" : "JMSException", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 21694, - "secondPos" : 22372, - "firstEndPos" : 21706, - "secondEndPos" : 22384 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21694, - "secondPos" : 22372, - "firstEndPos" : 21706, - "secondEndPos" : 22384 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 21707, - "secondPos" : 22385, - "firstEndPos" : 22777, - "secondEndPos" : 23455 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 21717, - "secondPos" : 22395, - "firstEndPos" : 22771, - "secondEndPos" : 23449 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 21721, - "secondPos" : 22399, - "firstEndPos" : 21734, - "secondEndPos" : 22412 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 21721, - "secondPos" : 22399, - "firstEndPos" : 21726, - "secondEndPos" : 22404 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "==", - "secondLabel" : "==", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 21727, - "secondPos" : 22405, - "firstEndPos" : 21729, - "secondEndPos" : 22407 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 21730, - "secondPos" : 22408, - "firstEndPos" : 21734, - "secondEndPos" : 22412 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 21736, - "secondPos" : 22414, - "firstEndPos" : 21801, - "secondEndPos" : 22479 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 21750, - "secondPos" : 22428, - "firstEndPos" : 21791, - "secondEndPos" : 22469 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 21750, - "secondPos" : 22428, - "firstEndPos" : 21790, - "secondEndPos" : 22468 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 21750, - "secondPos" : 22428, - "firstEndPos" : 21760, - "secondEndPos" : 22438 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 21750, - "secondPos" : 22428, - "firstEndPos" : 21760, - "secondEndPos" : 22438 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setObjectProperty", - "secondLabel" : "setObjectProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 21761, - "secondPos" : 22439, - "firstEndPos" : 21778, - "secondEndPos" : 22456 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 21779, - "secondPos" : 22457, - "firstEndPos" : 21789, - "secondEndPos" : 22467 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "name", - "secondLabel" : "name", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 21779, - "secondPos" : 22457, - "firstEndPos" : 21783, - "secondEndPos" : 22461 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 21785, - "secondPos" : 22463, - "firstEndPos" : 21789, - "secondEndPos" : 22467 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 21807, - "secondPos" : 22485, - "firstEndPos" : 22771, - "secondEndPos" : 23449 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 21811, - "secondPos" : 22489, - "firstEndPos" : 21832, - "secondEndPos" : 22510 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 21811, - "secondPos" : 22489, - "firstEndPos" : 21816, - "secondEndPos" : 22494 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Byte", - "secondLabel" : "Byte", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 21828, - "secondPos" : 22506, - "firstEndPos" : 21832, - "secondEndPos" : 22510 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 21828, - "secondPos" : 22506, - "firstEndPos" : 21832, - "secondEndPos" : 22510 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 21834, - "secondPos" : 22512, - "firstEndPos" : 21905, - "secondEndPos" : 22583 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 21848, - "secondPos" : 22526, - "firstEndPos" : 21895, - "secondEndPos" : 22573 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 21848, - "secondPos" : 22526, - "firstEndPos" : 21894, - "secondEndPos" : 22572 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 21848, - "secondPos" : 22526, - "firstEndPos" : 21858, - "secondEndPos" : 22536 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 21848, - "secondPos" : 22526, - "firstEndPos" : 21858, - "secondEndPos" : 22536 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setByteProperty", - "secondLabel" : "setByteProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 21859, - "secondPos" : 22537, - "firstEndPos" : 21874, - "secondEndPos" : 22552 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 21875, - "secondPos" : 22553, - "firstEndPos" : 21893, - "secondEndPos" : 22571 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "name", - "secondLabel" : "name", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 21875, - "secondPos" : 22553, - "firstEndPos" : 21879, - "secondEndPos" : 22557 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 21881, - "secondPos" : 22559, - "firstEndPos" : 21893, - "secondEndPos" : 22571 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Byte", - "secondLabel" : "Byte", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 21882, - "secondPos" : 22560, - "firstEndPos" : 21886, - "secondEndPos" : 22564 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 21882, - "secondPos" : 22560, - "firstEndPos" : 21886, - "secondEndPos" : 22564 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 21888, - "secondPos" : 22566, - "firstEndPos" : 21893, - "secondEndPos" : 22571 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 21911, - "secondPos" : 22589, - "firstEndPos" : 22771, - "secondEndPos" : 23449 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 21915, - "secondPos" : 22593, - "firstEndPos" : 21939, - "secondEndPos" : 22617 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 21915, - "secondPos" : 22593, - "firstEndPos" : 21920, - "secondEndPos" : 22598 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Boolean", - "secondLabel" : "Boolean", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 21932, - "secondPos" : 22610, - "firstEndPos" : 21939, - "secondEndPos" : 22617 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 21932, - "secondPos" : 22610, - "firstEndPos" : 21939, - "secondEndPos" : 22617 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 21941, - "secondPos" : 22619, - "firstEndPos" : 22018, - "secondEndPos" : 22696 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 21955, - "secondPos" : 22633, - "firstEndPos" : 22008, - "secondEndPos" : 22686 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 21955, - "secondPos" : 22633, - "firstEndPos" : 22007, - "secondEndPos" : 22685 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 21955, - "secondPos" : 22633, - "firstEndPos" : 21965, - "secondEndPos" : 22643 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 21955, - "secondPos" : 22633, - "firstEndPos" : 21965, - "secondEndPos" : 22643 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setBooleanProperty", - "secondLabel" : "setBooleanProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 21966, - "secondPos" : 22644, - "firstEndPos" : 21984, - "secondEndPos" : 22662 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 21985, - "secondPos" : 22663, - "firstEndPos" : 22006, - "secondEndPos" : 22684 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "name", - "secondLabel" : "name", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 21985, - "secondPos" : 22663, - "firstEndPos" : 21989, - "secondEndPos" : 22667 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 21991, - "secondPos" : 22669, - "firstEndPos" : 22006, - "secondEndPos" : 22684 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Boolean", - "secondLabel" : "Boolean", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 21992, - "secondPos" : 22670, - "firstEndPos" : 21999, - "secondEndPos" : 22677 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 21992, - "secondPos" : 22670, - "firstEndPos" : 21999, - "secondEndPos" : 22677 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22001, - "secondPos" : 22679, - "firstEndPos" : 22006, - "secondEndPos" : 22684 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22024, - "secondPos" : 22702, - "firstEndPos" : 22771, - "secondEndPos" : 23449 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22028, - "secondPos" : 22706, - "firstEndPos" : 22051, - "secondEndPos" : 22729 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 22028, - "secondPos" : 22706, - "firstEndPos" : 22033, - "secondEndPos" : 22711 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Double", - "secondLabel" : "Double", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22045, - "secondPos" : 22723, - "firstEndPos" : 22051, - "secondEndPos" : 22729 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 22045, - "secondPos" : 22723, - "firstEndPos" : 22051, - "secondEndPos" : 22729 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22053, - "secondPos" : 22731, - "firstEndPos" : 22128, - "secondEndPos" : 22806 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 22067, - "secondPos" : 22745, - "firstEndPos" : 22118, - "secondEndPos" : 22796 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 22067, - "secondPos" : 22745, - "firstEndPos" : 22117, - "secondEndPos" : 22795 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22067, - "secondPos" : 22745, - "firstEndPos" : 22077, - "secondEndPos" : 22755 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 22067, - "secondPos" : 22745, - "firstEndPos" : 22077, - "secondEndPos" : 22755 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setDoubleProperty", - "secondLabel" : "setDoubleProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22078, - "secondPos" : 22756, - "firstEndPos" : 22095, - "secondEndPos" : 22773 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22096, - "secondPos" : 22774, - "firstEndPos" : 22116, - "secondEndPos" : 22794 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "name", - "secondLabel" : "name", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22096, - "secondPos" : 22774, - "firstEndPos" : 22100, - "secondEndPos" : 22778 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22102, - "secondPos" : 22780, - "firstEndPos" : 22116, - "secondEndPos" : 22794 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Double", - "secondLabel" : "Double", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22103, - "secondPos" : 22781, - "firstEndPos" : 22109, - "secondEndPos" : 22787 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22103, - "secondPos" : 22781, - "firstEndPos" : 22109, - "secondEndPos" : 22787 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22111, - "secondPos" : 22789, - "firstEndPos" : 22116, - "secondEndPos" : 22794 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22134, - "secondPos" : 22812, - "firstEndPos" : 22771, - "secondEndPos" : 23449 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22138, - "secondPos" : 22816, - "firstEndPos" : 22160, - "secondEndPos" : 22838 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 22138, - "secondPos" : 22816, - "firstEndPos" : 22143, - "secondEndPos" : 22821 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Float", - "secondLabel" : "Float", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22155, - "secondPos" : 22833, - "firstEndPos" : 22160, - "secondEndPos" : 22838 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 22155, - "secondPos" : 22833, - "firstEndPos" : 22160, - "secondEndPos" : 22838 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22162, - "secondPos" : 22840, - "firstEndPos" : 22235, - "secondEndPos" : 22913 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 22176, - "secondPos" : 22854, - "firstEndPos" : 22225, - "secondEndPos" : 22903 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 22176, - "secondPos" : 22854, - "firstEndPos" : 22224, - "secondEndPos" : 22902 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22176, - "secondPos" : 22854, - "firstEndPos" : 22186, - "secondEndPos" : 22864 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 22176, - "secondPos" : 22854, - "firstEndPos" : 22186, - "secondEndPos" : 22864 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setFloatProperty", - "secondLabel" : "setFloatProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22187, - "secondPos" : 22865, - "firstEndPos" : 22203, - "secondEndPos" : 22881 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22204, - "secondPos" : 22882, - "firstEndPos" : 22223, - "secondEndPos" : 22901 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "name", - "secondLabel" : "name", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22204, - "secondPos" : 22882, - "firstEndPos" : 22208, - "secondEndPos" : 22886 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22210, - "secondPos" : 22888, - "firstEndPos" : 22223, - "secondEndPos" : 22901 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Float", - "secondLabel" : "Float", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22211, - "secondPos" : 22889, - "firstEndPos" : 22216, - "secondEndPos" : 22894 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22211, - "secondPos" : 22889, - "firstEndPos" : 22216, - "secondEndPos" : 22894 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22218, - "secondPos" : 22896, - "firstEndPos" : 22223, - "secondEndPos" : 22901 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22241, - "secondPos" : 22919, - "firstEndPos" : 22771, - "secondEndPos" : 23449 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22245, - "secondPos" : 22923, - "firstEndPos" : 22269, - "secondEndPos" : 22947 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 22245, - "secondPos" : 22923, - "firstEndPos" : 22250, - "secondEndPos" : 22928 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Integer", - "secondLabel" : "Integer", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22262, - "secondPos" : 22940, - "firstEndPos" : 22269, - "secondEndPos" : 22947 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 22262, - "secondPos" : 22940, - "firstEndPos" : 22269, - "secondEndPos" : 22947 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22271, - "secondPos" : 22949, - "firstEndPos" : 22344, - "secondEndPos" : 23022 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 22285, - "secondPos" : 22963, - "firstEndPos" : 22334, - "secondEndPos" : 23012 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 22285, - "secondPos" : 22963, - "firstEndPos" : 22333, - "secondEndPos" : 23011 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22285, - "secondPos" : 22963, - "firstEndPos" : 22295, - "secondEndPos" : 22973 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 22285, - "secondPos" : 22963, - "firstEndPos" : 22295, - "secondEndPos" : 22973 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setIntProperty", - "secondLabel" : "setIntProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22296, - "secondPos" : 22974, - "firstEndPos" : 22310, - "secondEndPos" : 22988 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22311, - "secondPos" : 22989, - "firstEndPos" : 22332, - "secondEndPos" : 23010 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "name", - "secondLabel" : "name", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22311, - "secondPos" : 22989, - "firstEndPos" : 22315, - "secondEndPos" : 22993 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22317, - "secondPos" : 22995, - "firstEndPos" : 22332, - "secondEndPos" : 23010 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Integer", - "secondLabel" : "Integer", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22318, - "secondPos" : 22996, - "firstEndPos" : 22325, - "secondEndPos" : 23003 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22318, - "secondPos" : 22996, - "firstEndPos" : 22325, - "secondEndPos" : 23003 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22327, - "secondPos" : 23005, - "firstEndPos" : 22332, - "secondEndPos" : 23010 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22350, - "secondPos" : 23028, - "firstEndPos" : 22771, - "secondEndPos" : 23449 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22354, - "secondPos" : 23032, - "firstEndPos" : 22375, - "secondEndPos" : 23053 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 22354, - "secondPos" : 23032, - "firstEndPos" : 22359, - "secondEndPos" : 23037 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Long", - "secondLabel" : "Long", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22371, - "secondPos" : 23049, - "firstEndPos" : 22375, - "secondEndPos" : 23053 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 22371, - "secondPos" : 23049, - "firstEndPos" : 22375, - "secondEndPos" : 23053 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22377, - "secondPos" : 23055, - "firstEndPos" : 22448, - "secondEndPos" : 23126 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 22391, - "secondPos" : 23069, - "firstEndPos" : 22438, - "secondEndPos" : 23116 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 22391, - "secondPos" : 23069, - "firstEndPos" : 22437, - "secondEndPos" : 23115 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22391, - "secondPos" : 23069, - "firstEndPos" : 22401, - "secondEndPos" : 23079 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 22391, - "secondPos" : 23069, - "firstEndPos" : 22401, - "secondEndPos" : 23079 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setLongProperty", - "secondLabel" : "setLongProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22402, - "secondPos" : 23080, - "firstEndPos" : 22417, - "secondEndPos" : 23095 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22418, - "secondPos" : 23096, - "firstEndPos" : 22436, - "secondEndPos" : 23114 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "name", - "secondLabel" : "name", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22418, - "secondPos" : 23096, - "firstEndPos" : 22422, - "secondEndPos" : 23100 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22424, - "secondPos" : 23102, - "firstEndPos" : 22436, - "secondEndPos" : 23114 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Long", - "secondLabel" : "Long", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22425, - "secondPos" : 23103, - "firstEndPos" : 22429, - "secondEndPos" : 23107 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22425, - "secondPos" : 23103, - "firstEndPos" : 22429, - "secondEndPos" : 23107 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22431, - "secondPos" : 23109, - "firstEndPos" : 22436, - "secondEndPos" : 23114 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22454, - "secondPos" : 23132, - "firstEndPos" : 22771, - "secondEndPos" : 23449 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22458, - "secondPos" : 23136, - "firstEndPos" : 22480, - "secondEndPos" : 23158 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 22458, - "secondPos" : 23136, - "firstEndPos" : 22463, - "secondEndPos" : 23141 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Short", - "secondLabel" : "Short", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22475, - "secondPos" : 23153, - "firstEndPos" : 22480, - "secondEndPos" : 23158 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 22475, - "secondPos" : 23153, - "firstEndPos" : 22480, - "secondEndPos" : 23158 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22482, - "secondPos" : 23160, - "firstEndPos" : 22555, - "secondEndPos" : 23233 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 22496, - "secondPos" : 23174, - "firstEndPos" : 22545, - "secondEndPos" : 23223 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 22496, - "secondPos" : 23174, - "firstEndPos" : 22544, - "secondEndPos" : 23222 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22496, - "secondPos" : 23174, - "firstEndPos" : 22506, - "secondEndPos" : 23184 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 22496, - "secondPos" : 23174, - "firstEndPos" : 22506, - "secondEndPos" : 23184 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setShortProperty", - "secondLabel" : "setShortProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22507, - "secondPos" : 23185, - "firstEndPos" : 22523, - "secondEndPos" : 23201 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22524, - "secondPos" : 23202, - "firstEndPos" : 22543, - "secondEndPos" : 23221 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "name", - "secondLabel" : "name", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22524, - "secondPos" : 23202, - "firstEndPos" : 22528, - "secondEndPos" : 23206 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22530, - "secondPos" : 23208, - "firstEndPos" : 22543, - "secondEndPos" : 23221 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Short", - "secondLabel" : "Short", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22531, - "secondPos" : 23209, - "firstEndPos" : 22536, - "secondEndPos" : 23214 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22531, - "secondPos" : 23209, - "firstEndPos" : 22536, - "secondEndPos" : 23214 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22538, - "secondPos" : 23216, - "firstEndPos" : 22543, - "secondEndPos" : 23221 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22561, - "secondPos" : 23239, - "firstEndPos" : 22771, - "secondEndPos" : 23449 -}, { - "firstType" : "InstanceofExpression", - "secondType" : "InstanceofExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22565, - "secondPos" : 23243, - "firstEndPos" : 22588, - "secondEndPos" : 23266 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 22565, - "secondPos" : 23243, - "firstEndPos" : 22570, - "secondEndPos" : 23248 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22582, - "secondPos" : 23260, - "firstEndPos" : 22588, - "secondEndPos" : 23266 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InstanceofExpression", - "secondParentType" : "InstanceofExpression", - "firstPos" : 22582, - "secondPos" : 23260, - "firstEndPos" : 22588, - "secondEndPos" : 23266 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22590, - "secondPos" : 23268, - "firstEndPos" : 22665, - "secondEndPos" : 23343 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 22604, - "secondPos" : 23282, - "firstEndPos" : 22655, - "secondEndPos" : 23333 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 22604, - "secondPos" : 23282, - "firstEndPos" : 22654, - "secondEndPos" : 23332 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22604, - "secondPos" : 23282, - "firstEndPos" : 22614, - "secondEndPos" : 23292 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 22604, - "secondPos" : 23282, - "firstEndPos" : 22614, - "secondEndPos" : 23292 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setStringProperty", - "secondLabel" : "setStringProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22615, - "secondPos" : 23293, - "firstEndPos" : 22632, - "secondEndPos" : 23310 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22633, - "secondPos" : 23311, - "firstEndPos" : 22653, - "secondEndPos" : 23331 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "name", - "secondLabel" : "name", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22633, - "secondPos" : 23311, - "firstEndPos" : 22637, - "secondEndPos" : 23315 -}, { - "firstType" : "CastExpression", - "secondType" : "CastExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22639, - "secondPos" : 23317, - "firstEndPos" : 22653, - "secondEndPos" : 23331 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22640, - "secondPos" : 23318, - "firstEndPos" : 22646, - "secondEndPos" : 23324 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22640, - "secondPos" : 23318, - "firstEndPos" : 22646, - "secondEndPos" : 23324 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "CastExpression", - "secondParentType" : "CastExpression", - "firstPos" : 22648, - "secondPos" : 23326, - "firstEndPos" : 22653, - "secondEndPos" : 23331 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22671, - "secondPos" : 23349, - "firstEndPos" : 22771, - "secondEndPos" : 23449 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// fallback to Object", - "secondLabel" : "// fallback to Object", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 22685, - "secondPos" : 23363, - "firstEndPos" : 22706, - "secondEndPos" : 23384 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 22719, - "secondPos" : 23397, - "firstEndPos" : 22761, - "secondEndPos" : 23439 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 22719, - "secondPos" : 23397, - "firstEndPos" : 22760, - "secondEndPos" : 23438 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22719, - "secondPos" : 23397, - "firstEndPos" : 22729, - "secondEndPos" : 23407 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "jmsMessage", - "secondLabel" : "jmsMessage", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 22719, - "secondPos" : 23397, - "firstEndPos" : 22729, - "secondEndPos" : 23407 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "setObjectProperty", - "secondLabel" : "setObjectProperty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22730, - "secondPos" : 23408, - "firstEndPos" : 22747, - "secondEndPos" : 23425 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 22748, - "secondPos" : 23426, - "firstEndPos" : 22759, - "secondEndPos" : 23437 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "name", - "secondLabel" : "name", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22748, - "secondPos" : 23426, - "firstEndPos" : 22752, - "secondEndPos" : 23430 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "value", - "secondLabel" : "value", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 22754, - "secondPos" : 23432, - "firstEndPos" : 22759, - "secondEndPos" : 23437 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 22783, - "secondPos" : 23461, - "firstEndPos" : 24573, - "secondEndPos" : 25251 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 22783, - "secondPos" : 23461, - "firstEndPos" : 22789, - "secondEndPos" : 23467 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 22790, - "secondPos" : 23468, - "firstEndPos" : 22796, - "secondEndPos" : 23474 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageType", - "secondLabel" : "JmsMessageType", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22797, - "secondPos" : 23475, - "firstEndPos" : 22811, - "secondEndPos" : 23489 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 22797, - "secondPos" : 23475, - "firstEndPos" : 22811, - "secondEndPos" : 23489 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "discoverMessageTypeFromPayload", - "secondLabel" : "discoverMessageTypeFromPayload", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 22812, - "secondPos" : 23490, - "firstEndPos" : 22842, - "secondEndPos" : 23520 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 22843, - "secondPos" : 23521, - "firstEndPos" : 22863, - "secondEndPos" : 23541 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "final", - "secondLabel" : "final", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 22843, - "secondPos" : 23521, - "firstEndPos" : 22848, - "secondEndPos" : 23526 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Object", - "secondLabel" : "Object", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22849, - "secondPos" : 23527, - "firstEndPos" : 22855, - "secondEndPos" : 23533 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 22849, - "secondPos" : 23527, - "firstEndPos" : 22855, - "secondEndPos" : 23533 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 22856, - "secondPos" : 23534, - "firstEndPos" : 22863, - "secondEndPos" : 23541 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 22865, - "secondPos" : 23543, - "firstEndPos" : 24573, - "secondEndPos" : 25251 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 22875, - "secondPos" : 23553, - "firstEndPos" : 22897, - "secondEndPos" : 23575 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageType", - "secondLabel" : "JmsMessageType", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 22875, - "secondPos" : 23553, - "firstEndPos" : 22889, - "secondEndPos" : 23567 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 22875, - "secondPos" : 23553, - "firstEndPos" : 22889, - "secondEndPos" : 23567 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 22890, - "secondPos" : 23568, - "firstEndPos" : 22896, - "secondEndPos" : 23574 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 22890, - "secondPos" : 23568, - "firstEndPos" : 22896, - "secondEndPos" : 23574 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// Default is a JMS Message since a body is not required", - "secondLabel" : "// Default is a JMS Message since a body is not required", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 22906, - "secondPos" : 23584, - "firstEndPos" : 22962, - "secondEndPos" : 23640 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 22971, - "secondPos" : 23649, - "firstEndPos" : 24544, - "secondEndPos" : 25222 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22975, - "secondPos" : 23653, - "firstEndPos" : 22990, - "secondEndPos" : 23668 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 22975, - "secondPos" : 23653, - "firstEndPos" : 22982, - "secondEndPos" : 23660 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "==", - "secondLabel" : "==", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 22983, - "secondPos" : 23661, - "firstEndPos" : 22985, - "secondEndPos" : 23663 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 22986, - "secondPos" : 23664, - "firstEndPos" : 22990, - "secondEndPos" : 23668 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 22992, - "secondPos" : 23670, - "firstEndPos" : 23048, - "secondEndPos" : 23726 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 23006, - "secondPos" : 23684, - "firstEndPos" : 23038, - "secondEndPos" : 23716 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 23006, - "secondPos" : 23684, - "firstEndPos" : 23037, - "secondEndPos" : 23715 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23006, - "secondPos" : 23684, - "firstEndPos" : 23012, - "secondEndPos" : 23690 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23013, - "secondPos" : 23691, - "firstEndPos" : 23014, - "secondEndPos" : 23692 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Message", - "secondLabel" : "JmsMessageType.Message", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23015, - "secondPos" : 23693, - "firstEndPos" : 23037, - "secondEndPos" : 23715 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23054, - "secondPos" : 23732, - "firstEndPos" : 24544, - "secondEndPos" : 25222 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// Something was found in the body so determine", - "secondLabel" : "// Something was found in the body so determine", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 23068, - "secondPos" : 23746, - "firstEndPos" : 23115, - "secondEndPos" : 23793 -}, { - "firstType" : "LineComment", - "secondType" : "LineComment", - "firstLabel" : "// what type of message we need to create", - "secondLabel" : "// what type of message we need to create", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 23128, - "secondPos" : 23806, - "firstEndPos" : 23169, - "secondEndPos" : 23847 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 23182, - "secondPos" : 23860, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23186, - "secondPos" : 23864, - "firstEndPos" : 23218, - "secondEndPos" : 23896 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23186, - "secondPos" : 23864, - "firstEndPos" : 23198, - "secondEndPos" : 23876 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 23186, - "secondPos" : 23864, - "firstEndPos" : 23198, - "secondEndPos" : 23876 -}, { - "firstType" : "ArrayType", - "secondType" : "ArrayType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 23186, - "secondPos" : 23864, - "firstEndPos" : 23192, - "secondEndPos" : 23870 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "byte", - "secondLabel" : "byte", - "firstParentType" : "ArrayType", - "secondParentType" : "ArrayType", - "firstPos" : 23186, - "secondPos" : 23864, - "firstEndPos" : 23190, - "secondEndPos" : 23868 -}, { - "firstType" : "Dimension", - "secondType" : "Dimension", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ArrayType", - "secondParentType" : "ArrayType", - "firstPos" : 23190, - "secondPos" : 23868, - "firstEndPos" : 23192, - "secondEndPos" : 23870 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23199, - "secondPos" : 23877, - "firstEndPos" : 23209, - "secondEndPos" : 23887 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23210, - "secondPos" : 23888, - "firstEndPos" : 23217, - "secondEndPos" : 23895 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 23210, - "secondPos" : 23888, - "firstEndPos" : 23217, - "secondEndPos" : 23895 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23220, - "secondPos" : 23898, - "firstEndPos" : 23282, - "secondEndPos" : 23960 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 23238, - "secondPos" : 23916, - "firstEndPos" : 23268, - "secondEndPos" : 23946 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 23238, - "secondPos" : 23916, - "firstEndPos" : 23267, - "secondEndPos" : 23945 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23238, - "secondPos" : 23916, - "firstEndPos" : 23244, - "secondEndPos" : 23922 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23245, - "secondPos" : 23923, - "firstEndPos" : 23246, - "secondEndPos" : 23924 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Bytes", - "secondLabel" : "JmsMessageType.Bytes", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23247, - "secondPos" : 23925, - "firstEndPos" : 23267, - "secondEndPos" : 23945 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23288, - "secondPos" : 23966, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23292, - "secondPos" : 23970, - "firstEndPos" : 23321, - "secondEndPos" : 23999 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23292, - "secondPos" : 23970, - "firstEndPos" : 23301, - "secondEndPos" : 23979 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 23292, - "secondPos" : 23970, - "firstEndPos" : 23301, - "secondEndPos" : 23979 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Map", - "secondLabel" : "Map", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 23292, - "secondPos" : 23970, - "firstEndPos" : 23295, - "secondEndPos" : 23973 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 23292, - "secondPos" : 23970, - "firstEndPos" : 23295, - "secondEndPos" : 23973 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23302, - "secondPos" : 23980, - "firstEndPos" : 23312, - "secondEndPos" : 23990 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23313, - "secondPos" : 23991, - "firstEndPos" : 23320, - "secondEndPos" : 23998 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 23313, - "secondPos" : 23991, - "firstEndPos" : 23320, - "secondEndPos" : 23998 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23323, - "secondPos" : 24001, - "firstEndPos" : 23383, - "secondEndPos" : 24061 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 23341, - "secondPos" : 24019, - "firstEndPos" : 23369, - "secondEndPos" : 24047 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 23341, - "secondPos" : 24019, - "firstEndPos" : 23368, - "secondEndPos" : 24046 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23341, - "secondPos" : 24019, - "firstEndPos" : 23347, - "secondEndPos" : 24025 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23348, - "secondPos" : 24026, - "firstEndPos" : 23349, - "secondEndPos" : 24027 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Map", - "secondLabel" : "JmsMessageType.Map", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23350, - "secondPos" : 24028, - "firstEndPos" : 23368, - "secondEndPos" : 24046 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23389, - "secondPos" : 24067, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23393, - "secondPos" : 24071, - "firstEndPos" : 23429, - "secondEndPos" : 24107 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23393, - "secondPos" : 24071, - "firstEndPos" : 23409, - "secondEndPos" : 24087 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 23393, - "secondPos" : 24071, - "firstEndPos" : 23409, - "secondEndPos" : 24087 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Collection", - "secondLabel" : "Collection", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 23393, - "secondPos" : 24071, - "firstEndPos" : 23403, - "secondEndPos" : 24081 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 23393, - "secondPos" : 24071, - "firstEndPos" : 23403, - "secondEndPos" : 24081 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23410, - "secondPos" : 24088, - "firstEndPos" : 23420, - "secondEndPos" : 24098 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23421, - "secondPos" : 24099, - "firstEndPos" : 23428, - "secondEndPos" : 24106 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 23421, - "secondPos" : 24099, - "firstEndPos" : 23428, - "secondEndPos" : 24106 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23431, - "secondPos" : 24109, - "firstEndPos" : 23494, - "secondEndPos" : 24172 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 23449, - "secondPos" : 24127, - "firstEndPos" : 23480, - "secondEndPos" : 24158 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 23449, - "secondPos" : 24127, - "firstEndPos" : 23479, - "secondEndPos" : 24157 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23449, - "secondPos" : 24127, - "firstEndPos" : 23455, - "secondEndPos" : 24133 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23456, - "secondPos" : 24134, - "firstEndPos" : 23457, - "secondEndPos" : 24135 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Stream", - "secondLabel" : "JmsMessageType.Stream", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23458, - "secondPos" : 24136, - "firstEndPos" : 23479, - "secondEndPos" : 24157 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23500, - "secondPos" : 24178, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23504, - "secondPos" : 24182, - "firstEndPos" : 23541, - "secondEndPos" : 24219 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23504, - "secondPos" : 24182, - "firstEndPos" : 23521, - "secondEndPos" : 24199 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 23504, - "secondPos" : 24182, - "firstEndPos" : 23521, - "secondEndPos" : 24199 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "InputStream", - "secondLabel" : "InputStream", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 23504, - "secondPos" : 24182, - "firstEndPos" : 23515, - "secondEndPos" : 24193 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 23504, - "secondPos" : 24182, - "firstEndPos" : 23515, - "secondEndPos" : 24193 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23522, - "secondPos" : 24200, - "firstEndPos" : 23532, - "secondEndPos" : 24210 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23533, - "secondPos" : 24211, - "firstEndPos" : 23540, - "secondEndPos" : 24218 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 23533, - "secondPos" : 24211, - "firstEndPos" : 23540, - "secondEndPos" : 24218 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23543, - "secondPos" : 24221, - "firstEndPos" : 23605, - "secondEndPos" : 24283 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 23561, - "secondPos" : 24239, - "firstEndPos" : 23591, - "secondEndPos" : 24269 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 23561, - "secondPos" : 24239, - "firstEndPos" : 23590, - "secondEndPos" : 24268 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23561, - "secondPos" : 24239, - "firstEndPos" : 23567, - "secondEndPos" : 24245 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23568, - "secondPos" : 24246, - "firstEndPos" : 23569, - "secondEndPos" : 24247 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Bytes", - "secondLabel" : "JmsMessageType.Bytes", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23570, - "secondPos" : 24248, - "firstEndPos" : 23590, - "secondEndPos" : 24268 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23611, - "secondPos" : 24289, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23615, - "secondPos" : 24293, - "firstEndPos" : 23651, - "secondEndPos" : 24329 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23615, - "secondPos" : 24293, - "firstEndPos" : 23631, - "secondEndPos" : 24309 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 23615, - "secondPos" : 24293, - "firstEndPos" : 23631, - "secondEndPos" : 24309 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "ByteBuffer", - "secondLabel" : "ByteBuffer", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 23615, - "secondPos" : 24293, - "firstEndPos" : 23625, - "secondEndPos" : 24303 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 23615, - "secondPos" : 24293, - "firstEndPos" : 23625, - "secondEndPos" : 24303 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23632, - "secondPos" : 24310, - "firstEndPos" : 23642, - "secondEndPos" : 24320 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23643, - "secondPos" : 24321, - "firstEndPos" : 23650, - "secondEndPos" : 24328 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 23643, - "secondPos" : 24321, - "firstEndPos" : 23650, - "secondEndPos" : 24328 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23653, - "secondPos" : 24331, - "firstEndPos" : 23715, - "secondEndPos" : 24393 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 23671, - "secondPos" : 24349, - "firstEndPos" : 23701, - "secondEndPos" : 24379 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 23671, - "secondPos" : 24349, - "firstEndPos" : 23700, - "secondEndPos" : 24378 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23671, - "secondPos" : 24349, - "firstEndPos" : 23677, - "secondEndPos" : 24355 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23678, - "secondPos" : 24356, - "firstEndPos" : 23679, - "secondEndPos" : 24357 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Bytes", - "secondLabel" : "JmsMessageType.Bytes", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23680, - "secondPos" : 24358, - "firstEndPos" : 23700, - "secondEndPos" : 24378 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23721, - "secondPos" : 24399, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23725, - "secondPos" : 24403, - "firstEndPos" : 23755, - "secondEndPos" : 24433 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23725, - "secondPos" : 24403, - "firstEndPos" : 23735, - "secondEndPos" : 24413 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 23725, - "secondPos" : 24403, - "firstEndPos" : 23735, - "secondEndPos" : 24413 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "File", - "secondLabel" : "File", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 23725, - "secondPos" : 24403, - "firstEndPos" : 23729, - "secondEndPos" : 24407 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 23725, - "secondPos" : 24403, - "firstEndPos" : 23729, - "secondEndPos" : 24407 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23736, - "secondPos" : 24414, - "firstEndPos" : 23746, - "secondEndPos" : 24424 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23747, - "secondPos" : 24425, - "firstEndPos" : 23754, - "secondEndPos" : 24432 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 23747, - "secondPos" : 24425, - "firstEndPos" : 23754, - "secondEndPos" : 24432 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23757, - "secondPos" : 24435, - "firstEndPos" : 23819, - "secondEndPos" : 24497 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 23775, - "secondPos" : 24453, - "firstEndPos" : 23805, - "secondEndPos" : 24483 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 23775, - "secondPos" : 24453, - "firstEndPos" : 23804, - "secondEndPos" : 24482 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23775, - "secondPos" : 24453, - "firstEndPos" : 23781, - "secondEndPos" : 24459 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23782, - "secondPos" : 24460, - "firstEndPos" : 23783, - "secondEndPos" : 24461 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Bytes", - "secondLabel" : "JmsMessageType.Bytes", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23784, - "secondPos" : 24462, - "firstEndPos" : 23804, - "secondEndPos" : 24482 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23825, - "secondPos" : 24503, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23829, - "secondPos" : 24507, - "firstEndPos" : 23861, - "secondEndPos" : 24539 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23829, - "secondPos" : 24507, - "firstEndPos" : 23841, - "secondEndPos" : 24519 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 23829, - "secondPos" : 24507, - "firstEndPos" : 23841, - "secondEndPos" : 24519 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Reader", - "secondLabel" : "Reader", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 23829, - "secondPos" : 24507, - "firstEndPos" : 23835, - "secondEndPos" : 24513 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 23829, - "secondPos" : 24507, - "firstEndPos" : 23835, - "secondEndPos" : 24513 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23842, - "secondPos" : 24520, - "firstEndPos" : 23852, - "secondEndPos" : 24530 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23853, - "secondPos" : 24531, - "firstEndPos" : 23860, - "secondEndPos" : 24538 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 23853, - "secondPos" : 24531, - "firstEndPos" : 23860, - "secondEndPos" : 24538 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23863, - "secondPos" : 24541, - "firstEndPos" : 23924, - "secondEndPos" : 24602 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 23881, - "secondPos" : 24559, - "firstEndPos" : 23910, - "secondEndPos" : 24588 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 23881, - "secondPos" : 24559, - "firstEndPos" : 23909, - "secondEndPos" : 24587 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23881, - "secondPos" : 24559, - "firstEndPos" : 23887, - "secondEndPos" : 24565 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23888, - "secondPos" : 24566, - "firstEndPos" : 23889, - "secondEndPos" : 24567 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Text", - "secondLabel" : "JmsMessageType.Text", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23890, - "secondPos" : 24568, - "firstEndPos" : 23909, - "secondEndPos" : 24587 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23930, - "secondPos" : 24608, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23934, - "secondPos" : 24612, - "firstEndPos" : 23966, - "secondEndPos" : 24644 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23934, - "secondPos" : 24612, - "firstEndPos" : 23946, - "secondEndPos" : 24624 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 23934, - "secondPos" : 24612, - "firstEndPos" : 23946, - "secondEndPos" : 24624 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 23934, - "secondPos" : 24612, - "firstEndPos" : 23940, - "secondEndPos" : 24618 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 23934, - "secondPos" : 24612, - "firstEndPos" : 23940, - "secondEndPos" : 24618 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23947, - "secondPos" : 24625, - "firstEndPos" : 23957, - "secondEndPos" : 24635 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 23958, - "secondPos" : 24636, - "firstEndPos" : 23965, - "secondEndPos" : 24643 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 23958, - "secondPos" : 24636, - "firstEndPos" : 23965, - "secondEndPos" : 24643 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 23968, - "secondPos" : 24646, - "firstEndPos" : 24029, - "secondEndPos" : 24707 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 23986, - "secondPos" : 24664, - "firstEndPos" : 24015, - "secondEndPos" : 24693 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 23986, - "secondPos" : 24664, - "firstEndPos" : 24014, - "secondEndPos" : 24692 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23986, - "secondPos" : 24664, - "firstEndPos" : 23992, - "secondEndPos" : 24670 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23993, - "secondPos" : 24671, - "firstEndPos" : 23994, - "secondEndPos" : 24672 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Text", - "secondLabel" : "JmsMessageType.Text", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 23995, - "secondPos" : 24673, - "firstEndPos" : 24014, - "secondEndPos" : 24692 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24035, - "secondPos" : 24713, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24039, - "secondPos" : 24717, - "firstEndPos" : 24075, - "secondEndPos" : 24753 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24039, - "secondPos" : 24717, - "firstEndPos" : 24055, - "secondEndPos" : 24733 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 24039, - "secondPos" : 24717, - "firstEndPos" : 24055, - "secondEndPos" : 24733 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "CharBuffer", - "secondLabel" : "CharBuffer", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 24039, - "secondPos" : 24717, - "firstEndPos" : 24049, - "secondEndPos" : 24727 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 24039, - "secondPos" : 24717, - "firstEndPos" : 24049, - "secondEndPos" : 24727 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24056, - "secondPos" : 24734, - "firstEndPos" : 24066, - "secondEndPos" : 24744 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24067, - "secondPos" : 24745, - "firstEndPos" : 24074, - "secondEndPos" : 24752 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 24067, - "secondPos" : 24745, - "firstEndPos" : 24074, - "secondEndPos" : 24752 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24077, - "secondPos" : 24755, - "firstEndPos" : 24138, - "secondEndPos" : 24816 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 24095, - "secondPos" : 24773, - "firstEndPos" : 24124, - "secondEndPos" : 24802 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 24095, - "secondPos" : 24773, - "firstEndPos" : 24123, - "secondEndPos" : 24801 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24095, - "secondPos" : 24773, - "firstEndPos" : 24101, - "secondEndPos" : 24779 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24102, - "secondPos" : 24780, - "firstEndPos" : 24103, - "secondEndPos" : 24781 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Text", - "secondLabel" : "JmsMessageType.Text", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24104, - "secondPos" : 24782, - "firstEndPos" : 24123, - "secondEndPos" : 24801 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24144, - "secondPos" : 24822, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24148, - "secondPos" : 24826, - "firstEndPos" : 24180, - "secondEndPos" : 24858 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24148, - "secondPos" : 24826, - "firstEndPos" : 24160, - "secondEndPos" : 24838 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 24148, - "secondPos" : 24826, - "firstEndPos" : 24160, - "secondEndPos" : 24838 -}, { - "firstType" : "ArrayType", - "secondType" : "ArrayType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 24148, - "secondPos" : 24826, - "firstEndPos" : 24154, - "secondEndPos" : 24832 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "char", - "secondLabel" : "char", - "firstParentType" : "ArrayType", - "secondParentType" : "ArrayType", - "firstPos" : 24148, - "secondPos" : 24826, - "firstEndPos" : 24152, - "secondEndPos" : 24830 -}, { - "firstType" : "Dimension", - "secondType" : "Dimension", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ArrayType", - "secondParentType" : "ArrayType", - "firstPos" : 24152, - "secondPos" : 24830, - "firstEndPos" : 24154, - "secondEndPos" : 24832 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24161, - "secondPos" : 24839, - "firstEndPos" : 24171, - "secondEndPos" : 24849 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24172, - "secondPos" : 24850, - "firstEndPos" : 24179, - "secondEndPos" : 24857 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 24172, - "secondPos" : 24850, - "firstEndPos" : 24179, - "secondEndPos" : 24857 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24182, - "secondPos" : 24860, - "firstEndPos" : 24243, - "secondEndPos" : 24921 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 24200, - "secondPos" : 24878, - "firstEndPos" : 24229, - "secondEndPos" : 24907 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 24200, - "secondPos" : 24878, - "firstEndPos" : 24228, - "secondEndPos" : 24906 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24200, - "secondPos" : 24878, - "firstEndPos" : 24206, - "secondEndPos" : 24884 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24207, - "secondPos" : 24885, - "firstEndPos" : 24208, - "secondEndPos" : 24886 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Text", - "secondLabel" : "JmsMessageType.Text", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24209, - "secondPos" : 24887, - "firstEndPos" : 24228, - "secondEndPos" : 24906 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24249, - "secondPos" : 24927, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24253, - "secondPos" : 24931, - "firstEndPos" : 24288, - "secondEndPos" : 24966 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24253, - "secondPos" : 24931, - "firstEndPos" : 24268, - "secondEndPos" : 24946 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 24253, - "secondPos" : 24931, - "firstEndPos" : 24268, - "secondEndPos" : 24946 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Character", - "secondLabel" : "Character", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 24253, - "secondPos" : 24931, - "firstEndPos" : 24262, - "secondEndPos" : 24940 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 24253, - "secondPos" : 24931, - "firstEndPos" : 24262, - "secondEndPos" : 24940 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24269, - "secondPos" : 24947, - "firstEndPos" : 24279, - "secondEndPos" : 24957 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24280, - "secondPos" : 24958, - "firstEndPos" : 24287, - "secondEndPos" : 24965 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 24280, - "secondPos" : 24958, - "firstEndPos" : 24287, - "secondEndPos" : 24965 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24290, - "secondPos" : 24968, - "firstEndPos" : 24351, - "secondEndPos" : 25029 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 24308, - "secondPos" : 24986, - "firstEndPos" : 24337, - "secondEndPos" : 25015 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 24308, - "secondPos" : 24986, - "firstEndPos" : 24336, - "secondEndPos" : 25014 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24308, - "secondPos" : 24986, - "firstEndPos" : 24314, - "secondEndPos" : 24992 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24315, - "secondPos" : 24993, - "firstEndPos" : 24316, - "secondEndPos" : 24994 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Text", - "secondLabel" : "JmsMessageType.Text", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24317, - "secondPos" : 24995, - "firstEndPos" : 24336, - "secondEndPos" : 25014 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24357, - "secondPos" : 25035, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24361, - "secondPos" : 25039, - "firstEndPos" : 24399, - "secondEndPos" : 25077 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24361, - "secondPos" : 25039, - "firstEndPos" : 24379, - "secondEndPos" : 25057 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 24361, - "secondPos" : 25039, - "firstEndPos" : 24379, - "secondEndPos" : 25057 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Serializable", - "secondLabel" : "Serializable", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 24361, - "secondPos" : 25039, - "firstEndPos" : 24373, - "secondEndPos" : 25051 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 24361, - "secondPos" : 25039, - "firstEndPos" : 24373, - "secondEndPos" : 25051 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24380, - "secondPos" : 25058, - "firstEndPos" : 24390, - "secondEndPos" : 25068 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24391, - "secondPos" : 25069, - "firstEndPos" : 24398, - "secondEndPos" : 25076 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "payload", - "secondLabel" : "payload", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 24391, - "secondPos" : 25069, - "firstEndPos" : 24398, - "secondEndPos" : 25076 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24401, - "secondPos" : 25079, - "firstEndPos" : 24464, - "secondEndPos" : 25142 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 24419, - "secondPos" : 25097, - "firstEndPos" : 24450, - "secondEndPos" : 25128 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 24419, - "secondPos" : 25097, - "firstEndPos" : 24449, - "secondEndPos" : 25127 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24419, - "secondPos" : 25097, - "firstEndPos" : 24425, - "secondEndPos" : 25103 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24426, - "secondPos" : 25104, - "firstEndPos" : 24427, - "secondEndPos" : 25105 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Object", - "secondLabel" : "JmsMessageType.Object", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24428, - "secondPos" : 25106, - "firstEndPos" : 24449, - "secondEndPos" : 25127 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24470, - "secondPos" : 25148, - "firstEndPos" : 24534, - "secondEndPos" : 25212 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 24488, - "secondPos" : 25166, - "firstEndPos" : 24520, - "secondEndPos" : 25198 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 24488, - "secondPos" : 25166, - "firstEndPos" : 24519, - "secondEndPos" : 25197 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24488, - "secondPos" : 25166, - "firstEndPos" : 24494, - "secondEndPos" : 25172 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24495, - "secondPos" : 25173, - "firstEndPos" : 24496, - "secondEndPos" : 25174 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Message", - "secondLabel" : "JmsMessageType.Message", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24497, - "secondPos" : 25175, - "firstEndPos" : 24519, - "secondEndPos" : 25197 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 24553, - "secondPos" : 25231, - "firstEndPos" : 24567, - "secondEndPos" : 25245 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 24560, - "secondPos" : 25238, - "firstEndPos" : 24566, - "secondEndPos" : 25244 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 24579, - "secondPos" : 25257, - "firstEndPos" : 25447, - "secondEndPos" : 26125 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "public", - "secondLabel" : "public", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 24579, - "secondPos" : 25257, - "firstEndPos" : 24585, - "secondEndPos" : 25263 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 24586, - "secondPos" : 25264, - "firstEndPos" : 24592, - "secondEndPos" : 25270 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageType", - "secondLabel" : "JmsMessageType", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 24593, - "secondPos" : 25271, - "firstEndPos" : 24607, - "secondEndPos" : 25285 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 24593, - "secondPos" : 25271, - "firstEndPos" : 24607, - "secondEndPos" : 25285 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "discoverJmsMessageType", - "secondLabel" : "discoverJmsMessageType", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 24608, - "secondPos" : 25286, - "firstEndPos" : 24630, - "secondEndPos" : 25308 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 24631, - "secondPos" : 25309, - "firstEndPos" : 24646, - "secondEndPos" : 25324 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "Message", - "secondLabel" : "Message", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 24631, - "secondPos" : 25309, - "firstEndPos" : 24638, - "secondEndPos" : 25316 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 24631, - "secondPos" : 25309, - "firstEndPos" : 24638, - "secondEndPos" : 25316 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 24639, - "secondPos" : 25317, - "firstEndPos" : 24646, - "secondEndPos" : 25324 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 24648, - "secondPos" : 25326, - "firstEndPos" : 25447, - "secondEndPos" : 26125 -}, { - "firstType" : "VariableDeclarationStatement", - "secondType" : "VariableDeclarationStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 24658, - "secondPos" : 25336, - "firstEndPos" : 24680, - "secondEndPos" : 25358 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "JmsMessageType", - "secondLabel" : "JmsMessageType", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 24658, - "secondPos" : 25336, - "firstEndPos" : 24672, - "secondEndPos" : 25350 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 24658, - "secondPos" : 25336, - "firstEndPos" : 24672, - "secondEndPos" : 25350 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "VariableDeclarationFragment", - "secondParentType" : "VariableDeclarationFragment", - "firstPos" : 24673, - "secondPos" : 25351, - "firstEndPos" : 24679, - "secondEndPos" : 25357 -}, { - "firstType" : "VariableDeclarationFragment", - "secondType" : "VariableDeclarationFragment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "VariableDeclarationStatement", - "secondParentType" : "VariableDeclarationStatement", - "firstPos" : 24673, - "secondPos" : 25351, - "firstEndPos" : 24679, - "secondEndPos" : 25357 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 24689, - "secondPos" : 25367, - "firstEndPos" : 25418, - "secondEndPos" : 26096 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24693, - "secondPos" : 25371, - "firstEndPos" : 24708, - "secondEndPos" : 25386 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 24693, - "secondPos" : 25371, - "firstEndPos" : 24700, - "secondEndPos" : 25378 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "!=", - "secondLabel" : "!=", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 24701, - "secondPos" : 25379, - "firstEndPos" : 24703, - "secondEndPos" : 25381 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 24704, - "secondPos" : 25382, - "firstEndPos" : 24708, - "secondEndPos" : 25386 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24710, - "secondPos" : 25388, - "firstEndPos" : 25356, - "secondEndPos" : 26034 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 24724, - "secondPos" : 25402, - "firstEndPos" : 25346, - "secondEndPos" : 26024 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24728, - "secondPos" : 25406, - "firstEndPos" : 24766, - "secondEndPos" : 25444 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24728, - "secondPos" : 25406, - "firstEndPos" : 24746, - "secondEndPos" : 25424 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 24728, - "secondPos" : 25406, - "firstEndPos" : 24746, - "secondEndPos" : 25424 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "BytesMessage", - "secondLabel" : "BytesMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 24728, - "secondPos" : 25406, - "firstEndPos" : 24740, - "secondEndPos" : 25418 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 24728, - "secondPos" : 25406, - "firstEndPos" : 24740, - "secondEndPos" : 25418 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24747, - "secondPos" : 25425, - "firstEndPos" : 24757, - "secondEndPos" : 25435 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24758, - "secondPos" : 25436, - "firstEndPos" : 24765, - "secondEndPos" : 25443 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 24758, - "secondPos" : 25436, - "firstEndPos" : 24765, - "secondEndPos" : 25443 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24768, - "secondPos" : 25446, - "firstEndPos" : 24830, - "secondEndPos" : 25508 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 24786, - "secondPos" : 25464, - "firstEndPos" : 24816, - "secondEndPos" : 25494 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 24786, - "secondPos" : 25464, - "firstEndPos" : 24815, - "secondEndPos" : 25493 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24786, - "secondPos" : 25464, - "firstEndPos" : 24792, - "secondEndPos" : 25470 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24793, - "secondPos" : 25471, - "firstEndPos" : 24794, - "secondEndPos" : 25472 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Bytes", - "secondLabel" : "JmsMessageType.Bytes", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24795, - "secondPos" : 25473, - "firstEndPos" : 24815, - "secondEndPos" : 25493 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24836, - "secondPos" : 25514, - "firstEndPos" : 25346, - "secondEndPos" : 26024 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24840, - "secondPos" : 25518, - "firstEndPos" : 24876, - "secondEndPos" : 25554 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24840, - "secondPos" : 25518, - "firstEndPos" : 24856, - "secondEndPos" : 25534 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 24840, - "secondPos" : 25518, - "firstEndPos" : 24856, - "secondEndPos" : 25534 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "MapMessage", - "secondLabel" : "MapMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 24840, - "secondPos" : 25518, - "firstEndPos" : 24850, - "secondEndPos" : 25528 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 24840, - "secondPos" : 25518, - "firstEndPos" : 24850, - "secondEndPos" : 25528 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24857, - "secondPos" : 25535, - "firstEndPos" : 24867, - "secondEndPos" : 25545 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24868, - "secondPos" : 25546, - "firstEndPos" : 24875, - "secondEndPos" : 25553 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 24868, - "secondPos" : 25546, - "firstEndPos" : 24875, - "secondEndPos" : 25553 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24878, - "secondPos" : 25556, - "firstEndPos" : 24938, - "secondEndPos" : 25616 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 24896, - "secondPos" : 25574, - "firstEndPos" : 24924, - "secondEndPos" : 25602 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 24896, - "secondPos" : 25574, - "firstEndPos" : 24923, - "secondEndPos" : 25601 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24896, - "secondPos" : 25574, - "firstEndPos" : 24902, - "secondEndPos" : 25580 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24903, - "secondPos" : 25581, - "firstEndPos" : 24904, - "secondEndPos" : 25582 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Map", - "secondLabel" : "JmsMessageType.Map", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 24905, - "secondPos" : 25583, - "firstEndPos" : 24923, - "secondEndPos" : 25601 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24944, - "secondPos" : 25622, - "firstEndPos" : 25346, - "secondEndPos" : 26024 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24948, - "secondPos" : 25626, - "firstEndPos" : 24985, - "secondEndPos" : 25663 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24948, - "secondPos" : 25626, - "firstEndPos" : 24965, - "secondEndPos" : 25643 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 24948, - "secondPos" : 25626, - "firstEndPos" : 24965, - "secondEndPos" : 25643 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "TextMessage", - "secondLabel" : "TextMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 24948, - "secondPos" : 25626, - "firstEndPos" : 24959, - "secondEndPos" : 25637 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 24948, - "secondPos" : 25626, - "firstEndPos" : 24959, - "secondEndPos" : 25637 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24966, - "secondPos" : 25644, - "firstEndPos" : 24976, - "secondEndPos" : 25654 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 24977, - "secondPos" : 25655, - "firstEndPos" : 24984, - "secondEndPos" : 25662 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 24977, - "secondPos" : 25655, - "firstEndPos" : 24984, - "secondEndPos" : 25662 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 24987, - "secondPos" : 25665, - "firstEndPos" : 25048, - "secondEndPos" : 25726 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 25005, - "secondPos" : 25683, - "firstEndPos" : 25034, - "secondEndPos" : 25712 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 25005, - "secondPos" : 25683, - "firstEndPos" : 25033, - "secondEndPos" : 25711 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25005, - "secondPos" : 25683, - "firstEndPos" : 25011, - "secondEndPos" : 25689 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25012, - "secondPos" : 25690, - "firstEndPos" : 25013, - "secondEndPos" : 25691 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Text", - "secondLabel" : "JmsMessageType.Text", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25014, - "secondPos" : 25692, - "firstEndPos" : 25033, - "secondEndPos" : 25711 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 25054, - "secondPos" : 25732, - "firstEndPos" : 25346, - "secondEndPos" : 26024 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 25058, - "secondPos" : 25736, - "firstEndPos" : 25097, - "secondEndPos" : 25775 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25058, - "secondPos" : 25736, - "firstEndPos" : 25077, - "secondEndPos" : 25755 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 25058, - "secondPos" : 25736, - "firstEndPos" : 25077, - "secondEndPos" : 25755 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "StreamMessage", - "secondLabel" : "StreamMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 25058, - "secondPos" : 25736, - "firstEndPos" : 25071, - "secondEndPos" : 25749 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 25058, - "secondPos" : 25736, - "firstEndPos" : 25071, - "secondEndPos" : 25749 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25078, - "secondPos" : 25756, - "firstEndPos" : 25088, - "secondEndPos" : 25766 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25089, - "secondPos" : 25767, - "firstEndPos" : 25096, - "secondEndPos" : 25774 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 25089, - "secondPos" : 25767, - "firstEndPos" : 25096, - "secondEndPos" : 25774 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 25099, - "secondPos" : 25777, - "firstEndPos" : 25162, - "secondEndPos" : 25840 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 25117, - "secondPos" : 25795, - "firstEndPos" : 25148, - "secondEndPos" : 25826 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 25117, - "secondPos" : 25795, - "firstEndPos" : 25147, - "secondEndPos" : 25825 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25117, - "secondPos" : 25795, - "firstEndPos" : 25123, - "secondEndPos" : 25801 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25124, - "secondPos" : 25802, - "firstEndPos" : 25125, - "secondEndPos" : 25803 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Stream", - "secondLabel" : "JmsMessageType.Stream", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25126, - "secondPos" : 25804, - "firstEndPos" : 25147, - "secondEndPos" : 25825 -}, { - "firstType" : "IfStatement", - "secondType" : "IfStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 25168, - "secondPos" : 25846, - "firstEndPos" : 25346, - "secondEndPos" : 26024 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 25172, - "secondPos" : 25850, - "firstEndPos" : 25211, - "secondEndPos" : 25889 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25172, - "secondPos" : 25850, - "firstEndPos" : 25191, - "secondEndPos" : 25869 -}, { - "firstType" : "TypeLiteral", - "secondType" : "TypeLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 25172, - "secondPos" : 25850, - "firstEndPos" : 25191, - "secondEndPos" : 25869 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "ObjectMessage", - "secondLabel" : "ObjectMessage", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 25172, - "secondPos" : 25850, - "firstEndPos" : 25185, - "secondEndPos" : 25863 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeLiteral", - "secondParentType" : "TypeLiteral", - "firstPos" : 25172, - "secondPos" : 25850, - "firstEndPos" : 25185, - "secondEndPos" : 25863 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isInstance", - "secondLabel" : "isInstance", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25192, - "secondPos" : 25870, - "firstEndPos" : 25202, - "secondEndPos" : 25880 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25203, - "secondPos" : 25881, - "firstEndPos" : 25210, - "secondEndPos" : 25888 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "message", - "secondLabel" : "message", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 25203, - "secondPos" : 25881, - "firstEndPos" : 25210, - "secondEndPos" : 25888 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 25213, - "secondPos" : 25891, - "firstEndPos" : 25276, - "secondEndPos" : 25954 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 25231, - "secondPos" : 25909, - "firstEndPos" : 25262, - "secondEndPos" : 25940 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 25231, - "secondPos" : 25909, - "firstEndPos" : 25261, - "secondEndPos" : 25939 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25231, - "secondPos" : 25909, - "firstEndPos" : 25237, - "secondEndPos" : 25915 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25238, - "secondPos" : 25916, - "firstEndPos" : 25239, - "secondEndPos" : 25917 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Object", - "secondLabel" : "JmsMessageType.Object", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25240, - "secondPos" : 25918, - "firstEndPos" : 25261, - "secondEndPos" : 25939 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 25282, - "secondPos" : 25960, - "firstEndPos" : 25346, - "secondEndPos" : 26024 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 25300, - "secondPos" : 25978, - "firstEndPos" : 25332, - "secondEndPos" : 26010 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 25300, - "secondPos" : 25978, - "firstEndPos" : 25331, - "secondEndPos" : 26009 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25300, - "secondPos" : 25978, - "firstEndPos" : 25306, - "secondEndPos" : 25984 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25307, - "secondPos" : 25985, - "firstEndPos" : 25308, - "secondEndPos" : 25986 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Message", - "secondLabel" : "JmsMessageType.Message", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25309, - "secondPos" : 25987, - "firstEndPos" : 25331, - "secondEndPos" : 26009 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "IfStatement", - "secondParentType" : "IfStatement", - "firstPos" : 25362, - "secondPos" : 26040, - "firstEndPos" : 25418, - "secondEndPos" : 26096 -}, { - "firstType" : "ExpressionStatement", - "secondType" : "ExpressionStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 25376, - "secondPos" : 26054, - "firstEndPos" : 25408, - "secondEndPos" : 26086 -}, { - "firstType" : "Assignment", - "secondType" : "Assignment", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ExpressionStatement", - "secondParentType" : "ExpressionStatement", - "firstPos" : 25376, - "secondPos" : 26054, - "firstEndPos" : 25407, - "secondEndPos" : 26085 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25376, - "secondPos" : 26054, - "firstEndPos" : 25382, - "secondEndPos" : 26060 -}, { - "firstType" : "ASSIGNMENT_OPERATOR", - "secondType" : "ASSIGNMENT_OPERATOR", - "firstLabel" : "=", - "secondLabel" : "=", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25383, - "secondPos" : 26061, - "firstEndPos" : 25384, - "secondEndPos" : 26062 -}, { - "firstType" : "QualifiedName", - "secondType" : "QualifiedName", - "firstLabel" : "JmsMessageType.Message", - "secondLabel" : "JmsMessageType.Message", - "firstParentType" : "Assignment", - "secondParentType" : "Assignment", - "firstPos" : 25385, - "secondPos" : 26063, - "firstEndPos" : 25407, - "secondEndPos" : 26085 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 25427, - "secondPos" : 26105, - "firstEndPos" : 25441, - "secondEndPos" : 26119 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "answer", - "secondLabel" : "answer", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 25434, - "secondPos" : 26112, - "firstEndPos" : 25440, - "secondEndPos" : 26118 -}, { - "firstType" : "MethodDeclaration", - "secondType" : "MethodDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "TypeDeclaration", - "secondParentType" : "TypeDeclaration", - "firstPos" : 25453, - "secondPos" : 26131, - "firstEndPos" : 25602, - "secondEndPos" : 26280 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "private", - "secondLabel" : "private", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 25453, - "secondPos" : 26131, - "firstEndPos" : 25460, - "secondEndPos" : 26138 -}, { - "firstType" : "Modifier", - "secondType" : "Modifier", - "firstLabel" : "static", - "secondLabel" : "static", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 25461, - "secondPos" : 26139, - "firstEndPos" : 25467, - "secondEndPos" : 26145 -}, { - "firstType" : "PrimitiveType", - "secondType" : "PrimitiveType", - "firstLabel" : "boolean", - "secondLabel" : "boolean", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 25468, - "secondPos" : 26146, - "firstEndPos" : 25475, - "secondEndPos" : 26153 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "hasIllegalHeaderKey", - "secondLabel" : "hasIllegalHeaderKey", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 25476, - "secondPos" : 26154, - "firstEndPos" : 25495, - "secondEndPos" : 26173 -}, { - "firstType" : "SingleVariableDeclaration", - "secondType" : "SingleVariableDeclaration", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 25496, - "secondPos" : 26174, - "firstEndPos" : 25506, - "secondEndPos" : 26184 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "String", - "secondLabel" : "String", - "firstParentType" : "SimpleType", - "secondParentType" : "SimpleType", - "firstPos" : 25496, - "secondPos" : 26174, - "firstEndPos" : 25502, - "secondEndPos" : 26180 -}, { - "firstType" : "SimpleType", - "secondType" : "SimpleType", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 25496, - "secondPos" : 26174, - "firstEndPos" : 25502, - "secondEndPos" : 26180 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "SingleVariableDeclaration", - "secondParentType" : "SingleVariableDeclaration", - "firstPos" : 25503, - "secondPos" : 26181, - "firstEndPos" : 25506, - "secondEndPos" : 26184 -}, { - "firstType" : "Block", - "secondType" : "Block", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodDeclaration", - "secondParentType" : "MethodDeclaration", - "firstPos" : 25508, - "secondPos" : 26186, - "firstEndPos" : 25602, - "secondEndPos" : 26280 -}, { - "firstType" : "ReturnStatement", - "secondType" : "ReturnStatement", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "Block", - "secondParentType" : "Block", - "firstPos" : 25518, - "secondPos" : 26196, - "firstEndPos" : 25596, - "secondEndPos" : 26274 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "ReturnStatement", - "secondParentType" : "ReturnStatement", - "firstPos" : 25525, - "secondPos" : 26203, - "firstEndPos" : 25595, - "secondEndPos" : 26273 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 25525, - "secondPos" : 26203, - "firstEndPos" : 25574, - "secondEndPos" : 26252 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 25525, - "secondPos" : 26203, - "firstEndPos" : 25553, - "secondEndPos" : 26231 -}, { - "firstType" : "InfixExpression", - "secondType" : "InfixExpression", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 25525, - "secondPos" : 26203, - "firstEndPos" : 25536, - "secondEndPos" : 26214 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 25525, - "secondPos" : 26203, - "firstEndPos" : 25528, - "secondEndPos" : 26206 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "==", - "secondLabel" : "==", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 25529, - "secondPos" : 26207, - "firstEndPos" : 25531, - "secondEndPos" : 26209 -}, { - "firstType" : "NullLiteral", - "secondType" : "NullLiteral", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 25532, - "secondPos" : 26210, - "firstEndPos" : 25536, - "secondEndPos" : 26214 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "||", - "secondLabel" : "||", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 25537, - "secondPos" : 26215, - "firstEndPos" : 25539, - "secondEndPos" : 26217 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 25540, - "secondPos" : 26218, - "firstEndPos" : 25553, - "secondEndPos" : 26231 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25540, - "secondPos" : 26218, - "firstEndPos" : 25543, - "secondEndPos" : 26221 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 25540, - "secondPos" : 26218, - "firstEndPos" : 25543, - "secondEndPos" : 26221 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "isEmpty", - "secondLabel" : "isEmpty", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25544, - "secondPos" : 26222, - "firstEndPos" : 25551, - "secondEndPos" : 26229 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "||", - "secondLabel" : "||", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 25554, - "secondPos" : 26232, - "firstEndPos" : 25556, - "secondEndPos" : 26234 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 25557, - "secondPos" : 26235, - "firstEndPos" : 25574, - "secondEndPos" : 26252 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25557, - "secondPos" : 26235, - "firstEndPos" : 25560, - "secondEndPos" : 26238 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 25557, - "secondPos" : 26235, - "firstEndPos" : 25560, - "secondEndPos" : 26238 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "contains", - "secondLabel" : "contains", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25561, - "secondPos" : 26239, - "firstEndPos" : 25569, - "secondEndPos" : 26247 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25570, - "secondPos" : 26248, - "firstEndPos" : 25573, - "secondEndPos" : 26251 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\".\"", - "secondLabel" : "\".\"", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 25570, - "secondPos" : 26248, - "firstEndPos" : 25573, - "secondEndPos" : 26251 -}, { - "firstType" : "INFIX_EXPRESSION_OPERATOR", - "secondType" : "INFIX_EXPRESSION_OPERATOR", - "firstLabel" : "||", - "secondLabel" : "||", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 25575, - "secondPos" : 26253, - "firstEndPos" : 25577, - "secondEndPos" : 26255 -}, { - "firstType" : "MethodInvocation", - "secondType" : "MethodInvocation", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "InfixExpression", - "secondParentType" : "InfixExpression", - "firstPos" : 25578, - "secondPos" : 26256, - "firstEndPos" : 25595, - "secondEndPos" : 26273 -}, { - "firstType" : "METHOD_INVOCATION_RECEIVER", - "secondType" : "METHOD_INVOCATION_RECEIVER", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25578, - "secondPos" : 26256, - "firstEndPos" : 25581, - "secondEndPos" : 26259 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "key", - "secondLabel" : "key", - "firstParentType" : "METHOD_INVOCATION_RECEIVER", - "secondParentType" : "METHOD_INVOCATION_RECEIVER", - "firstPos" : 25578, - "secondPos" : 26256, - "firstEndPos" : 25581, - "secondEndPos" : 26259 -}, { - "firstType" : "SimpleName", - "secondType" : "SimpleName", - "firstLabel" : "contains", - "secondLabel" : "contains", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25582, - "secondPos" : 26260, - "firstEndPos" : 25590, - "secondEndPos" : 26268 -}, { - "firstType" : "METHOD_INVOCATION_ARGUMENTS", - "secondType" : "METHOD_INVOCATION_ARGUMENTS", - "firstLabel" : "", - "secondLabel" : "", - "firstParentType" : "MethodInvocation", - "secondParentType" : "MethodInvocation", - "firstPos" : 25591, - "secondPos" : 26269, - "firstEndPos" : 25594, - "secondEndPos" : 26272 -}, { - "firstType" : "StringLiteral", - "secondType" : "StringLiteral", - "firstLabel" : "\"-\"", - "secondLabel" : "\"-\"", - "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", - "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", - "firstPos" : 25591, - "secondPos" : 26269, - "firstEndPos" : 25594, - "secondEndPos" : 26272 -} ] \ No newline at end of file diff --git a/src/test/resources/astDiff/PREV-SNAPSHOT/commits/junit-team_junit5/6b575f2ee5f02288a774ff0a85ce3a3e3cb6946f/junit5-engine.src.main.java.org.junit.gen5.engine.junit5.descriptor.ClassTestDescriptor.json b/src/test/resources/astDiff/PREV-SNAPSHOT/commits/junit-team_junit5/6b575f2ee5f02288a774ff0a85ce3a3e3cb6946f/junit5-engine.src.main.java.org.junit.gen5.engine.junit5.descriptor.ClassTestDescriptor.json index e083bd897c..372710423f 100644 --- a/src/test/resources/astDiff/PREV-SNAPSHOT/commits/junit-team_junit5/6b575f2ee5f02288a774ff0a85ce3a3e3cb6946f/junit5-engine.src.main.java.org.junit.gen5.engine.junit5.descriptor.ClassTestDescriptor.json +++ b/src/test/resources/astDiff/PREV-SNAPSHOT/commits/junit-team_junit5/6b575f2ee5f02288a774ff0a85ce3a3e3cb6946f/junit5-engine.src.main.java.org.junit.gen5.engine.junit5.descriptor.ClassTestDescriptor.json @@ -10434,9 +10434,9 @@ "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", "firstPos" : 9944, - "secondPos" : 2295, + "secondPos" : 2331, "firstEndPos" : 9960, - "secondEndPos" : 2325 + "secondEndPos" : 2355 }, { "firstType" : "METHOD_INVOCATION_RECEIVER", "secondType" : "METHOD_INVOCATION_RECEIVER", @@ -10445,31 +10445,31 @@ "firstParentType" : "MethodInvocation", "secondParentType" : "MethodInvocation", "firstPos" : 9944, - "secondPos" : 2295, + "secondPos" : 2331, "firstEndPos" : 9950, - "secondEndPos" : 2309 + "secondEndPos" : 2337 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", "firstLabel" : "method", - "secondLabel" : "annotationType", + "secondLabel" : "method", "firstParentType" : "METHOD_INVOCATION_RECEIVER", "secondParentType" : "METHOD_INVOCATION_RECEIVER", "firstPos" : 9944, - "secondPos" : 2295, + "secondPos" : 2331, "firstEndPos" : 9950, - "secondEndPos" : 2309 + "secondEndPos" : 2337 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", "firstLabel" : "getName", - "secondLabel" : "getSimpleName", + "secondLabel" : "toGenericString", "firstParentType" : "MethodInvocation", "secondParentType" : "MethodInvocation", "firstPos" : 9951, - "secondPos" : 2310, + "secondPos" : 2338, "firstEndPos" : 9958, - "secondEndPos" : 2323 + "secondEndPos" : 2353 }, { "firstType" : "MethodInvocation", "secondType" : "MethodInvocation", @@ -10478,9 +10478,9 @@ "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", "firstPos" : 9962, - "secondPos" : 2331, + "secondPos" : 2295, "firstEndPos" : 9992, - "secondEndPos" : 2355 + "secondEndPos" : 2325 }, { "firstType" : "METHOD_INVOCATION_RECEIVER", "secondType" : "METHOD_INVOCATION_RECEIVER", @@ -10489,31 +10489,31 @@ "firstParentType" : "MethodInvocation", "secondParentType" : "MethodInvocation", "firstPos" : 9962, - "secondPos" : 2331, + "secondPos" : 2295, "firstEndPos" : 9976, - "secondEndPos" : 2337 + "secondEndPos" : 2309 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", "firstLabel" : "annotationType", - "secondLabel" : "method", + "secondLabel" : "annotationType", "firstParentType" : "METHOD_INVOCATION_RECEIVER", "secondParentType" : "METHOD_INVOCATION_RECEIVER", "firstPos" : 9962, - "secondPos" : 2331, + "secondPos" : 2295, "firstEndPos" : 9976, - "secondEndPos" : 2337 + "secondEndPos" : 2309 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", "firstLabel" : "getSimpleName", - "secondLabel" : "toGenericString", + "secondLabel" : "getSimpleName", "firstParentType" : "MethodInvocation", "secondParentType" : "MethodInvocation", "firstPos" : 9977, - "secondPos" : 2338, + "secondPos" : 2310, "firstEndPos" : 9990, - "secondEndPos" : 2353 + "secondEndPos" : 2323 }, { "firstType" : "ThrowStatement", "secondType" : "ThrowStatement", diff --git a/src/test/resources/astDiff/PREV-SNAPSHOT/commits/spring-projects_spring-boot/20d39f7af2165c67d5221f556f58820c992d2cc6/spring-boot.src.main.java.org.springframework.boot.cloudfoundry.VcapApplicationListener.json b/src/test/resources/astDiff/PREV-SNAPSHOT/commits/spring-projects_spring-boot/20d39f7af2165c67d5221f556f58820c992d2cc6/spring-boot.src.main.java.org.springframework.boot.cloudfoundry.VcapApplicationListener.json new file mode 100644 index 0000000000..a10984bca3 --- /dev/null +++ b/src/test/resources/astDiff/PREV-SNAPSHOT/commits/spring-projects_spring-boot/20d39f7af2165c67d5221f556f58820c992d2cc6/spring-boot.src.main.java.org.springframework.boot.cloudfoundry.VcapApplicationListener.json @@ -0,0 +1,9505 @@ +[ { + "firstType" : "CompilationUnit", + "secondType" : "CompilationUnit", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "", + "secondParentType" : "", + "firstPos" : 0, + "secondPos" : 0, + "firstEndPos" : 8988, + "secondEndPos" : 9001 +}, { + "firstType" : "BlockComment", + "secondType" : "BlockComment", + "firstLabel" : "/*\n * Copyright 2010-2015 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */", + "secondLabel" : "/*\n * Copyright 2010-2015 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 0, + "secondPos" : 0, + "firstEndPos" : 620, + "secondEndPos" : 620 +}, { + "firstType" : "PackageDeclaration", + "secondType" : "PackageDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 622, + "secondPos" : 622, + "firstEndPos" : 668, + "secondEndPos" : 668 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.boot.cloudfoundry", + "secondLabel" : "org.springframework.boot.cloudfoundry", + "firstParentType" : "PackageDeclaration", + "secondParentType" : "PackageDeclaration", + "firstPos" : 630, + "secondPos" : 630, + "firstEndPos" : 667, + "secondEndPos" : 667 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 670, + "secondPos" : 670, + "firstEndPos" : 698, + "secondEndPos" : 698 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "java.util.Collection", + "secondLabel" : "java.util.Collection", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 677, + "secondPos" : 677, + "firstEndPos" : 697, + "secondEndPos" : 697 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 699, + "secondPos" : 699, + "firstEndPos" : 728, + "secondEndPos" : 728 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "java.util.Collections", + "secondLabel" : "java.util.Collections", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 706, + "secondPos" : 706, + "firstEndPos" : 727, + "secondEndPos" : 727 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 729, + "secondPos" : 729, + "firstEndPos" : 751, + "secondEndPos" : 751 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "java.util.List", + "secondLabel" : "java.util.List", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 736, + "secondPos" : 736, + "firstEndPos" : 750, + "secondEndPos" : 750 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 752, + "secondPos" : 752, + "firstEndPos" : 773, + "secondEndPos" : 773 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "java.util.Map", + "secondLabel" : "java.util.Map", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 759, + "secondPos" : 759, + "firstEndPos" : 772, + "secondEndPos" : 772 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 774, + "secondPos" : 774, + "firstEndPos" : 801, + "secondEndPos" : 801 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "java.util.Map.Entry", + "secondLabel" : "java.util.Map.Entry", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 781, + "secondPos" : 781, + "firstEndPos" : 800, + "secondEndPos" : 800 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 802, + "secondPos" : 802, + "firstEndPos" : 830, + "secondEndPos" : 830 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "java.util.Properties", + "secondLabel" : "java.util.Properties", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 809, + "secondPos" : 809, + "firstEndPos" : 829, + "secondEndPos" : 829 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 832, + "secondPos" : 832, + "firstEndPos" : 870, + "secondEndPos" : 870 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.apache.commons.logging.Log", + "secondLabel" : "org.apache.commons.logging.Log", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 839, + "secondPos" : 839, + "firstEndPos" : 869, + "secondEndPos" : 869 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 871, + "secondPos" : 871, + "firstEndPos" : 916, + "secondEndPos" : 916 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.apache.commons.logging.LogFactory", + "secondLabel" : "org.apache.commons.logging.LogFactory", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 878, + "secondPos" : 878, + "firstEndPos" : 915, + "secondEndPos" : 915 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 917, + "secondPos" : 917, + "firstEndPos" : 994, + "secondEndPos" : 994 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.boot.context.config.ConfigFileApplicationListener", + "secondLabel" : "org.springframework.boot.context.config.ConfigFileApplicationListener", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 924, + "secondPos" : 924, + "firstEndPos" : 993, + "secondEndPos" : 993 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 995, + "secondPos" : 995, + "firstEndPos" : 1077, + "secondEndPos" : 1077 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent", + "secondLabel" : "org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 1002, + "secondPos" : 1002, + "firstEndPos" : 1076, + "secondEndPos" : 1076 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 1078, + "secondPos" : 1078, + "firstEndPos" : 1126, + "secondEndPos" : 1126 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.boot.json.JsonParser", + "secondLabel" : "org.springframework.boot.json.JsonParser", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 1085, + "secondPos" : 1085, + "firstEndPos" : 1125, + "secondEndPos" : 1125 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 1127, + "secondPos" : 1127, + "firstEndPos" : 1182, + "secondEndPos" : 1182 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.boot.json.JsonParserFactory", + "secondLabel" : "org.springframework.boot.json.JsonParserFactory", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 1134, + "secondPos" : 1134, + "firstEndPos" : 1181, + "secondEndPos" : 1181 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 1183, + "secondPos" : 1183, + "firstEndPos" : 1238, + "secondEndPos" : 1238 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.context.ApplicationListener", + "secondLabel" : "org.springframework.context.ApplicationListener", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 1190, + "secondPos" : 1190, + "firstEndPos" : 1237, + "secondEndPos" : 1237 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 1239, + "secondPos" : 1239, + "firstEndPos" : 1279, + "secondEndPos" : 1279 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.core.Ordered", + "secondLabel" : "org.springframework.core.Ordered", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 1246, + "secondPos" : 1246, + "firstEndPos" : 1278, + "secondEndPos" : 1278 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 1280, + "secondPos" : 1280, + "firstEndPos" : 1342, + "secondEndPos" : 1342 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.core.env.CommandLinePropertySource", + "secondLabel" : "org.springframework.core.env.CommandLinePropertySource", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 1287, + "secondPos" : 1287, + "firstEndPos" : 1341, + "secondEndPos" : 1341 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 1343, + "secondPos" : 1343, + "firstEndPos" : 1403, + "secondEndPos" : 1403 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.core.env.ConfigurableEnvironment", + "secondLabel" : "org.springframework.core.env.ConfigurableEnvironment", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 1350, + "secondPos" : 1350, + "firstEndPos" : 1402, + "secondEndPos" : 1402 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 1404, + "secondPos" : 1404, + "firstEndPos" : 1452, + "secondEndPos" : 1452 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.core.env.Environment", + "secondLabel" : "org.springframework.core.env.Environment", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 1411, + "secondPos" : 1411, + "firstEndPos" : 1451, + "secondEndPos" : 1451 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 1453, + "secondPos" : 1453, + "firstEndPos" : 1512, + "secondEndPos" : 1512 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.core.env.MutablePropertySources", + "secondLabel" : "org.springframework.core.env.MutablePropertySources", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 1460, + "secondPos" : 1460, + "firstEndPos" : 1511, + "secondEndPos" : 1511 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 1513, + "secondPos" : 1513, + "firstEndPos" : 1574, + "secondEndPos" : 1574 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.core.env.PropertiesPropertySource", + "secondLabel" : "org.springframework.core.env.PropertiesPropertySource", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 1520, + "secondPos" : 1520, + "firstEndPos" : 1573, + "secondEndPos" : 1573 +}, { + "firstType" : "ImportDeclaration", + "secondType" : "ImportDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 1575, + "secondPos" : 1575, + "firstEndPos" : 1619, + "secondEndPos" : 1619 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "org.springframework.util.StringUtils", + "secondLabel" : "org.springframework.util.StringUtils", + "firstParentType" : "ImportDeclaration", + "secondParentType" : "ImportDeclaration", + "firstPos" : 1582, + "secondPos" : 1582, + "firstEndPos" : 1618, + "secondEndPos" : 1618 +}, { + "firstType" : "TypeDeclaration", + "secondType" : "TypeDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 1621, + "secondPos" : 1621, + "firstEndPos" : 8987, + "secondEndPos" : 9000 +}, { + "firstType" : "Javadoc", + "secondType" : "Javadoc", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 1621, + "secondPos" : 1621, + "firstEndPos" : 4316, + "secondEndPos" : 4316 +}, { + "firstType" : "TagElement", + "secondType" : "TagElement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Javadoc", + "secondParentType" : "Javadoc", + "firstPos" : 1628, + "secondPos" : 1628, + "firstEndPos" : 4288, + "secondEndPos" : 4288 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "An ", + "secondLabel" : "An ", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1628, + "secondPos" : 1628, + "firstEndPos" : 1631, + "secondEndPos" : 1631 +}, { + "firstType" : "TagElement", + "secondType" : "TagElement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1631, + "secondPos" : 1631, + "firstEndPos" : 1658, + "secondEndPos" : 1658 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1631, + "secondPos" : 1631, + "firstEndPos" : 1636, + "secondEndPos" : 1636 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "ApplicationListener", + "secondLabel" : "ApplicationListener", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1638, + "secondPos" : 1638, + "firstEndPos" : 1657, + "secondEndPos" : 1657 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : " that knows where to find VCAP (a.k.a. Cloud Foundry)", + "secondLabel" : " that knows where to find VCAP (a.k.a. Cloud Foundry)", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1658, + "secondPos" : 1658, + "firstEndPos" : 1711, + "secondEndPos" : 1711 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "meta data in the existing environment. It parses out the VCAP_APPLICATION and", + "secondLabel" : "meta data in the existing environment. It parses out the VCAP_APPLICATION and", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1715, + "secondPos" : 1715, + "firstEndPos" : 1792, + "secondEndPos" : 1792 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "VCAP_SERVICES meta data and dumps it in a form that is easily consumed by", + "secondLabel" : "VCAP_SERVICES meta data and dumps it in a form that is easily consumed by", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1796, + "secondPos" : 1796, + "firstEndPos" : 1869, + "secondEndPos" : 1869 +}, { + "firstType" : "TagElement", + "secondType" : "TagElement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1873, + "secondPos" : 1873, + "firstEndPos" : 1892, + "secondEndPos" : 1892 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1873, + "secondPos" : 1873, + "firstEndPos" : 1878, + "secondEndPos" : 1878 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Environment", + "secondLabel" : "Environment", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1880, + "secondPos" : 1880, + "firstEndPos" : 1891, + "secondEndPos" : 1891 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : " users. If the app is running in Cloud Foundry then both meta data", + "secondLabel" : " users. If the app is running in Cloud Foundry then both meta data", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1892, + "secondPos" : 1892, + "firstEndPos" : 1958, + "secondEndPos" : 1958 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "items are JSON objects encoded in OS environment variables. VCAP_APPLICATION is a", + "secondLabel" : "items are JSON objects encoded in OS environment variables. VCAP_APPLICATION is a", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1962, + "secondPos" : 1962, + "firstEndPos" : 2043, + "secondEndPos" : 2043 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "shallow hash with basic information about the application (name, instance id, instance", + "secondLabel" : "shallow hash with basic information about the application (name, instance id, instance", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 2047, + "secondPos" : 2047, + "firstEndPos" : 2133, + "secondEndPos" : 2133 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "index, etc.), and VCAP_SERVICES is a hash of lists where the keys are service labels", + "secondLabel" : "index, etc.), and VCAP_SERVICES is a hash of lists where the keys are service labels", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 2137, + "secondPos" : 2137, + "firstEndPos" : 2221, + "secondEndPos" : 2221 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "and the values are lists of hashes of service instance meta data. Examples are:", + "secondLabel" : "and the values are lists of hashes of service instance meta data. Examples are:", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 2225, + "secondPos" : 2225, + "firstEndPos" : 2304, + "secondEndPos" : 2304 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "

",
+  "secondLabel" : "
",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 2311,
+  "secondPos" : 2311,
+  "firstEndPos" : 2329,
+  "secondEndPos" : 2329
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "VCAP_APPLICATION: {\"instance_id\":\"2ce0ac627a6c8e47e936d829a3a47b5b\",\"instance_index\":0,",
+  "secondLabel" : "VCAP_APPLICATION: {\"instance_id\":\"2ce0ac627a6c8e47e936d829a3a47b5b\",\"instance_index\":0,",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 2333,
+  "secondPos" : 2333,
+  "firstEndPos" : 2420,
+  "secondEndPos" : 2420
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "\"version\":\"0138c4a6-2a73-416b-aca0-572c09f7ca53\",\"name\":\"foo\",",
+  "secondLabel" : "\"version\":\"0138c4a6-2a73-416b-aca0-572c09f7ca53\",\"name\":\"foo\",",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 2426,
+  "secondPos" : 2426,
+  "firstEndPos" : 2488,
+  "secondEndPos" : 2488
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "\"uris\":[\"foo.cfapps.io\"], ...}",
+  "secondLabel" : "\"uris\":[\"foo.cfapps.io\"], ...}",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 2494,
+  "secondPos" : 2494,
+  "firstEndPos" : 2524,
+  "secondEndPos" : 2524
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "VCAP_SERVICES: {\"rds-mysql-1.0\":[{\"name\":\"mysql\",\"label\":\"rds-mysql-1.0\",\"plan\":\"10mb\",",
+  "secondLabel" : "VCAP_SERVICES: {\"rds-mysql-1.0\":[{\"name\":\"mysql\",\"label\":\"rds-mysql-1.0\",\"plan\":\"10mb\",",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 2528,
+  "secondPos" : 2528,
+  "firstEndPos" : 2615,
+  "secondEndPos" : 2615
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "\"credentials\":{\"name\":\"d04fb13d27d964c62b267bbba1cffb9da\",\"hostname\":\"mysql-service-public.clqg2e2w3ecf.us-east-1.rds.amazonaws.com\",",
+  "secondLabel" : "\"credentials\":{\"name\":\"d04fb13d27d964c62b267bbba1cffb9da\",\"hostname\":\"mysql-service-public.clqg2e2w3ecf.us-east-1.rds.amazonaws.com\",",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 2621,
+  "secondPos" : 2621,
+  "firstEndPos" : 2754,
+  "secondEndPos" : 2754
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "\"host\":\"mysql-service-public.clqg2e2w3ecf.us-east-1.rds.amazonaws.com\",\"port\":3306,\"user\":\"urpRuqTf8Cpe6\",",
+  "secondLabel" : "\"host\":\"mysql-service-public.clqg2e2w3ecf.us-east-1.rds.amazonaws.com\",\"port\":3306,\"user\":\"urpRuqTf8Cpe6\",",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 2760,
+  "secondPos" : 2760,
+  "firstEndPos" : 2866,
+  "secondEndPos" : 2866
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "\"username\":\"urpRuqTf8Cpe6\",\"password\":\"pxLsGVpsC9A5S\"}",
+  "secondLabel" : "\"username\":\"urpRuqTf8Cpe6\",\"password\":\"pxLsGVpsC9A5S\"}",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 2872,
+  "secondPos" : 2872,
+  "firstEndPos" : 2926,
+  "secondEndPos" : 2926
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "}]}",
+  "secondLabel" : "}]}",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 2930,
+  "secondPos" : 2930,
+  "firstEndPos" : 2933,
+  "secondEndPos" : 2933
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "
", + "secondLabel" : "
", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 2937, + "secondPos" : 2937, + "firstEndPos" : 2943, + "secondEndPos" : 2943 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "These objects are flattened into properties. The VCAP_APPLICATION object goes straight", + "secondLabel" : "These objects are flattened into properties. The VCAP_APPLICATION object goes straight", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 2950, + "secondPos" : 2950, + "firstEndPos" : 3036, + "secondEndPos" : 3036 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "to vcap.application.* in a fairly obvious way, and the VCAP_SERVICES", + "secondLabel" : "to vcap.application.* in a fairly obvious way, and the VCAP_SERVICES", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 3040, + "secondPos" : 3040, + "firstEndPos" : 3121, + "secondEndPos" : 3121 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "object is unwrapped so that it is a hash of objects with key equal to the service", + "secondLabel" : "object is unwrapped so that it is a hash of objects with key equal to the service", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 3125, + "secondPos" : 3125, + "firstEndPos" : 3206, + "secondEndPos" : 3206 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "instance name (e.g. \"mysql\" in the example above), and value equal to that instances", + "secondLabel" : "instance name (e.g. \"mysql\" in the example above), and value equal to that instances", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 3210, + "secondPos" : 3210, + "firstEndPos" : 3294, + "secondEndPos" : 3294 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "properties, and then flattened in the same way. E.g.", + "secondLabel" : "properties, and then flattened in the same way. E.g.", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 3298, + "secondPos" : 3298, + "firstEndPos" : 3350, + "secondEndPos" : 3350 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "
",
+  "secondLabel" : "
",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 3357,
+  "secondPos" : 3357,
+  "firstEndPos" : 3375,
+  "secondEndPos" : 3375
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "vcap.application.instance_id: 2ce0ac627a6c8e47e936d829a3a47b5b",
+  "secondLabel" : "vcap.application.instance_id: 2ce0ac627a6c8e47e936d829a3a47b5b",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 3379,
+  "secondPos" : 3379,
+  "firstEndPos" : 3441,
+  "secondEndPos" : 3441
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "vcap.application.version: 0138c4a6-2a73-416b-aca0-572c09f7ca53",
+  "secondLabel" : "vcap.application.version: 0138c4a6-2a73-416b-aca0-572c09f7ca53",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 3445,
+  "secondPos" : 3445,
+  "firstEndPos" : 3507,
+  "secondEndPos" : 3507
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "vcap.application.name: foo",
+  "secondLabel" : "vcap.application.name: foo",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 3511,
+  "secondPos" : 3511,
+  "firstEndPos" : 3537,
+  "secondEndPos" : 3537
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "vcap.application.uris[0]: foo.cfapps.io",
+  "secondLabel" : "vcap.application.uris[0]: foo.cfapps.io",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 3541,
+  "secondPos" : 3541,
+  "firstEndPos" : 3580,
+  "secondEndPos" : 3580
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "vcap.services.mysql.name: mysql",
+  "secondLabel" : "vcap.services.mysql.name: mysql",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 3587,
+  "secondPos" : 3587,
+  "firstEndPos" : 3618,
+  "secondEndPos" : 3618
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "vcap.services.mysql.label: rds-mysql-1.0",
+  "secondLabel" : "vcap.services.mysql.label: rds-mysql-1.0",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 3622,
+  "secondPos" : 3622,
+  "firstEndPos" : 3662,
+  "secondEndPos" : 3662
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "vcap.services.mysql.credentials.name: d04fb13d27d964c62b267bbba1cffb9da",
+  "secondLabel" : "vcap.services.mysql.credentials.name: d04fb13d27d964c62b267bbba1cffb9da",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 3666,
+  "secondPos" : 3666,
+  "firstEndPos" : 3737,
+  "secondEndPos" : 3737
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "vcap.services.mysql.credentials.port: 3306",
+  "secondLabel" : "vcap.services.mysql.credentials.port: 3306",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 3741,
+  "secondPos" : 3741,
+  "firstEndPos" : 3783,
+  "secondEndPos" : 3783
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "vcap.services.mysql.credentials.host: mysql-service-public.clqg2e2w3ecf.us-east-1.rds.amazonaws.com",
+  "secondLabel" : "vcap.services.mysql.credentials.host: mysql-service-public.clqg2e2w3ecf.us-east-1.rds.amazonaws.com",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 3787,
+  "secondPos" : 3787,
+  "firstEndPos" : 3886,
+  "secondEndPos" : 3886
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "vcap.services.mysql.credentials.username: urpRuqTf8Cpe6",
+  "secondLabel" : "vcap.services.mysql.credentials.username: urpRuqTf8Cpe6",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 3890,
+  "secondPos" : 3890,
+  "firstEndPos" : 3945,
+  "secondEndPos" : 3945
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "vcap.services.mysql.credentials.password: pxLsGVpsC9A5S",
+  "secondLabel" : "vcap.services.mysql.credentials.password: pxLsGVpsC9A5S",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 3949,
+  "secondPos" : 3949,
+  "firstEndPos" : 4004,
+  "secondEndPos" : 4004
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "...",
+  "secondLabel" : "...",
+  "firstParentType" : "TagElement",
+  "secondParentType" : "TagElement",
+  "firstPos" : 4008,
+  "secondPos" : 4008,
+  "firstEndPos" : 4011,
+  "secondEndPos" : 4011
+}, {
+  "firstType" : "TextElement",
+  "secondType" : "TextElement",
+  "firstLabel" : "
", + "secondLabel" : "
", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 4015, + "secondPos" : 4015, + "firstEndPos" : 4021, + "secondEndPos" : 4021 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "N.B. this initializer is mainly intended for informational use (the application and", + "secondLabel" : "N.B. this initializer is mainly intended for informational use (the application and", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 4028, + "secondPos" : 4028, + "firstEndPos" : 4111, + "secondEndPos" : 4111 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "instance ids are particularly useful). For service binding you might find that Spring", + "secondLabel" : "instance ids are particularly useful). For service binding you might find that Spring", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 4115, + "secondPos" : 4115, + "firstEndPos" : 4200, + "secondEndPos" : 4200 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "Cloud is more convenient and more robust against potential changes in Cloud Foundry.", + "secondLabel" : "Cloud is more convenient and more robust against potential changes in Cloud Foundry.", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 4204, + "secondPos" : 4204, + "firstEndPos" : 4288, + "secondEndPos" : 4288 +}, { + "firstType" : "TagElement", + "secondType" : "TagElement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Javadoc", + "secondParentType" : "Javadoc", + "firstPos" : 4295, + "secondPos" : 4295, + "firstEndPos" : 4312, + "secondEndPos" : 4312 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@author", + "secondLabel" : "@author", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 4295, + "secondPos" : 4295, + "firstEndPos" : 4302, + "secondEndPos" : 4302 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : " Dave Syer", + "secondLabel" : " Dave Syer", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 4302, + "secondPos" : 4302, + "firstEndPos" : 4312, + "secondEndPos" : 4312 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "public", + "secondLabel" : "public", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4317, + "secondPos" : 4317, + "firstEndPos" : 4323, + "secondEndPos" : 4323 +}, { + "firstType" : "TYPE_DECLARATION_KIND", + "secondType" : "TYPE_DECLARATION_KIND", + "firstLabel" : "class", + "secondLabel" : "class", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4324, + "secondPos" : 4324, + "firstEndPos" : 4329, + "secondEndPos" : 4329 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "VcapApplicationListener", + "secondLabel" : "VcapApplicationListener", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4330, + "secondPos" : 4330, + "firstEndPos" : 4353, + "secondEndPos" : 4353 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4367, + "secondPos" : 4367, + "firstEndPos" : 4423, + "secondEndPos" : 4423 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "ApplicationListener", + "secondLabel" : "ApplicationListener", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 4367, + "secondPos" : 4367, + "firstEndPos" : 4386, + "secondEndPos" : 4386 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 4367, + "secondPos" : 4367, + "firstEndPos" : 4386, + "secondEndPos" : 4386 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "ApplicationEnvironmentPreparedEvent", + "secondLabel" : "ApplicationEnvironmentPreparedEvent", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 4387, + "secondPos" : 4387, + "firstEndPos" : 4422, + "secondEndPos" : 4422 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 4387, + "secondPos" : 4387, + "firstEndPos" : 4422, + "secondEndPos" : 4422 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Ordered", + "secondLabel" : "Ordered", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 4425, + "secondPos" : 4425, + "firstEndPos" : 4432, + "secondEndPos" : 4432 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4425, + "secondPos" : 4425, + "firstEndPos" : 4432, + "secondEndPos" : 4432 +}, { + "firstType" : "FieldDeclaration", + "secondType" : "FieldDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4437, + "secondPos" : 4437, + "firstEndPos" : 4520, + "secondEndPos" : 4520 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "private", + "secondLabel" : "private", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4437, + "secondPos" : 4437, + "firstEndPos" : 4444, + "secondEndPos" : 4444 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "static", + "secondLabel" : "static", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4445, + "secondPos" : 4445, + "firstEndPos" : 4451, + "secondEndPos" : 4451 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "final", + "secondLabel" : "final", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4452, + "secondPos" : 4452, + "firstEndPos" : 4457, + "secondEndPos" : 4457 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Log", + "secondLabel" : "Log", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 4458, + "secondPos" : 4458, + "firstEndPos" : 4461, + "secondEndPos" : 4461 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4458, + "secondPos" : 4458, + "firstEndPos" : 4461, + "secondEndPos" : 4461 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4462, + "secondPos" : 4462, + "firstEndPos" : 4519, + "secondEndPos" : 4519 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "logger", + "secondLabel" : "logger", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 4462, + "secondPos" : 4462, + "firstEndPos" : 4468, + "secondEndPos" : 4468 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 4471, + "secondPos" : 4471, + "firstEndPos" : 4519, + "secondEndPos" : 4519 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 4471, + "secondPos" : 4471, + "firstEndPos" : 4481, + "secondEndPos" : 4481 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "LogFactory", + "secondLabel" : "LogFactory", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 4471, + "secondPos" : 4471, + "firstEndPos" : 4481, + "secondEndPos" : 4481 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getLog", + "secondLabel" : "getLog", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 4482, + "secondPos" : 4482, + "firstEndPos" : 4488, + "secondEndPos" : 4488 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 4489, + "secondPos" : 4489, + "firstEndPos" : 4518, + "secondEndPos" : 4518 +}, { + "firstType" : "TypeLiteral", + "secondType" : "TypeLiteral", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 4489, + "secondPos" : 4489, + "firstEndPos" : 4518, + "secondEndPos" : 4518 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "VcapApplicationListener", + "secondLabel" : "VcapApplicationListener", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 4489, + "secondPos" : 4489, + "firstEndPos" : 4512, + "secondEndPos" : 4512 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeLiteral", + "secondParentType" : "TypeLiteral", + "firstPos" : 4489, + "secondPos" : 4489, + "firstEndPos" : 4512, + "secondEndPos" : 4512 +}, { + "firstType" : "FieldDeclaration", + "secondType" : "FieldDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4523, + "secondPos" : 4523, + "firstEndPos" : 4589, + "secondEndPos" : 4589 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "private", + "secondLabel" : "private", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4523, + "secondPos" : 4523, + "firstEndPos" : 4530, + "secondEndPos" : 4530 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "static", + "secondLabel" : "static", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4531, + "secondPos" : 4531, + "firstEndPos" : 4537, + "secondEndPos" : 4537 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "final", + "secondLabel" : "final", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4538, + "secondPos" : 4538, + "firstEndPos" : 4543, + "secondEndPos" : 4543 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 4544, + "secondPos" : 4544, + "firstEndPos" : 4550, + "secondEndPos" : 4550 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4544, + "secondPos" : 4544, + "firstEndPos" : 4550, + "secondEndPos" : 4550 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4551, + "secondPos" : 4551, + "firstEndPos" : 4588, + "secondEndPos" : 4588 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "VCAP_APPLICATION", + "secondLabel" : "VCAP_APPLICATION", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 4551, + "secondPos" : 4551, + "firstEndPos" : 4567, + "secondEndPos" : 4567 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"VCAP_APPLICATION\"", + "secondLabel" : "\"VCAP_APPLICATION\"", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 4570, + "secondPos" : 4570, + "firstEndPos" : 4588, + "secondEndPos" : 4588 +}, { + "firstType" : "FieldDeclaration", + "secondType" : "FieldDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4592, + "secondPos" : 4592, + "firstEndPos" : 4652, + "secondEndPos" : 4652 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "private", + "secondLabel" : "private", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4592, + "secondPos" : 4592, + "firstEndPos" : 4599, + "secondEndPos" : 4599 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "static", + "secondLabel" : "static", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4600, + "secondPos" : 4600, + "firstEndPos" : 4606, + "secondEndPos" : 4606 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "final", + "secondLabel" : "final", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4607, + "secondPos" : 4607, + "firstEndPos" : 4612, + "secondEndPos" : 4612 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 4613, + "secondPos" : 4613, + "firstEndPos" : 4619, + "secondEndPos" : 4619 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4613, + "secondPos" : 4613, + "firstEndPos" : 4619, + "secondEndPos" : 4619 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4620, + "secondPos" : 4620, + "firstEndPos" : 4651, + "secondEndPos" : 4651 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "VCAP_SERVICES", + "secondLabel" : "VCAP_SERVICES", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 4620, + "secondPos" : 4620, + "firstEndPos" : 4633, + "secondEndPos" : 4633 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"VCAP_SERVICES\"", + "secondLabel" : "\"VCAP_SERVICES\"", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 4636, + "secondPos" : 4636, + "firstEndPos" : 4651, + "secondEndPos" : 4651 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Before ConfigFileApplicationListener so values there can use these ones", + "secondLabel" : "// Before ConfigFileApplicationListener so values there can use these ones", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4655, + "secondPos" : 4655, + "firstEndPos" : 4729, + "secondEndPos" : 4729 +}, { + "firstType" : "FieldDeclaration", + "secondType" : "FieldDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4731, + "secondPos" : 4731, + "firstEndPos" : 4799, + "secondEndPos" : 4799 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "private", + "secondLabel" : "private", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4731, + "secondPos" : 4731, + "firstEndPos" : 4738, + "secondEndPos" : 4738 +}, { + "firstType" : "PrimitiveType", + "secondType" : "PrimitiveType", + "firstLabel" : "int", + "secondLabel" : "int", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4739, + "secondPos" : 4739, + "firstEndPos" : 4742, + "secondEndPos" : 4742 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4743, + "secondPos" : 4743, + "firstEndPos" : 4798, + "secondEndPos" : 4798 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "order", + "secondLabel" : "order", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 4743, + "secondPos" : 4743, + "firstEndPos" : 4748, + "secondEndPos" : 4748 +}, { + "firstType" : "InfixExpression", + "secondType" : "InfixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 4751, + "secondPos" : 4751, + "firstEndPos" : 4798, + "secondEndPos" : 4798 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "ConfigFileApplicationListener.DEFAULT_ORDER", + "secondLabel" : "ConfigFileApplicationListener.DEFAULT_ORDER", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 4751, + "secondPos" : 4751, + "firstEndPos" : 4794, + "secondEndPos" : 4794 +}, { + "firstType" : "INFIX_EXPRESSION_OPERATOR", + "secondType" : "INFIX_EXPRESSION_OPERATOR", + "firstLabel" : "-", + "secondLabel" : "-", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 4795, + "secondPos" : 4795, + "firstEndPos" : 4796, + "secondEndPos" : 4796 +}, { + "firstType" : "NumberLiteral", + "secondType" : "NumberLiteral", + "firstLabel" : "1", + "secondLabel" : "1", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 4797, + "secondPos" : 4797, + "firstEndPos" : 4798, + "secondEndPos" : 4798 +}, { + "firstType" : "FieldDeclaration", + "secondType" : "FieldDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4802, + "secondPos" : 4802, + "firstEndPos" : 4870, + "secondEndPos" : 4870 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "private", + "secondLabel" : "private", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4802, + "secondPos" : 4802, + "firstEndPos" : 4809, + "secondEndPos" : 4809 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "final", + "secondLabel" : "final", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4810, + "secondPos" : 4810, + "firstEndPos" : 4815, + "secondEndPos" : 4815 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "JsonParser", + "secondLabel" : "JsonParser", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 4816, + "secondPos" : 4816, + "firstEndPos" : 4826, + "secondEndPos" : 4826 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4816, + "secondPos" : 4816, + "firstEndPos" : 4826, + "secondEndPos" : 4826 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldDeclaration", + "secondParentType" : "FieldDeclaration", + "firstPos" : 4827, + "secondPos" : 4827, + "firstEndPos" : 4869, + "secondEndPos" : 4869 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "parser", + "secondLabel" : "parser", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 4827, + "secondPos" : 4827, + "firstEndPos" : 4833, + "secondEndPos" : 4833 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 4836, + "secondPos" : 4836, + "firstEndPos" : 4869, + "secondEndPos" : 4869 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 4836, + "secondPos" : 4836, + "firstEndPos" : 4853, + "secondEndPos" : 4853 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "JsonParserFactory", + "secondLabel" : "JsonParserFactory", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 4836, + "secondPos" : 4836, + "firstEndPos" : 4853, + "secondEndPos" : 4853 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getJsonParser", + "secondLabel" : "getJsonParser", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 4854, + "secondPos" : 4854, + "firstEndPos" : 4867, + "secondEndPos" : 4867 +}, { + "firstType" : "MethodDeclaration", + "secondType" : "MethodDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4873, + "secondPos" : 4873, + "firstEndPos" : 4931, + "secondEndPos" : 4931 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "public", + "secondLabel" : "public", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 4873, + "secondPos" : 4873, + "firstEndPos" : 4879, + "secondEndPos" : 4879 +}, { + "firstType" : "PrimitiveType", + "secondType" : "PrimitiveType", + "firstLabel" : "void", + "secondLabel" : "void", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 4880, + "secondPos" : 4880, + "firstEndPos" : 4884, + "secondEndPos" : 4884 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "setOrder", + "secondLabel" : "setOrder", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 4885, + "secondPos" : 4885, + "firstEndPos" : 4893, + "secondEndPos" : 4893 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 4894, + "secondPos" : 4894, + "firstEndPos" : 4903, + "secondEndPos" : 4903 +}, { + "firstType" : "PrimitiveType", + "secondType" : "PrimitiveType", + "firstLabel" : "int", + "secondLabel" : "int", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 4894, + "secondPos" : 4894, + "firstEndPos" : 4897, + "secondEndPos" : 4897 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "order", + "secondLabel" : "order", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 4898, + "secondPos" : 4898, + "firstEndPos" : 4903, + "secondEndPos" : 4903 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 4905, + "secondPos" : 4905, + "firstEndPos" : 4931, + "secondEndPos" : 4931 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4909, + "secondPos" : 4909, + "firstEndPos" : 4928, + "secondEndPos" : 4928 +}, { + "firstType" : "Assignment", + "secondType" : "Assignment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 4909, + "secondPos" : 4909, + "firstEndPos" : 4927, + "secondEndPos" : 4927 +}, { + "firstType" : "FieldAccess", + "secondType" : "FieldAccess", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Assignment", + "secondParentType" : "Assignment", + "firstPos" : 4909, + "secondPos" : 4909, + "firstEndPos" : 4919, + "secondEndPos" : 4919 +}, { + "firstType" : "ThisExpression", + "secondType" : "ThisExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldAccess", + "secondParentType" : "FieldAccess", + "firstPos" : 4909, + "secondPos" : 4909, + "firstEndPos" : 4913, + "secondEndPos" : 4913 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "order", + "secondLabel" : "order", + "firstParentType" : "FieldAccess", + "secondParentType" : "FieldAccess", + "firstPos" : 4914, + "secondPos" : 4914, + "firstEndPos" : 4919, + "secondEndPos" : 4919 +}, { + "firstType" : "ASSIGNMENT_OPERATOR", + "secondType" : "ASSIGNMENT_OPERATOR", + "firstLabel" : "=", + "secondLabel" : "=", + "firstParentType" : "Assignment", + "secondParentType" : "Assignment", + "firstPos" : 4920, + "secondPos" : 4920, + "firstEndPos" : 4921, + "secondEndPos" : 4921 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "order", + "secondLabel" : "order", + "firstParentType" : "Assignment", + "secondParentType" : "Assignment", + "firstPos" : 4922, + "secondPos" : 4922, + "firstEndPos" : 4927, + "secondEndPos" : 4927 +}, { + "firstType" : "MethodDeclaration", + "secondType" : "MethodDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4934, + "secondPos" : 4934, + "firstEndPos" : 4992, + "secondEndPos" : 4992 +}, { + "firstType" : "MarkerAnnotation", + "secondType" : "MarkerAnnotation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 4934, + "secondPos" : 4934, + "firstEndPos" : 4943, + "secondEndPos" : 4943 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Override", + "secondLabel" : "Override", + "firstParentType" : "MarkerAnnotation", + "secondParentType" : "MarkerAnnotation", + "firstPos" : 4935, + "secondPos" : 4935, + "firstEndPos" : 4943, + "secondEndPos" : 4943 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "public", + "secondLabel" : "public", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 4945, + "secondPos" : 4945, + "firstEndPos" : 4951, + "secondEndPos" : 4951 +}, { + "firstType" : "PrimitiveType", + "secondType" : "PrimitiveType", + "firstLabel" : "int", + "secondLabel" : "int", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 4952, + "secondPos" : 4952, + "firstEndPos" : 4955, + "secondEndPos" : 4955 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getOrder", + "secondLabel" : "getOrder", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 4956, + "secondPos" : 4956, + "firstEndPos" : 4964, + "secondEndPos" : 4964 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 4967, + "secondPos" : 4967, + "firstEndPos" : 4992, + "secondEndPos" : 4992 +}, { + "firstType" : "ReturnStatement", + "secondType" : "ReturnStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4971, + "secondPos" : 4971, + "firstEndPos" : 4989, + "secondEndPos" : 4989 +}, { + "firstType" : "FieldAccess", + "secondType" : "FieldAccess", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ReturnStatement", + "secondParentType" : "ReturnStatement", + "firstPos" : 4978, + "secondPos" : 4978, + "firstEndPos" : 4988, + "secondEndPos" : 4988 +}, { + "firstType" : "ThisExpression", + "secondType" : "ThisExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldAccess", + "secondParentType" : "FieldAccess", + "firstPos" : 4978, + "secondPos" : 4978, + "firstEndPos" : 4982, + "secondEndPos" : 4982 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "order", + "secondLabel" : "order", + "firstParentType" : "FieldAccess", + "secondParentType" : "FieldAccess", + "firstPos" : 4983, + "secondPos" : 4983, + "firstEndPos" : 4988, + "secondEndPos" : 4988 +}, { + "firstType" : "MethodDeclaration", + "secondType" : "MethodDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 4995, + "secondPos" : 4995, + "firstEndPos" : 5928, + "secondEndPos" : 5928 +}, { + "firstType" : "MarkerAnnotation", + "secondType" : "MarkerAnnotation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 4995, + "secondPos" : 4995, + "firstEndPos" : 5004, + "secondEndPos" : 5004 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Override", + "secondLabel" : "Override", + "firstParentType" : "MarkerAnnotation", + "secondParentType" : "MarkerAnnotation", + "firstPos" : 4996, + "secondPos" : 4996, + "firstEndPos" : 5004, + "secondEndPos" : 5004 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "public", + "secondLabel" : "public", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 5006, + "secondPos" : 5006, + "firstEndPos" : 5012, + "secondEndPos" : 5012 +}, { + "firstType" : "PrimitiveType", + "secondType" : "PrimitiveType", + "firstLabel" : "void", + "secondLabel" : "void", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 5013, + "secondPos" : 5013, + "firstEndPos" : 5017, + "secondEndPos" : 5017 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "onApplicationEvent", + "secondLabel" : "onApplicationEvent", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 5018, + "secondPos" : 5018, + "firstEndPos" : 5036, + "secondEndPos" : 5036 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 5037, + "secondPos" : 5037, + "firstEndPos" : 5078, + "secondEndPos" : 5078 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "ApplicationEnvironmentPreparedEvent", + "secondLabel" : "ApplicationEnvironmentPreparedEvent", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 5037, + "secondPos" : 5037, + "firstEndPos" : 5072, + "secondEndPos" : 5072 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 5037, + "secondPos" : 5037, + "firstEndPos" : 5072, + "secondEndPos" : 5072 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "event", + "secondLabel" : "event", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 5073, + "secondPos" : 5073, + "firstEndPos" : 5078, + "secondEndPos" : 5078 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 5080, + "secondPos" : 5080, + "firstEndPos" : 5928, + "secondEndPos" : 5928 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5084, + "secondPos" : 5084, + "firstEndPos" : 5145, + "secondEndPos" : 5145 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "ConfigurableEnvironment", + "secondLabel" : "ConfigurableEnvironment", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 5084, + "secondPos" : 5084, + "firstEndPos" : 5107, + "secondEndPos" : 5107 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 5084, + "secondPos" : 5084, + "firstEndPos" : 5107, + "secondEndPos" : 5107 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 5108, + "secondPos" : 5108, + "firstEndPos" : 5144, + "secondEndPos" : 5144 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "environment", + "secondLabel" : "environment", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 5108, + "secondPos" : 5108, + "firstEndPos" : 5119, + "secondEndPos" : 5119 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 5122, + "secondPos" : 5122, + "firstEndPos" : 5144, + "secondEndPos" : 5144 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5122, + "secondPos" : 5122, + "firstEndPos" : 5127, + "secondEndPos" : 5127 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "event", + "secondLabel" : "event", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 5122, + "secondPos" : 5122, + "firstEndPos" : 5127, + "secondEndPos" : 5127 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getEnvironment", + "secondLabel" : "getEnvironment", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5128, + "secondPos" : 5128, + "firstEndPos" : 5142, + "secondEndPos" : 5142 +}, { + "firstType" : "IfStatement", + "secondType" : "IfStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5148, + "secondPos" : 5148, + "firstEndPos" : 5269, + "secondEndPos" : 5269 +}, { + "firstType" : "InfixExpression", + "secondType" : "InfixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 5152, + "secondPos" : 5152, + "firstEndPos" : 5251, + "secondEndPos" : 5251 +}, { + "firstType" : "PrefixExpression", + "secondType" : "PrefixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 5152, + "secondPos" : 5152, + "firstEndPos" : 5199, + "secondEndPos" : 5199 +}, { + "firstType" : "PREFIX_EXPRESSION_OPERATOR", + "secondType" : "PREFIX_EXPRESSION_OPERATOR", + "firstLabel" : "!", + "secondLabel" : "!", + "firstParentType" : "PrefixExpression", + "secondParentType" : "PrefixExpression", + "firstPos" : 5152, + "secondPos" : 5152, + "firstEndPos" : 5153, + "secondEndPos" : 5153 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "PrefixExpression", + "secondParentType" : "PrefixExpression", + "firstPos" : 5153, + "secondPos" : 5153, + "firstEndPos" : 5199, + "secondEndPos" : 5199 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5153, + "secondPos" : 5153, + "firstEndPos" : 5164, + "secondEndPos" : 5164 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "environment", + "secondLabel" : "environment", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 5153, + "secondPos" : 5153, + "firstEndPos" : 5164, + "secondEndPos" : 5164 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "containsProperty", + "secondLabel" : "containsProperty", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5165, + "secondPos" : 5165, + "firstEndPos" : 5181, + "secondEndPos" : 5181 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5182, + "secondPos" : 5182, + "firstEndPos" : 5198, + "secondEndPos" : 5198 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "VCAP_APPLICATION", + "secondLabel" : "VCAP_APPLICATION", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5182, + "secondPos" : 5182, + "firstEndPos" : 5198, + "secondEndPos" : 5198 +}, { + "firstType" : "INFIX_EXPRESSION_OPERATOR", + "secondType" : "INFIX_EXPRESSION_OPERATOR", + "firstLabel" : "&&", + "secondLabel" : "&&", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 5204, + "secondPos" : 5204, + "firstEndPos" : 5206, + "secondEndPos" : 5206 +}, { + "firstType" : "PrefixExpression", + "secondType" : "PrefixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 5207, + "secondPos" : 5207, + "firstEndPos" : 5251, + "secondEndPos" : 5251 +}, { + "firstType" : "PREFIX_EXPRESSION_OPERATOR", + "secondType" : "PREFIX_EXPRESSION_OPERATOR", + "firstLabel" : "!", + "secondLabel" : "!", + "firstParentType" : "PrefixExpression", + "secondParentType" : "PrefixExpression", + "firstPos" : 5207, + "secondPos" : 5207, + "firstEndPos" : 5208, + "secondEndPos" : 5208 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "PrefixExpression", + "secondParentType" : "PrefixExpression", + "firstPos" : 5208, + "secondPos" : 5208, + "firstEndPos" : 5251, + "secondEndPos" : 5251 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5208, + "secondPos" : 5208, + "firstEndPos" : 5219, + "secondEndPos" : 5219 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "environment", + "secondLabel" : "environment", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 5208, + "secondPos" : 5208, + "firstEndPos" : 5219, + "secondEndPos" : 5219 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "containsProperty", + "secondLabel" : "containsProperty", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5220, + "secondPos" : 5220, + "firstEndPos" : 5236, + "secondEndPos" : 5236 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5237, + "secondPos" : 5237, + "firstEndPos" : 5250, + "secondEndPos" : 5250 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "VCAP_SERVICES", + "secondLabel" : "VCAP_SERVICES", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5237, + "secondPos" : 5237, + "firstEndPos" : 5250, + "secondEndPos" : 5250 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 5253, + "secondPos" : 5253, + "firstEndPos" : 5269, + "secondEndPos" : 5269 +}, { + "firstType" : "ReturnStatement", + "secondType" : "ReturnStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5258, + "secondPos" : 5258, + "firstEndPos" : 5265, + "secondEndPos" : 5265 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5272, + "secondPos" : 5272, + "firstEndPos" : 5313, + "secondEndPos" : 5313 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 5272, + "secondPos" : 5272, + "firstEndPos" : 5282, + "secondEndPos" : 5282 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 5272, + "secondPos" : 5272, + "firstEndPos" : 5282, + "secondEndPos" : 5282 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 5283, + "secondPos" : 5283, + "firstEndPos" : 5312, + "secondEndPos" : 5312 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 5283, + "secondPos" : 5283, + "firstEndPos" : 5293, + "secondEndPos" : 5293 +}, { + "firstType" : "ClassInstanceCreation", + "secondType" : "ClassInstanceCreation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 5296, + "secondPos" : 5296, + "firstEndPos" : 5312, + "secondEndPos" : 5312 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 5300, + "secondPos" : 5300, + "firstEndPos" : 5310, + "secondEndPos" : 5310 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ClassInstanceCreation", + "secondParentType" : "ClassInstanceCreation", + "firstPos" : 5300, + "secondPos" : 5300, + "firstEndPos" : 5310, + "secondEndPos" : 5310 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5316, + "secondPos" : 5316, + "firstEndPos" : 5410, + "secondEndPos" : 5410 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 5316, + "secondPos" : 5316, + "firstEndPos" : 5409, + "secondEndPos" : 5409 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "addWithPrefix", + "secondLabel" : "addWithPrefix", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5316, + "secondPos" : 5316, + "firstEndPos" : 5329, + "secondEndPos" : 5329 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5330, + "secondPos" : 5330, + "firstEndPos" : 5408, + "secondEndPos" : 5408 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5330, + "secondPos" : 5330, + "firstEndPos" : 5340, + "secondEndPos" : 5340 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5342, + "secondPos" : 5342, + "firstEndPos" : 5383, + "secondEndPos" : 5383 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getPropertiesFromApplication", + "secondLabel" : "getPropertiesFromApplication", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5342, + "secondPos" : 5342, + "firstEndPos" : 5370, + "secondEndPos" : 5370 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5371, + "secondPos" : 5371, + "firstEndPos" : 5382, + "secondEndPos" : 5382 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "environment", + "secondLabel" : "environment", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5371, + "secondPos" : 5371, + "firstEndPos" : 5382, + "secondEndPos" : 5382 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"vcap.application.\"", + "secondLabel" : "\"vcap.application.\"", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5389, + "secondPos" : 5389, + "firstEndPos" : 5408, + "secondEndPos" : 5408 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5413, + "secondPos" : 5413, + "firstEndPos" : 5501, + "secondEndPos" : 5501 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 5413, + "secondPos" : 5413, + "firstEndPos" : 5500, + "secondEndPos" : 5500 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "addWithPrefix", + "secondLabel" : "addWithPrefix", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5413, + "secondPos" : 5413, + "firstEndPos" : 5426, + "secondEndPos" : 5426 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5427, + "secondPos" : 5427, + "firstEndPos" : 5499, + "secondEndPos" : 5499 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5427, + "secondPos" : 5427, + "firstEndPos" : 5437, + "secondEndPos" : 5437 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5439, + "secondPos" : 5439, + "firstEndPos" : 5477, + "secondEndPos" : 5477 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getPropertiesFromServices", + "secondLabel" : "getPropertiesFromServices", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5439, + "secondPos" : 5439, + "firstEndPos" : 5464, + "secondEndPos" : 5464 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5465, + "secondPos" : 5465, + "firstEndPos" : 5476, + "secondEndPos" : 5476 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "environment", + "secondLabel" : "environment", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5465, + "secondPos" : 5465, + "firstEndPos" : 5476, + "secondEndPos" : 5476 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"vcap.services.\"", + "secondLabel" : "\"vcap.services.\"", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5483, + "secondPos" : 5483, + "firstEndPos" : 5499, + "secondEndPos" : 5499 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5504, + "secondPos" : 5504, + "firstEndPos" : 5578, + "secondEndPos" : 5578 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "MutablePropertySources", + "secondLabel" : "MutablePropertySources", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 5504, + "secondPos" : 5504, + "firstEndPos" : 5526, + "secondEndPos" : 5526 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 5504, + "secondPos" : 5504, + "firstEndPos" : 5526, + "secondEndPos" : 5526 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 5527, + "secondPos" : 5527, + "firstEndPos" : 5577, + "secondEndPos" : 5577 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "propertySources", + "secondLabel" : "propertySources", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 5527, + "secondPos" : 5527, + "firstEndPos" : 5542, + "secondEndPos" : 5542 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 5545, + "secondPos" : 5545, + "firstEndPos" : 5577, + "secondEndPos" : 5577 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5545, + "secondPos" : 5545, + "firstEndPos" : 5556, + "secondEndPos" : 5556 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "environment", + "secondLabel" : "environment", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 5545, + "secondPos" : 5545, + "firstEndPos" : 5556, + "secondEndPos" : 5556 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getPropertySources", + "secondLabel" : "getPropertySources", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5557, + "secondPos" : 5557, + "firstEndPos" : 5575, + "secondEndPos" : 5575 +}, { + "firstType" : "IfStatement", + "secondType" : "IfStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5581, + "secondPos" : 5581, + "firstEndPos" : 5925, + "secondEndPos" : 5925 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 5585, + "secondPos" : 5585, + "firstEndPos" : 5675, + "secondEndPos" : 5675 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5585, + "secondPos" : 5585, + "firstEndPos" : 5600, + "secondEndPos" : 5600 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "propertySources", + "secondLabel" : "propertySources", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 5585, + "secondPos" : 5585, + "firstEndPos" : 5600, + "secondEndPos" : 5600 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "contains", + "secondLabel" : "contains", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5606, + "secondPos" : 5606, + "firstEndPos" : 5614, + "secondEndPos" : 5614 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5615, + "secondPos" : 5615, + "firstEndPos" : 5674, + "secondEndPos" : 5674 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "CommandLinePropertySource.COMMAND_LINE_PROPERTY_SOURCE_NAME", + "secondLabel" : "CommandLinePropertySource.COMMAND_LINE_PROPERTY_SOURCE_NAME", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5615, + "secondPos" : 5615, + "firstEndPos" : 5674, + "secondEndPos" : 5674 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 5677, + "secondPos" : 5677, + "firstEndPos" : 5833, + "secondEndPos" : 5833 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5682, + "secondPos" : 5682, + "firstEndPos" : 5829, + "secondEndPos" : 5829 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 5682, + "secondPos" : 5682, + "firstEndPos" : 5828, + "secondEndPos" : 5828 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5682, + "secondPos" : 5682, + "firstEndPos" : 5697, + "secondEndPos" : 5697 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "propertySources", + "secondLabel" : "propertySources", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 5682, + "secondPos" : 5682, + "firstEndPos" : 5697, + "secondEndPos" : 5697 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "addAfter", + "secondLabel" : "addAfter", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5698, + "secondPos" : 5698, + "firstEndPos" : 5706, + "secondEndPos" : 5706 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5713, + "secondPos" : 5713, + "firstEndPos" : 5827, + "secondEndPos" : 5827 +}, { + "firstType" : "QualifiedName", + "secondType" : "QualifiedName", + "firstLabel" : "CommandLinePropertySource.COMMAND_LINE_PROPERTY_SOURCE_NAME", + "secondLabel" : "CommandLinePropertySource.COMMAND_LINE_PROPERTY_SOURCE_NAME", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5713, + "secondPos" : 5713, + "firstEndPos" : 5772, + "secondEndPos" : 5772 +}, { + "firstType" : "ClassInstanceCreation", + "secondType" : "ClassInstanceCreation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5779, + "secondPos" : 5779, + "firstEndPos" : 5827, + "secondEndPos" : 5827 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "PropertiesPropertySource", + "secondLabel" : "PropertiesPropertySource", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 5783, + "secondPos" : 5783, + "firstEndPos" : 5807, + "secondEndPos" : 5807 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ClassInstanceCreation", + "secondParentType" : "ClassInstanceCreation", + "firstPos" : 5783, + "secondPos" : 5783, + "firstEndPos" : 5807, + "secondEndPos" : 5807 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"vcap\"", + "secondLabel" : "\"vcap\"", + "firstParentType" : "ClassInstanceCreation", + "secondParentType" : "ClassInstanceCreation", + "firstPos" : 5808, + "secondPos" : 5808, + "firstEndPos" : 5814, + "secondEndPos" : 5814 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "ClassInstanceCreation", + "secondParentType" : "ClassInstanceCreation", + "firstPos" : 5816, + "secondPos" : 5816, + "firstEndPos" : 5826, + "secondEndPos" : 5826 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 5841, + "secondPos" : 5841, + "firstEndPos" : 5925, + "secondEndPos" : 5925 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5846, + "secondPos" : 5846, + "firstEndPos" : 5921, + "secondEndPos" : 5921 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 5846, + "secondPos" : 5846, + "firstEndPos" : 5920, + "secondEndPos" : 5920 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5846, + "secondPos" : 5846, + "firstEndPos" : 5861, + "secondEndPos" : 5861 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "propertySources", + "secondLabel" : "propertySources", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 5846, + "secondPos" : 5846, + "firstEndPos" : 5861, + "secondEndPos" : 5861 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "addFirst", + "secondLabel" : "addFirst", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5862, + "secondPos" : 5862, + "firstEndPos" : 5870, + "secondEndPos" : 5870 +}, { + "firstType" : "ClassInstanceCreation", + "secondType" : "ClassInstanceCreation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 5871, + "secondPos" : 5871, + "firstEndPos" : 5919, + "secondEndPos" : 5919 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 5871, + "secondPos" : 5871, + "firstEndPos" : 5919, + "secondEndPos" : 5919 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "PropertiesPropertySource", + "secondLabel" : "PropertiesPropertySource", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 5875, + "secondPos" : 5875, + "firstEndPos" : 5899, + "secondEndPos" : 5899 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ClassInstanceCreation", + "secondParentType" : "ClassInstanceCreation", + "firstPos" : 5875, + "secondPos" : 5875, + "firstEndPos" : 5899, + "secondEndPos" : 5899 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"vcap\"", + "secondLabel" : "\"vcap\"", + "firstParentType" : "ClassInstanceCreation", + "secondParentType" : "ClassInstanceCreation", + "firstPos" : 5900, + "secondPos" : 5900, + "firstEndPos" : 5906, + "secondEndPos" : 5906 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "ClassInstanceCreation", + "secondParentType" : "ClassInstanceCreation", + "firstPos" : 5908, + "secondPos" : 5908, + "firstEndPos" : 5918, + "secondEndPos" : 5918 +}, { + "firstType" : "MethodDeclaration", + "secondType" : "MethodDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 5931, + "secondPos" : 5931, + "firstEndPos" : 6169, + "secondEndPos" : 6169 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "private", + "secondLabel" : "private", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 5931, + "secondPos" : 5931, + "firstEndPos" : 5938, + "secondEndPos" : 5938 +}, { + "firstType" : "PrimitiveType", + "secondType" : "PrimitiveType", + "firstLabel" : "void", + "secondLabel" : "void", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 5939, + "secondPos" : 5939, + "firstEndPos" : 5943, + "secondEndPos" : 5943 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "addWithPrefix", + "secondLabel" : "addWithPrefix", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 5944, + "secondPos" : 5944, + "firstEndPos" : 5957, + "secondEndPos" : 5957 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 5958, + "secondPos" : 5958, + "firstEndPos" : 5979, + "secondEndPos" : 5979 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 5958, + "secondPos" : 5958, + "firstEndPos" : 5968, + "secondEndPos" : 5968 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 5958, + "secondPos" : 5958, + "firstEndPos" : 5968, + "secondEndPos" : 5968 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 5969, + "secondPos" : 5969, + "firstEndPos" : 5979, + "secondEndPos" : 5979 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 5981, + "secondPos" : 5981, + "firstEndPos" : 5997, + "secondEndPos" : 5997 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 5981, + "secondPos" : 5981, + "firstEndPos" : 5991, + "secondEndPos" : 5991 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 5981, + "secondPos" : 5981, + "firstEndPos" : 5991, + "secondEndPos" : 5991 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "other", + "secondLabel" : "other", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 5992, + "secondPos" : 5992, + "firstEndPos" : 5997, + "secondEndPos" : 5997 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 5999, + "secondPos" : 5999, + "firstEndPos" : 6012, + "secondEndPos" : 6012 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 5999, + "secondPos" : 5999, + "firstEndPos" : 6005, + "secondEndPos" : 6005 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 5999, + "secondPos" : 5999, + "firstEndPos" : 6005, + "secondEndPos" : 6005 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "prefix", + "secondLabel" : "prefix", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 6006, + "secondPos" : 6006, + "firstEndPos" : 6012, + "secondEndPos" : 6012 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6014, + "secondPos" : 6014, + "firstEndPos" : 6169, + "secondEndPos" : 6169 +}, { + "firstType" : "EnhancedForStatement", + "secondType" : "EnhancedForStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6018, + "secondPos" : 6018, + "firstEndPos" : 6166, + "secondEndPos" : 6166 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 6023, + "secondPos" : 6023, + "firstEndPos" : 6033, + "secondEndPos" : 6033 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6023, + "secondPos" : 6023, + "firstEndPos" : 6029, + "secondEndPos" : 6029 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 6023, + "secondPos" : 6023, + "firstEndPos" : 6029, + "secondEndPos" : 6029 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 6030, + "secondPos" : 6030, + "firstEndPos" : 6033, + "secondEndPos" : 6033 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 6036, + "secondPos" : 6036, + "firstEndPos" : 6063, + "secondEndPos" : 6063 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6036, + "secondPos" : 6036, + "firstEndPos" : 6041, + "secondEndPos" : 6041 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "other", + "secondLabel" : "other", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 6036, + "secondPos" : 6036, + "firstEndPos" : 6041, + "secondEndPos" : 6041 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "stringPropertyNames", + "secondLabel" : "stringPropertyNames", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6042, + "secondPos" : 6042, + "firstEndPos" : 6061, + "secondEndPos" : 6061 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 6065, + "secondPos" : 6065, + "firstEndPos" : 6166, + "secondEndPos" : 6166 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6070, + "secondPos" : 6070, + "firstEndPos" : 6101, + "secondEndPos" : 6101 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6070, + "secondPos" : 6070, + "firstEndPos" : 6076, + "secondEndPos" : 6076 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 6070, + "secondPos" : 6070, + "firstEndPos" : 6076, + "secondEndPos" : 6076 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 6077, + "secondPos" : 6077, + "firstEndPos" : 6100, + "secondEndPos" : 6100 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "prefixed", + "secondLabel" : "prefixed", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 6077, + "secondPos" : 6077, + "firstEndPos" : 6085, + "secondEndPos" : 6085 +}, { + "firstType" : "InfixExpression", + "secondType" : "InfixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 6088, + "secondPos" : 6088, + "firstEndPos" : 6100, + "secondEndPos" : 6100 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "prefix", + "secondLabel" : "prefix", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 6088, + "secondPos" : 6088, + "firstEndPos" : 6094, + "secondEndPos" : 6094 +}, { + "firstType" : "INFIX_EXPRESSION_OPERATOR", + "secondType" : "INFIX_EXPRESSION_OPERATOR", + "firstLabel" : "+", + "secondLabel" : "+", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 6095, + "secondPos" : 6095, + "firstEndPos" : 6096, + "secondEndPos" : 6096 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 6097, + "secondPos" : 6097, + "firstEndPos" : 6100, + "secondEndPos" : 6100 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6105, + "secondPos" : 6105, + "firstEndPos" : 6162, + "secondEndPos" : 6162 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 6105, + "secondPos" : 6105, + "firstEndPos" : 6161, + "secondEndPos" : 6161 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6105, + "secondPos" : 6105, + "firstEndPos" : 6115, + "secondEndPos" : 6115 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 6105, + "secondPos" : 6105, + "firstEndPos" : 6115, + "secondEndPos" : 6115 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "setProperty", + "secondLabel" : "setProperty", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6116, + "secondPos" : 6116, + "firstEndPos" : 6127, + "secondEndPos" : 6127 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6128, + "secondPos" : 6128, + "firstEndPos" : 6160, + "secondEndPos" : 6160 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "prefixed", + "secondLabel" : "prefixed", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6128, + "secondPos" : 6128, + "firstEndPos" : 6136, + "secondEndPos" : 6136 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6138, + "secondPos" : 6138, + "firstEndPos" : 6160, + "secondEndPos" : 6160 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6138, + "secondPos" : 6138, + "firstEndPos" : 6143, + "secondEndPos" : 6143 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "other", + "secondLabel" : "other", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 6138, + "secondPos" : 6138, + "firstEndPos" : 6143, + "secondEndPos" : 6143 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getProperty", + "secondLabel" : "getProperty", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6144, + "secondPos" : 6144, + "firstEndPos" : 6155, + "secondEndPos" : 6155 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6156, + "secondPos" : 6156, + "firstEndPos" : 6159, + "secondEndPos" : 6159 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6156, + "secondPos" : 6156, + "firstEndPos" : 6159, + "secondEndPos" : 6159 +}, { + "firstType" : "MethodDeclaration", + "secondType" : "MethodDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 6172, + "secondPos" : 6172, + "firstEndPos" : 6572, + "secondEndPos" : 6572 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "private", + "secondLabel" : "private", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6172, + "secondPos" : 6172, + "firstEndPos" : 6179, + "secondEndPos" : 6179 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6180, + "secondPos" : 6180, + "firstEndPos" : 6190, + "secondEndPos" : 6190 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6180, + "secondPos" : 6180, + "firstEndPos" : 6190, + "secondEndPos" : 6190 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getPropertiesFromApplication", + "secondLabel" : "getPropertiesFromApplication", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6191, + "secondPos" : 6191, + "firstEndPos" : 6219, + "secondEndPos" : 6219 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6220, + "secondPos" : 6220, + "firstEndPos" : 6243, + "secondEndPos" : 6243 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Environment", + "secondLabel" : "Environment", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6220, + "secondPos" : 6220, + "firstEndPos" : 6231, + "secondEndPos" : 6231 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 6220, + "secondPos" : 6220, + "firstEndPos" : 6231, + "secondEndPos" : 6231 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "environment", + "secondLabel" : "environment", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 6232, + "secondPos" : 6232, + "firstEndPos" : 6243, + "secondEndPos" : 6243 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6245, + "secondPos" : 6245, + "firstEndPos" : 6572, + "secondEndPos" : 6572 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6249, + "secondPos" : 6249, + "firstEndPos" : 6290, + "secondEndPos" : 6290 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6249, + "secondPos" : 6249, + "firstEndPos" : 6259, + "secondEndPos" : 6259 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 6249, + "secondPos" : 6249, + "firstEndPos" : 6259, + "secondEndPos" : 6259 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 6260, + "secondPos" : 6260, + "firstEndPos" : 6289, + "secondEndPos" : 6289 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 6260, + "secondPos" : 6260, + "firstEndPos" : 6270, + "secondEndPos" : 6270 +}, { + "firstType" : "ClassInstanceCreation", + "secondType" : "ClassInstanceCreation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 6273, + "secondPos" : 6273, + "firstEndPos" : 6289, + "secondEndPos" : 6289 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6277, + "secondPos" : 6277, + "firstEndPos" : 6287, + "secondEndPos" : 6287 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ClassInstanceCreation", + "secondParentType" : "ClassInstanceCreation", + "firstPos" : 6277, + "secondPos" : 6277, + "firstEndPos" : 6287, + "secondEndPos" : 6287 +}, { + "firstType" : "TryStatement", + "secondType" : "TryStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6293, + "secondPos" : 6293, + "firstEndPos" : 6548, + "secondEndPos" : 6548 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TryStatement", + "secondParentType" : "TryStatement", + "firstPos" : 6297, + "secondPos" : 6297, + "firstEndPos" : 6462, + "secondEndPos" : 6462 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6302, + "secondPos" : 6302, + "firstEndPos" : 6404, + "secondEndPos" : 6404 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 6302, + "secondPos" : 6302, + "firstEndPos" : 6321, + "secondEndPos" : 6321 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Map", + "secondLabel" : "Map", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6302, + "secondPos" : 6302, + "firstEndPos" : 6305, + "secondEndPos" : 6305 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 6302, + "secondPos" : 6302, + "firstEndPos" : 6305, + "secondEndPos" : 6305 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6306, + "secondPos" : 6306, + "firstEndPos" : 6312, + "secondEndPos" : 6312 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 6306, + "secondPos" : 6306, + "firstEndPos" : 6312, + "secondEndPos" : 6312 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6314, + "secondPos" : 6314, + "firstEndPos" : 6320, + "secondEndPos" : 6320 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 6314, + "secondPos" : 6314, + "firstEndPos" : 6320, + "secondEndPos" : 6320 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 6322, + "secondPos" : 6322, + "firstEndPos" : 6403, + "secondEndPos" : 6403 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "map", + "secondLabel" : "map", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 6322, + "secondPos" : 6322, + "firstEndPos" : 6325, + "secondEndPos" : 6325 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 6328, + "secondPos" : 6328, + "firstEndPos" : 6403, + "secondEndPos" : 6403 +}, { + "firstType" : "FieldAccess", + "secondType" : "FieldAccess", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 6328, + "secondPos" : 6328, + "firstEndPos" : 6339, + "secondEndPos" : 6339 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6328, + "secondPos" : 6328, + "firstEndPos" : 6339, + "secondEndPos" : 6339 +}, { + "firstType" : "ThisExpression", + "secondType" : "ThisExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldAccess", + "secondParentType" : "FieldAccess", + "firstPos" : 6328, + "secondPos" : 6328, + "firstEndPos" : 6332, + "secondEndPos" : 6332 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "parser", + "secondLabel" : "parser", + "firstParentType" : "FieldAccess", + "secondParentType" : "FieldAccess", + "firstPos" : 6333, + "secondPos" : 6333, + "firstEndPos" : 6339, + "secondEndPos" : 6339 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "parseMap", + "secondLabel" : "parseMap", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6340, + "secondPos" : 6340, + "firstEndPos" : 6348, + "secondEndPos" : 6348 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6349, + "secondPos" : 6349, + "firstEndPos" : 6402, + "secondEndPos" : 6402 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6349, + "secondPos" : 6349, + "firstEndPos" : 6402, + "secondEndPos" : 6402 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6349, + "secondPos" : 6349, + "firstEndPos" : 6360, + "secondEndPos" : 6360 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "environment", + "secondLabel" : "environment", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 6349, + "secondPos" : 6349, + "firstEndPos" : 6360, + "secondEndPos" : 6360 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getProperty", + "secondLabel" : "getProperty", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6361, + "secondPos" : 6361, + "firstEndPos" : 6372, + "secondEndPos" : 6372 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6379, + "secondPos" : 6379, + "firstEndPos" : 6401, + "secondEndPos" : 6401 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "VCAP_APPLICATION", + "secondLabel" : "VCAP_APPLICATION", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6379, + "secondPos" : 6379, + "firstEndPos" : 6395, + "secondEndPos" : 6395 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"{}\"", + "secondLabel" : "\"{}\"", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6397, + "secondPos" : 6397, + "firstEndPos" : 6401, + "secondEndPos" : 6401 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6408, + "secondPos" : 6408, + "firstEndPos" : 6458, + "secondEndPos" : 6458 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 6408, + "secondPos" : 6408, + "firstEndPos" : 6457, + "secondEndPos" : 6457 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "extractPropertiesFromApplication", + "secondLabel" : "extractPropertiesFromApplication", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6408, + "secondPos" : 6408, + "firstEndPos" : 6440, + "secondEndPos" : 6440 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6441, + "secondPos" : 6441, + "firstEndPos" : 6456, + "secondEndPos" : 6456 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6441, + "secondPos" : 6441, + "firstEndPos" : 6451, + "secondEndPos" : 6451 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "map", + "secondLabel" : "map", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6453, + "secondPos" : 6453, + "firstEndPos" : 6456, + "secondEndPos" : 6456 +}, { + "firstType" : "CatchClause", + "secondType" : "CatchClause", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TryStatement", + "secondParentType" : "TryStatement", + "firstPos" : 6465, + "secondPos" : 6465, + "firstEndPos" : 6548, + "secondEndPos" : 6548 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CatchClause", + "secondParentType" : "CatchClause", + "firstPos" : 6472, + "secondPos" : 6472, + "firstEndPos" : 6484, + "secondEndPos" : 6484 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Exception", + "secondLabel" : "Exception", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6472, + "secondPos" : 6472, + "firstEndPos" : 6481, + "secondEndPos" : 6481 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 6472, + "secondPos" : 6472, + "firstEndPos" : 6481, + "secondEndPos" : 6481 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "ex", + "secondLabel" : "ex", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 6482, + "secondPos" : 6482, + "firstEndPos" : 6484, + "secondEndPos" : 6484 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CatchClause", + "secondParentType" : "CatchClause", + "firstPos" : 6486, + "secondPos" : 6486, + "firstEndPos" : 6548, + "secondEndPos" : 6548 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6491, + "secondPos" : 6491, + "firstEndPos" : 6544, + "secondEndPos" : 6544 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 6491, + "secondPos" : 6491, + "firstEndPos" : 6543, + "secondEndPos" : 6543 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6491, + "secondPos" : 6491, + "firstEndPos" : 6497, + "secondEndPos" : 6497 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "logger", + "secondLabel" : "logger", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 6491, + "secondPos" : 6491, + "firstEndPos" : 6497, + "secondEndPos" : 6497 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "error", + "secondLabel" : "error", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6498, + "secondPos" : 6498, + "firstEndPos" : 6503, + "secondEndPos" : 6503 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6504, + "secondPos" : 6504, + "firstEndPos" : 6542, + "secondEndPos" : 6542 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"Could not parse VCAP_APPLICATION\"", + "secondLabel" : "\"Could not parse VCAP_APPLICATION\"", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6504, + "secondPos" : 6504, + "firstEndPos" : 6538, + "secondEndPos" : 6538 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "ex", + "secondLabel" : "ex", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6540, + "secondPos" : 6540, + "firstEndPos" : 6542, + "secondEndPos" : 6542 +}, { + "firstType" : "ReturnStatement", + "secondType" : "ReturnStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6551, + "secondPos" : 6551, + "firstEndPos" : 6569, + "secondEndPos" : 6569 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "ReturnStatement", + "secondParentType" : "ReturnStatement", + "firstPos" : 6558, + "secondPos" : 6558, + "firstEndPos" : 6568, + "secondEndPos" : 6568 +}, { + "firstType" : "MethodDeclaration", + "secondType" : "MethodDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 6575, + "secondPos" : 6575, + "firstEndPos" : 6963, + "secondEndPos" : 6963 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "private", + "secondLabel" : "private", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6575, + "secondPos" : 6575, + "firstEndPos" : 6582, + "secondEndPos" : 6582 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6583, + "secondPos" : 6583, + "firstEndPos" : 6593, + "secondEndPos" : 6593 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6583, + "secondPos" : 6583, + "firstEndPos" : 6593, + "secondEndPos" : 6593 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getPropertiesFromServices", + "secondLabel" : "getPropertiesFromServices", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6594, + "secondPos" : 6594, + "firstEndPos" : 6619, + "secondEndPos" : 6619 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6620, + "secondPos" : 6620, + "firstEndPos" : 6643, + "secondEndPos" : 6643 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Environment", + "secondLabel" : "Environment", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6620, + "secondPos" : 6620, + "firstEndPos" : 6631, + "secondEndPos" : 6631 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 6620, + "secondPos" : 6620, + "firstEndPos" : 6631, + "secondEndPos" : 6631 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "environment", + "secondLabel" : "environment", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 6632, + "secondPos" : 6632, + "firstEndPos" : 6643, + "secondEndPos" : 6643 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6645, + "secondPos" : 6645, + "firstEndPos" : 6963, + "secondEndPos" : 6963 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6649, + "secondPos" : 6649, + "firstEndPos" : 6690, + "secondEndPos" : 6690 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6649, + "secondPos" : 6649, + "firstEndPos" : 6659, + "secondEndPos" : 6659 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 6649, + "secondPos" : 6649, + "firstEndPos" : 6659, + "secondEndPos" : 6659 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 6660, + "secondPos" : 6660, + "firstEndPos" : 6689, + "secondEndPos" : 6689 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 6660, + "secondPos" : 6660, + "firstEndPos" : 6670, + "secondEndPos" : 6670 +}, { + "firstType" : "ClassInstanceCreation", + "secondType" : "ClassInstanceCreation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 6673, + "secondPos" : 6673, + "firstEndPos" : 6689, + "secondEndPos" : 6689 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6677, + "secondPos" : 6677, + "firstEndPos" : 6687, + "secondEndPos" : 6687 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ClassInstanceCreation", + "secondParentType" : "ClassInstanceCreation", + "firstPos" : 6677, + "secondPos" : 6677, + "firstEndPos" : 6687, + "secondEndPos" : 6687 +}, { + "firstType" : "TryStatement", + "secondType" : "TryStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6693, + "secondPos" : 6693, + "firstEndPos" : 6939, + "secondEndPos" : 6939 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TryStatement", + "secondParentType" : "TryStatement", + "firstPos" : 6697, + "secondPos" : 6697, + "firstEndPos" : 6856, + "secondEndPos" : 6856 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6702, + "secondPos" : 6702, + "firstEndPos" : 6801, + "secondEndPos" : 6801 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 6702, + "secondPos" : 6702, + "firstEndPos" : 6721, + "secondEndPos" : 6721 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Map", + "secondLabel" : "Map", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6702, + "secondPos" : 6702, + "firstEndPos" : 6705, + "secondEndPos" : 6705 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 6702, + "secondPos" : 6702, + "firstEndPos" : 6705, + "secondEndPos" : 6705 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6706, + "secondPos" : 6706, + "firstEndPos" : 6712, + "secondEndPos" : 6712 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 6706, + "secondPos" : 6706, + "firstEndPos" : 6712, + "secondEndPos" : 6712 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6714, + "secondPos" : 6714, + "firstEndPos" : 6720, + "secondEndPos" : 6720 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 6714, + "secondPos" : 6714, + "firstEndPos" : 6720, + "secondEndPos" : 6720 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 6722, + "secondPos" : 6722, + "firstEndPos" : 6800, + "secondEndPos" : 6800 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "map", + "secondLabel" : "map", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 6722, + "secondPos" : 6722, + "firstEndPos" : 6725, + "secondEndPos" : 6725 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 6728, + "secondPos" : 6728, + "firstEndPos" : 6800, + "secondEndPos" : 6800 +}, { + "firstType" : "FieldAccess", + "secondType" : "FieldAccess", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 6728, + "secondPos" : 6728, + "firstEndPos" : 6739, + "secondEndPos" : 6739 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6728, + "secondPos" : 6728, + "firstEndPos" : 6739, + "secondEndPos" : 6739 +}, { + "firstType" : "ThisExpression", + "secondType" : "ThisExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "FieldAccess", + "secondParentType" : "FieldAccess", + "firstPos" : 6728, + "secondPos" : 6728, + "firstEndPos" : 6732, + "secondEndPos" : 6732 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "parser", + "secondLabel" : "parser", + "firstParentType" : "FieldAccess", + "secondParentType" : "FieldAccess", + "firstPos" : 6733, + "secondPos" : 6733, + "firstEndPos" : 6739, + "secondEndPos" : 6739 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "parseMap", + "secondLabel" : "parseMap", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6740, + "secondPos" : 6740, + "firstEndPos" : 6748, + "secondEndPos" : 6748 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6749, + "secondPos" : 6749, + "firstEndPos" : 6799, + "secondEndPos" : 6799 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6749, + "secondPos" : 6749, + "firstEndPos" : 6799, + "secondEndPos" : 6799 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6749, + "secondPos" : 6749, + "firstEndPos" : 6760, + "secondEndPos" : 6760 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "environment", + "secondLabel" : "environment", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 6749, + "secondPos" : 6749, + "firstEndPos" : 6760, + "secondEndPos" : 6760 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getProperty", + "secondLabel" : "getProperty", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6761, + "secondPos" : 6761, + "firstEndPos" : 6772, + "secondEndPos" : 6772 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6779, + "secondPos" : 6779, + "firstEndPos" : 6798, + "secondEndPos" : 6798 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "VCAP_SERVICES", + "secondLabel" : "VCAP_SERVICES", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6779, + "secondPos" : 6779, + "firstEndPos" : 6792, + "secondEndPos" : 6792 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"{}\"", + "secondLabel" : "\"{}\"", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6794, + "secondPos" : 6794, + "firstEndPos" : 6798, + "secondEndPos" : 6798 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6805, + "secondPos" : 6805, + "firstEndPos" : 6852, + "secondEndPos" : 6852 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 6805, + "secondPos" : 6805, + "firstEndPos" : 6851, + "secondEndPos" : 6851 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "extractPropertiesFromServices", + "secondLabel" : "extractPropertiesFromServices", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6805, + "secondPos" : 6805, + "firstEndPos" : 6834, + "secondEndPos" : 6834 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6835, + "secondPos" : 6835, + "firstEndPos" : 6850, + "secondEndPos" : 6850 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6835, + "secondPos" : 6835, + "firstEndPos" : 6845, + "secondEndPos" : 6845 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "map", + "secondLabel" : "map", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6847, + "secondPos" : 6847, + "firstEndPos" : 6850, + "secondEndPos" : 6850 +}, { + "firstType" : "CatchClause", + "secondType" : "CatchClause", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TryStatement", + "secondParentType" : "TryStatement", + "firstPos" : 6859, + "secondPos" : 6859, + "firstEndPos" : 6939, + "secondEndPos" : 6939 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CatchClause", + "secondParentType" : "CatchClause", + "firstPos" : 6866, + "secondPos" : 6866, + "firstEndPos" : 6878, + "secondEndPos" : 6878 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Exception", + "secondLabel" : "Exception", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 6866, + "secondPos" : 6866, + "firstEndPos" : 6875, + "secondEndPos" : 6875 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 6866, + "secondPos" : 6866, + "firstEndPos" : 6875, + "secondEndPos" : 6875 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "ex", + "secondLabel" : "ex", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 6876, + "secondPos" : 6876, + "firstEndPos" : 6878, + "secondEndPos" : 6878 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CatchClause", + "secondParentType" : "CatchClause", + "firstPos" : 6880, + "secondPos" : 6880, + "firstEndPos" : 6939, + "secondEndPos" : 6939 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6885, + "secondPos" : 6885, + "firstEndPos" : 6935, + "secondEndPos" : 6935 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 6885, + "secondPos" : 6885, + "firstEndPos" : 6934, + "secondEndPos" : 6934 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6885, + "secondPos" : 6885, + "firstEndPos" : 6891, + "secondEndPos" : 6891 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "logger", + "secondLabel" : "logger", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 6885, + "secondPos" : 6885, + "firstEndPos" : 6891, + "secondEndPos" : 6891 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "error", + "secondLabel" : "error", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6892, + "secondPos" : 6892, + "firstEndPos" : 6897, + "secondEndPos" : 6897 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 6898, + "secondPos" : 6898, + "firstEndPos" : 6933, + "secondEndPos" : 6933 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"Could not parse VCAP_SERVICES\"", + "secondLabel" : "\"Could not parse VCAP_SERVICES\"", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6898, + "secondPos" : 6898, + "firstEndPos" : 6929, + "secondEndPos" : 6929 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "ex", + "secondLabel" : "ex", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 6931, + "secondPos" : 6931, + "firstEndPos" : 6933, + "secondEndPos" : 6933 +}, { + "firstType" : "ReturnStatement", + "secondType" : "ReturnStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6942, + "secondPos" : 6942, + "firstEndPos" : 6960, + "secondEndPos" : 6960 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "ReturnStatement", + "secondParentType" : "ReturnStatement", + "firstPos" : 6949, + "secondPos" : 6949, + "firstEndPos" : 6959, + "secondEndPos" : 6959 +}, { + "firstType" : "MethodDeclaration", + "secondType" : "MethodDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 6966, + "secondPos" : 6966, + "firstEndPos" : 7125, + "secondEndPos" : 7125 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "private", + "secondLabel" : "private", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6966, + "secondPos" : 6966, + "firstEndPos" : 6973, + "secondEndPos" : 6973 +}, { + "firstType" : "PrimitiveType", + "secondType" : "PrimitiveType", + "firstLabel" : "void", + "secondLabel" : "void", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6974, + "secondPos" : 6974, + "firstEndPos" : 6978, + "secondEndPos" : 6978 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "extractPropertiesFromApplication", + "secondLabel" : "extractPropertiesFromApplication", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 6979, + "secondPos" : 6979, + "firstEndPos" : 7011, + "secondEndPos" : 7011 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7012, + "secondPos" : 7012, + "firstEndPos" : 7033, + "secondEndPos" : 7033 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7012, + "secondPos" : 7012, + "firstEndPos" : 7022, + "secondEndPos" : 7022 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7012, + "secondPos" : 7012, + "firstEndPos" : 7022, + "secondEndPos" : 7022 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7023, + "secondPos" : 7023, + "firstEndPos" : 7033, + "secondEndPos" : 7033 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7038, + "secondPos" : 7038, + "firstEndPos" : 7061, + "secondEndPos" : 7061 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7038, + "secondPos" : 7038, + "firstEndPos" : 7057, + "secondEndPos" : 7057 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Map", + "secondLabel" : "Map", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7038, + "secondPos" : 7038, + "firstEndPos" : 7041, + "secondEndPos" : 7041 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7038, + "secondPos" : 7038, + "firstEndPos" : 7041, + "secondEndPos" : 7041 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7042, + "secondPos" : 7042, + "firstEndPos" : 7048, + "secondEndPos" : 7048 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7042, + "secondPos" : 7042, + "firstEndPos" : 7048, + "secondEndPos" : 7048 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7050, + "secondPos" : 7050, + "firstEndPos" : 7056, + "secondEndPos" : 7056 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7050, + "secondPos" : 7050, + "firstEndPos" : 7056, + "secondEndPos" : 7056 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "map", + "secondLabel" : "map", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7058, + "secondPos" : 7058, + "firstEndPos" : 7061, + "secondEndPos" : 7061 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7063, + "secondPos" : 7063, + "firstEndPos" : 7125, + "secondEndPos" : 7125 +}, { + "firstType" : "IfStatement", + "secondType" : "IfStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7067, + "secondPos" : 7067, + "firstEndPos" : 7122, + "secondEndPos" : 7122 +}, { + "firstType" : "InfixExpression", + "secondType" : "InfixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 7071, + "secondPos" : 7071, + "firstEndPos" : 7082, + "secondEndPos" : 7082 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "map", + "secondLabel" : "map", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7071, + "secondPos" : 7071, + "firstEndPos" : 7074, + "secondEndPos" : 7074 +}, { + "firstType" : "INFIX_EXPRESSION_OPERATOR", + "secondType" : "INFIX_EXPRESSION_OPERATOR", + "firstLabel" : "!=", + "secondLabel" : "!=", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7075, + "secondPos" : 7075, + "firstEndPos" : 7077, + "secondEndPos" : 7077 +}, { + "firstType" : "NullLiteral", + "secondType" : "NullLiteral", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7078, + "secondPos" : 7078, + "firstEndPos" : 7082, + "secondEndPos" : 7082 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 7084, + "secondPos" : 7084, + "firstEndPos" : 7122, + "secondEndPos" : 7122 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7089, + "secondPos" : 7089, + "firstEndPos" : 7118, + "secondEndPos" : 7118 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 7089, + "secondPos" : 7089, + "firstEndPos" : 7117, + "secondEndPos" : 7117 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "flatten", + "secondLabel" : "flatten", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7089, + "secondPos" : 7089, + "firstEndPos" : 7096, + "secondEndPos" : 7096 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7097, + "secondPos" : 7097, + "firstEndPos" : 7116, + "secondEndPos" : 7116 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 7097, + "secondPos" : 7097, + "firstEndPos" : 7107, + "secondEndPos" : 7107 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "map", + "secondLabel" : "map", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 7109, + "secondPos" : 7109, + "firstEndPos" : 7112, + "secondEndPos" : 7112 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"\"", + "secondLabel" : "\"\"", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 7114, + "secondPos" : 7114, + "firstEndPos" : 7116, + "secondEndPos" : 7116 +}, { + "firstType" : "MethodDeclaration", + "secondType" : "MethodDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 7128, + "secondPos" : 7128, + "firstEndPos" : 7684, + "secondEndPos" : 7684 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "private", + "secondLabel" : "private", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7128, + "secondPos" : 7128, + "firstEndPos" : 7135, + "secondEndPos" : 7135 +}, { + "firstType" : "PrimitiveType", + "secondType" : "PrimitiveType", + "firstLabel" : "void", + "secondLabel" : "void", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7136, + "secondPos" : 7136, + "firstEndPos" : 7140, + "secondEndPos" : 7140 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "extractPropertiesFromServices", + "secondLabel" : "extractPropertiesFromServices", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7141, + "secondPos" : 7141, + "firstEndPos" : 7170, + "secondEndPos" : 7170 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7171, + "secondPos" : 7171, + "firstEndPos" : 7192, + "secondEndPos" : 7192 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7171, + "secondPos" : 7171, + "firstEndPos" : 7181, + "secondEndPos" : 7181 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7171, + "secondPos" : 7171, + "firstEndPos" : 7181, + "secondEndPos" : 7181 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7182, + "secondPos" : 7182, + "firstEndPos" : 7192, + "secondEndPos" : 7192 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7197, + "secondPos" : 7197, + "firstEndPos" : 7220, + "secondEndPos" : 7220 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7197, + "secondPos" : 7197, + "firstEndPos" : 7216, + "secondEndPos" : 7216 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Map", + "secondLabel" : "Map", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7197, + "secondPos" : 7197, + "firstEndPos" : 7200, + "secondEndPos" : 7200 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7197, + "secondPos" : 7197, + "firstEndPos" : 7200, + "secondEndPos" : 7200 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7201, + "secondPos" : 7201, + "firstEndPos" : 7207, + "secondEndPos" : 7207 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7201, + "secondPos" : 7201, + "firstEndPos" : 7207, + "secondEndPos" : 7207 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7209, + "secondPos" : 7209, + "firstEndPos" : 7215, + "secondEndPos" : 7215 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7209, + "secondPos" : 7209, + "firstEndPos" : 7215, + "secondEndPos" : 7215 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "map", + "secondLabel" : "map", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7217, + "secondPos" : 7217, + "firstEndPos" : 7220, + "secondEndPos" : 7220 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7222, + "secondPos" : 7222, + "firstEndPos" : 7684, + "secondEndPos" : 7684 +}, { + "firstType" : "IfStatement", + "secondType" : "IfStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7226, + "secondPos" : 7226, + "firstEndPos" : 7681, + "secondEndPos" : 7681 +}, { + "firstType" : "InfixExpression", + "secondType" : "InfixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 7230, + "secondPos" : 7230, + "firstEndPos" : 7241, + "secondEndPos" : 7241 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "map", + "secondLabel" : "map", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7230, + "secondPos" : 7230, + "firstEndPos" : 7233, + "secondEndPos" : 7233 +}, { + "firstType" : "INFIX_EXPRESSION_OPERATOR", + "secondType" : "INFIX_EXPRESSION_OPERATOR", + "firstLabel" : "!=", + "secondLabel" : "!=", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7234, + "secondPos" : 7234, + "firstEndPos" : 7236, + "secondEndPos" : 7236 +}, { + "firstType" : "NullLiteral", + "secondType" : "NullLiteral", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7237, + "secondPos" : 7237, + "firstEndPos" : 7241, + "secondEndPos" : 7241 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 7243, + "secondPos" : 7243, + "firstEndPos" : 7681, + "secondEndPos" : 7681 +}, { + "firstType" : "EnhancedForStatement", + "secondType" : "EnhancedForStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7248, + "secondPos" : 7248, + "firstEndPos" : 7677, + "secondEndPos" : 7677 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 7253, + "secondPos" : 7253, + "firstEndPos" : 7268, + "secondEndPos" : 7268 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7253, + "secondPos" : 7253, + "firstEndPos" : 7259, + "secondEndPos" : 7259 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7253, + "secondPos" : 7253, + "firstEndPos" : 7259, + "secondEndPos" : 7259 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "services", + "secondLabel" : "services", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7260, + "secondPos" : 7260, + "firstEndPos" : 7268, + "secondEndPos" : 7268 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 7271, + "secondPos" : 7271, + "firstEndPos" : 7283, + "secondEndPos" : 7283 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7271, + "secondPos" : 7271, + "firstEndPos" : 7274, + "secondEndPos" : 7274 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "map", + "secondLabel" : "map", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 7271, + "secondPos" : 7271, + "firstEndPos" : 7274, + "secondEndPos" : 7274 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "values", + "secondLabel" : "values", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7275, + "secondPos" : 7275, + "firstEndPos" : 7281, + "secondEndPos" : 7281 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 7285, + "secondPos" : 7285, + "firstEndPos" : 7677, + "secondEndPos" : 7677 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7291, + "secondPos" : 7291, + "firstEndPos" : 7370, + "secondEndPos" : 7370 +}, { + "firstType" : "SingleMemberAnnotation", + "secondType" : "SingleMemberAnnotation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 7291, + "secondPos" : 7291, + "firstEndPos" : 7321, + "secondEndPos" : 7321 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "SuppressWarnings", + "secondLabel" : "SuppressWarnings", + "firstParentType" : "SingleMemberAnnotation", + "secondParentType" : "SingleMemberAnnotation", + "firstPos" : 7292, + "secondPos" : 7292, + "firstEndPos" : 7308, + "secondEndPos" : 7308 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"unchecked\"", + "secondLabel" : "\"unchecked\"", + "firstParentType" : "SingleMemberAnnotation", + "secondParentType" : "SingleMemberAnnotation", + "firstPos" : 7309, + "secondPos" : 7309, + "firstEndPos" : 7320, + "secondEndPos" : 7320 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 7326, + "secondPos" : 7326, + "firstEndPos" : 7338, + "secondEndPos" : 7338 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "List", + "secondLabel" : "List", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7326, + "secondPos" : 7326, + "firstEndPos" : 7330, + "secondEndPos" : 7330 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7326, + "secondPos" : 7326, + "firstEndPos" : 7330, + "secondEndPos" : 7330 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7331, + "secondPos" : 7331, + "firstEndPos" : 7337, + "secondEndPos" : 7337 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7331, + "secondPos" : 7331, + "firstEndPos" : 7337, + "secondEndPos" : 7337 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 7339, + "secondPos" : 7339, + "firstEndPos" : 7369, + "secondEndPos" : 7369 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "list", + "secondLabel" : "list", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 7339, + "secondPos" : 7339, + "firstEndPos" : 7343, + "secondEndPos" : 7343 +}, { + "firstType" : "CastExpression", + "secondType" : "CastExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 7346, + "secondPos" : 7346, + "firstEndPos" : 7369, + "secondEndPos" : 7369 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CastExpression", + "secondParentType" : "CastExpression", + "firstPos" : 7347, + "secondPos" : 7347, + "firstEndPos" : 7359, + "secondEndPos" : 7359 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "List", + "secondLabel" : "List", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7347, + "secondPos" : 7347, + "firstEndPos" : 7351, + "secondEndPos" : 7351 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7347, + "secondPos" : 7347, + "firstEndPos" : 7351, + "secondEndPos" : 7351 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7352, + "secondPos" : 7352, + "firstEndPos" : 7358, + "secondEndPos" : 7358 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7352, + "secondPos" : 7352, + "firstEndPos" : 7358, + "secondEndPos" : 7358 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "services", + "secondLabel" : "services", + "firstParentType" : "CastExpression", + "secondParentType" : "CastExpression", + "firstPos" : 7361, + "secondPos" : 7361, + "firstEndPos" : 7369, + "secondEndPos" : 7369 +}, { + "firstType" : "EnhancedForStatement", + "secondType" : "EnhancedForStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7375, + "secondPos" : 7375, + "firstEndPos" : 7672, + "secondEndPos" : 7672 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 7380, + "secondPos" : 7380, + "firstEndPos" : 7393, + "secondEndPos" : 7393 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7380, + "secondPos" : 7380, + "firstEndPos" : 7386, + "secondEndPos" : 7386 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7380, + "secondPos" : 7380, + "firstEndPos" : 7386, + "secondEndPos" : 7386 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "object", + "secondLabel" : "object", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7387, + "secondPos" : 7387, + "firstEndPos" : 7393, + "secondEndPos" : 7393 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "list", + "secondLabel" : "list", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 7396, + "secondPos" : 7396, + "firstEndPos" : 7400, + "secondEndPos" : 7400 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 7402, + "secondPos" : 7402, + "firstEndPos" : 7672, + "secondEndPos" : 7672 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7409, + "secondPos" : 7409, + "firstEndPos" : 7504, + "secondEndPos" : 7504 +}, { + "firstType" : "SingleMemberAnnotation", + "secondType" : "SingleMemberAnnotation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 7409, + "secondPos" : 7409, + "firstEndPos" : 7439, + "secondEndPos" : 7439 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "SuppressWarnings", + "secondLabel" : "SuppressWarnings", + "firstParentType" : "SingleMemberAnnotation", + "secondParentType" : "SingleMemberAnnotation", + "firstPos" : 7410, + "secondPos" : 7410, + "firstEndPos" : 7426, + "secondEndPos" : 7426 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"unchecked\"", + "secondLabel" : "\"unchecked\"", + "firstParentType" : "SingleMemberAnnotation", + "secondParentType" : "SingleMemberAnnotation", + "firstPos" : 7427, + "secondPos" : 7427, + "firstEndPos" : 7438, + "secondEndPos" : 7438 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 7445, + "secondPos" : 7445, + "firstEndPos" : 7464, + "secondEndPos" : 7464 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Map", + "secondLabel" : "Map", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7445, + "secondPos" : 7445, + "firstEndPos" : 7448, + "secondEndPos" : 7448 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7445, + "secondPos" : 7445, + "firstEndPos" : 7448, + "secondEndPos" : 7448 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7449, + "secondPos" : 7449, + "firstEndPos" : 7455, + "secondEndPos" : 7455 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7449, + "secondPos" : 7449, + "firstEndPos" : 7455, + "secondEndPos" : 7455 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7457, + "secondPos" : 7457, + "firstEndPos" : 7463, + "secondEndPos" : 7463 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7457, + "secondPos" : 7457, + "firstEndPos" : 7463, + "secondEndPos" : 7463 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 7465, + "secondPos" : 7465, + "firstEndPos" : 7503, + "secondEndPos" : 7503 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "service", + "secondLabel" : "service", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 7465, + "secondPos" : 7465, + "firstEndPos" : 7472, + "secondEndPos" : 7472 +}, { + "firstType" : "CastExpression", + "secondType" : "CastExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 7475, + "secondPos" : 7475, + "firstEndPos" : 7503, + "secondEndPos" : 7503 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CastExpression", + "secondParentType" : "CastExpression", + "firstPos" : 7476, + "secondPos" : 7476, + "firstEndPos" : 7495, + "secondEndPos" : 7495 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Map", + "secondLabel" : "Map", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7476, + "secondPos" : 7476, + "firstEndPos" : 7479, + "secondEndPos" : 7479 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7476, + "secondPos" : 7476, + "firstEndPos" : 7479, + "secondEndPos" : 7479 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7480, + "secondPos" : 7480, + "firstEndPos" : 7486, + "secondEndPos" : 7486 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7480, + "secondPos" : 7480, + "firstEndPos" : 7486, + "secondEndPos" : 7486 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7488, + "secondPos" : 7488, + "firstEndPos" : 7494, + "secondEndPos" : 7494 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7488, + "secondPos" : 7488, + "firstEndPos" : 7494, + "secondEndPos" : 7494 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "object", + "secondLabel" : "object", + "firstParentType" : "CastExpression", + "secondParentType" : "CastExpression", + "firstPos" : 7497, + "secondPos" : 7497, + "firstEndPos" : 7503, + "secondEndPos" : 7503 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7510, + "secondPos" : 7510, + "firstEndPos" : 7552, + "secondEndPos" : 7552 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7510, + "secondPos" : 7510, + "firstEndPos" : 7516, + "secondEndPos" : 7516 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 7510, + "secondPos" : 7510, + "firstEndPos" : 7516, + "secondEndPos" : 7516 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 7517, + "secondPos" : 7517, + "firstEndPos" : 7551, + "secondEndPos" : 7551 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 7517, + "secondPos" : 7517, + "firstEndPos" : 7520, + "secondEndPos" : 7520 +}, { + "firstType" : "CastExpression", + "secondType" : "CastExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 7523, + "secondPos" : 7523, + "firstEndPos" : 7551, + "secondEndPos" : 7551 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7524, + "secondPos" : 7524, + "firstEndPos" : 7530, + "secondEndPos" : 7530 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CastExpression", + "secondParentType" : "CastExpression", + "firstPos" : 7524, + "secondPos" : 7524, + "firstEndPos" : 7530, + "secondEndPos" : 7530 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CastExpression", + "secondParentType" : "CastExpression", + "firstPos" : 7532, + "secondPos" : 7532, + "firstEndPos" : 7551, + "secondEndPos" : 7551 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7532, + "secondPos" : 7532, + "firstEndPos" : 7539, + "secondEndPos" : 7539 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "service", + "secondLabel" : "service", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 7532, + "secondPos" : 7532, + "firstEndPos" : 7539, + "secondEndPos" : 7539 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "get", + "secondLabel" : "get", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7540, + "secondPos" : 7540, + "firstEndPos" : 7543, + "secondEndPos" : 7543 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7544, + "secondPos" : 7544, + "firstEndPos" : 7550, + "secondEndPos" : 7550 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"name\"", + "secondLabel" : "\"name\"", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 7544, + "secondPos" : 7544, + "firstEndPos" : 7550, + "secondEndPos" : 7550 +}, { + "firstType" : "IfStatement", + "secondType" : "IfStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7558, + "secondPos" : 7558, + "firstEndPos" : 7626, + "secondEndPos" : 7626 +}, { + "firstType" : "InfixExpression", + "secondType" : "InfixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 7562, + "secondPos" : 7562, + "firstEndPos" : 7573, + "secondEndPos" : 7573 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7562, + "secondPos" : 7562, + "firstEndPos" : 7565, + "secondEndPos" : 7565 +}, { + "firstType" : "INFIX_EXPRESSION_OPERATOR", + "secondType" : "INFIX_EXPRESSION_OPERATOR", + "firstLabel" : "==", + "secondLabel" : "==", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7566, + "secondPos" : 7566, + "firstEndPos" : 7568, + "secondEndPos" : 7568 +}, { + "firstType" : "NullLiteral", + "secondType" : "NullLiteral", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7569, + "secondPos" : 7569, + "firstEndPos" : 7573, + "secondEndPos" : 7573 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 7575, + "secondPos" : 7575, + "firstEndPos" : 7626, + "secondEndPos" : 7626 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7583, + "secondPos" : 7583, + "firstEndPos" : 7619, + "secondEndPos" : 7619 +}, { + "firstType" : "Assignment", + "secondType" : "Assignment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 7583, + "secondPos" : 7583, + "firstEndPos" : 7618, + "secondEndPos" : 7618 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "Assignment", + "secondParentType" : "Assignment", + "firstPos" : 7583, + "secondPos" : 7583, + "firstEndPos" : 7586, + "secondEndPos" : 7586 +}, { + "firstType" : "ASSIGNMENT_OPERATOR", + "secondType" : "ASSIGNMENT_OPERATOR", + "firstLabel" : "=", + "secondLabel" : "=", + "firstParentType" : "Assignment", + "secondParentType" : "Assignment", + "firstPos" : 7587, + "secondPos" : 7587, + "firstEndPos" : 7588, + "secondEndPos" : 7588 +}, { + "firstType" : "CastExpression", + "secondType" : "CastExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Assignment", + "secondParentType" : "Assignment", + "firstPos" : 7589, + "secondPos" : 7589, + "firstEndPos" : 7618, + "secondEndPos" : 7618 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7590, + "secondPos" : 7590, + "firstEndPos" : 7596, + "secondEndPos" : 7596 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CastExpression", + "secondParentType" : "CastExpression", + "firstPos" : 7590, + "secondPos" : 7590, + "firstEndPos" : 7596, + "secondEndPos" : 7596 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CastExpression", + "secondParentType" : "CastExpression", + "firstPos" : 7598, + "secondPos" : 7598, + "firstEndPos" : 7618, + "secondEndPos" : 7618 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7598, + "secondPos" : 7598, + "firstEndPos" : 7605, + "secondEndPos" : 7605 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "service", + "secondLabel" : "service", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 7598, + "secondPos" : 7598, + "firstEndPos" : 7605, + "secondEndPos" : 7605 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "get", + "secondLabel" : "get", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7606, + "secondPos" : 7606, + "firstEndPos" : 7609, + "secondEndPos" : 7609 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7610, + "secondPos" : 7610, + "firstEndPos" : 7617, + "secondEndPos" : 7617 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"label\"", + "secondLabel" : "\"label\"", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 7610, + "secondPos" : 7610, + "firstEndPos" : 7617, + "secondEndPos" : 7617 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7632, + "secondPos" : 7632, + "firstEndPos" : 7666, + "secondEndPos" : 7666 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 7632, + "secondPos" : 7632, + "firstEndPos" : 7665, + "secondEndPos" : 7665 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "flatten", + "secondLabel" : "flatten", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7632, + "secondPos" : 7632, + "firstEndPos" : 7639, + "secondEndPos" : 7639 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7640, + "secondPos" : 7640, + "firstEndPos" : 7664, + "secondEndPos" : 7664 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 7640, + "secondPos" : 7640, + "firstEndPos" : 7650, + "secondEndPos" : 7650 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "service", + "secondLabel" : "service", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 7652, + "secondPos" : 7652, + "firstEndPos" : 7659, + "secondEndPos" : 7659 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 7661, + "secondPos" : 7661, + "firstEndPos" : 7664, + "secondEndPos" : 7664 +}, { + "firstType" : "MethodDeclaration", + "secondType" : "MethodDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 7687, + "secondPos" : 7687, + "firstEndPos" : 8984, + "secondEndPos" : 8802 +}, { + "firstType" : "Modifier", + "secondType" : "Modifier", + "firstLabel" : "private", + "secondLabel" : "private", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7687, + "secondPos" : 7719, + "firstEndPos" : 7694, + "secondEndPos" : 7726 +}, { + "firstType" : "PrimitiveType", + "secondType" : "PrimitiveType", + "firstLabel" : "void", + "secondLabel" : "void", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7695, + "secondPos" : 7727, + "firstEndPos" : 7699, + "secondEndPos" : 7731 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "flatten", + "secondLabel" : "flatten", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7700, + "secondPos" : 7732, + "firstEndPos" : 7707, + "secondEndPos" : 7739 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7708, + "secondPos" : 7740, + "firstEndPos" : 7729, + "secondEndPos" : 7761 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Properties", + "secondLabel" : "Properties", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7708, + "secondPos" : 7740, + "firstEndPos" : 7718, + "secondEndPos" : 7750 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7708, + "secondPos" : 7740, + "firstEndPos" : 7718, + "secondEndPos" : 7750 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7719, + "secondPos" : 7751, + "firstEndPos" : 7729, + "secondEndPos" : 7761 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7731, + "secondPos" : 7763, + "firstEndPos" : 7756, + "secondEndPos" : 7788 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7731, + "secondPos" : 7763, + "firstEndPos" : 7750, + "secondEndPos" : 7782 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Map", + "secondLabel" : "Map", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7731, + "secondPos" : 7763, + "firstEndPos" : 7734, + "secondEndPos" : 7766 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7731, + "secondPos" : 7763, + "firstEndPos" : 7734, + "secondEndPos" : 7766 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7735, + "secondPos" : 7767, + "firstEndPos" : 7741, + "secondEndPos" : 7773 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7735, + "secondPos" : 7767, + "firstEndPos" : 7741, + "secondEndPos" : 7773 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7743, + "secondPos" : 7775, + "firstEndPos" : 7749, + "secondEndPos" : 7781 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7743, + "secondPos" : 7775, + "firstEndPos" : 7749, + "secondEndPos" : 7781 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "input", + "secondLabel" : "input", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7751, + "secondPos" : 7783, + "firstEndPos" : 7756, + "secondEndPos" : 7788 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7758, + "secondPos" : 7790, + "firstEndPos" : 7769, + "secondEndPos" : 7801 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7758, + "secondPos" : 7790, + "firstEndPos" : 7764, + "secondEndPos" : 7796 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7758, + "secondPos" : 7790, + "firstEndPos" : 7764, + "secondEndPos" : 7796 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "path", + "secondLabel" : "path", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7765, + "secondPos" : 7797, + "firstEndPos" : 7769, + "secondEndPos" : 7801 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodDeclaration", + "secondParentType" : "MethodDeclaration", + "firstPos" : 7771, + "secondPos" : 7803, + "firstEndPos" : 8984, + "secondEndPos" : 8802 +}, { + "firstType" : "EnhancedForStatement", + "secondType" : "EnhancedForStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7775, + "secondPos" : 7807, + "firstEndPos" : 8981, + "secondEndPos" : 8799 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 7780, + "secondPos" : 7812, + "firstEndPos" : 7807, + "secondEndPos" : 7839 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7780, + "secondPos" : 7812, + "firstEndPos" : 7801, + "secondEndPos" : 7833 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Entry", + "secondLabel" : "Entry", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7780, + "secondPos" : 7812, + "firstEndPos" : 7785, + "secondEndPos" : 7817 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7780, + "secondPos" : 7812, + "firstEndPos" : 7785, + "secondEndPos" : 7817 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7786, + "secondPos" : 7818, + "firstEndPos" : 7792, + "secondEndPos" : 7824 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7786, + "secondPos" : 7818, + "firstEndPos" : 7792, + "secondEndPos" : 7824 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7794, + "secondPos" : 7826, + "firstEndPos" : 7800, + "secondEndPos" : 7832 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 7794, + "secondPos" : 7826, + "firstEndPos" : 7800, + "secondEndPos" : 7832 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "entry", + "secondLabel" : "entry", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 7802, + "secondPos" : 7834, + "firstEndPos" : 7807, + "secondEndPos" : 7839 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 7810, + "secondPos" : 7842, + "firstEndPos" : 7826, + "secondEndPos" : 7858 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7810, + "secondPos" : 7842, + "firstEndPos" : 7815, + "secondEndPos" : 7847 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "input", + "secondLabel" : "input", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 7810, + "secondPos" : 7842, + "firstEndPos" : 7815, + "secondEndPos" : 7847 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "entrySet", + "secondLabel" : "entrySet", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7816, + "secondPos" : 7848, + "firstEndPos" : 7824, + "secondEndPos" : 7856 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 7828, + "secondPos" : 7860, + "firstEndPos" : 8981, + "secondEndPos" : 8799 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7833, + "secondPos" : 7865, + "firstEndPos" : 7861, + "secondEndPos" : 7911 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 7833, + "secondPos" : 7865, + "firstEndPos" : 7839, + "secondEndPos" : 7871 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 7833, + "secondPos" : 7865, + "firstEndPos" : 7839, + "secondEndPos" : 7871 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 7840, + "secondPos" : 7872, + "firstEndPos" : 7860, + "secondEndPos" : 7910 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 7840, + "secondPos" : 7872, + "firstEndPos" : 7843, + "secondEndPos" : 7875 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "ReturnStatement", + "firstPos" : 7840, + "secondPos" : 8904, + "firstEndPos" : 7843, + "secondEndPos" : 8907 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 7846, + "secondPos" : 7895, + "firstEndPos" : 7860, + "secondEndPos" : 7909 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7846, + "secondPos" : 7895, + "firstEndPos" : 7851, + "secondEndPos" : 7900 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "entry", + "secondLabel" : "entry", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 7846, + "secondPos" : 7895, + "firstEndPos" : 7851, + "secondEndPos" : 7900 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getKey", + "secondLabel" : "getKey", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7852, + "secondPos" : 7901, + "firstEndPos" : 7858, + "secondEndPos" : 7907 +}, { + "firstType" : "IfStatement", + "secondType" : "IfStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7865, + "secondPos" : 8860, + "firstEndPos" : 8008, + "secondEndPos" : 8912 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "PrefixExpression", + "firstPos" : 7869, + "secondPos" : 8865, + "firstEndPos" : 7894, + "secondEndPos" : 8890 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7869, + "secondPos" : 8865, + "firstEndPos" : 7880, + "secondEndPos" : 8876 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "StringUtils", + "secondLabel" : "StringUtils", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 7869, + "secondPos" : 8865, + "firstEndPos" : 7880, + "secondEndPos" : 8876 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "hasText", + "secondLabel" : "hasText", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7881, + "secondPos" : 8877, + "firstEndPos" : 7888, + "secondEndPos" : 8884 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7889, + "secondPos" : 8885, + "firstEndPos" : 7893, + "secondEndPos" : 8889 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "path", + "secondLabel" : "path", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 7889, + "secondPos" : 8885, + "firstEndPos" : 7893, + "secondEndPos" : 8889 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 7896, + "secondPos" : 8892, + "firstEndPos" : 8008, + "secondEndPos" : 8912 +}, { + "firstType" : "IfStatement", + "secondType" : "IfStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7902, + "secondPos" : 8915, + "firstEndPos" : 8003, + "secondEndPos" : 8967 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 7906, + "secondPos" : 8919, + "firstEndPos" : 7925, + "secondEndPos" : 8938 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7906, + "secondPos" : 8919, + "firstEndPos" : 7909, + "secondEndPos" : 8922 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 7906, + "secondPos" : 8919, + "firstEndPos" : 7909, + "secondEndPos" : 8922 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "startsWith", + "secondLabel" : "startsWith", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7910, + "secondPos" : 8923, + "firstEndPos" : 7920, + "secondEndPos" : 8933 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 7921, + "secondPos" : 8934, + "firstEndPos" : 7924, + "secondEndPos" : 8937 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"[\"", + "secondLabel" : "\"[\"", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 7921, + "secondPos" : 8934, + "firstEndPos" : 7924, + "secondEndPos" : 8937 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 7927, + "secondPos" : 8940, + "firstEndPos" : 7957, + "secondEndPos" : 8967 +}, { + "firstType" : "InfixExpression", + "secondType" : "InfixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Assignment", + "secondParentType" : "ReturnStatement", + "firstPos" : 7940, + "secondPos" : 8952, + "firstEndPos" : 7950, + "secondEndPos" : 8962 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "path", + "secondLabel" : "path", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7940, + "secondPos" : 8952, + "firstEndPos" : 7944, + "secondEndPos" : 8956 +}, { + "firstType" : "INFIX_EXPRESSION_OPERATOR", + "secondType" : "INFIX_EXPRESSION_OPERATOR", + "firstLabel" : "+", + "secondLabel" : "+", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7945, + "secondPos" : 8957, + "firstEndPos" : 7946, + "secondEndPos" : 8958 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7947, + "secondPos" : 8959, + "firstEndPos" : 7950, + "secondEndPos" : 8962 +}, { + "firstType" : "InfixExpression", + "secondType" : "InfixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Assignment", + "secondParentType" : "ReturnStatement", + "firstPos" : 7980, + "secondPos" : 8977, + "firstEndPos" : 7996, + "secondEndPos" : 8993 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "path", + "secondLabel" : "path", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7980, + "secondPos" : 8977, + "firstEndPos" : 7984, + "secondEndPos" : 8981 +}, { + "firstType" : "INFIX_EXPRESSION_OPERATOR", + "secondType" : "INFIX_EXPRESSION_OPERATOR", + "firstLabel" : "+", + "secondLabel" : "+", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7985, + "secondPos" : 8982, + "firstEndPos" : 7986, + "secondEndPos" : 8983 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\".\"", + "secondLabel" : "\".\"", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7987, + "secondPos" : 8984, + "firstEndPos" : 7990, + "secondEndPos" : 8987 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 7993, + "secondPos" : 8990, + "firstEndPos" : 7996, + "secondEndPos" : 8993 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8012, + "secondPos" : 7915, + "firstEndPos" : 8044, + "secondEndPos" : 7947 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8012, + "secondPos" : 7915, + "firstEndPos" : 8018, + "secondEndPos" : 7921 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 8012, + "secondPos" : 7915, + "firstEndPos" : 8018, + "secondEndPos" : 7921 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 8019, + "secondPos" : 7922, + "firstEndPos" : 8043, + "secondEndPos" : 7946 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 8019, + "secondPos" : 7922, + "firstEndPos" : 8024, + "secondEndPos" : 7927 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 8027, + "secondPos" : 7930, + "firstEndPos" : 8043, + "secondEndPos" : 7946 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8027, + "secondPos" : 7930, + "firstEndPos" : 8032, + "secondEndPos" : 7935 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "entry", + "secondLabel" : "entry", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 8027, + "secondPos" : 7930, + "firstEndPos" : 8032, + "secondEndPos" : 7935 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getValue", + "secondLabel" : "getValue", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8033, + "secondPos" : 7936, + "firstEndPos" : 8041, + "secondEndPos" : 7944 +}, { + "firstType" : "IfStatement", + "secondType" : "IfStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "IfStatement", + "firstPos" : 8048, + "secondPos" : 8485, + "firstEndPos" : 8977, + "secondEndPos" : 8795 +}, { + "firstType" : "InstanceofExpression", + "secondType" : "InstanceofExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8052, + "secondPos" : 8489, + "firstEndPos" : 8075, + "secondEndPos" : 8512 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "InstanceofExpression", + "secondParentType" : "InstanceofExpression", + "firstPos" : 8052, + "secondPos" : 8489, + "firstEndPos" : 8057, + "secondEndPos" : 8494 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8069, + "secondPos" : 8506, + "firstEndPos" : 8075, + "secondEndPos" : 8512 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "InstanceofExpression", + "secondParentType" : "InstanceofExpression", + "firstPos" : 8069, + "secondPos" : 8506, + "firstEndPos" : 8075, + "secondEndPos" : 8512 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8077, + "secondPos" : 8514, + "firstEndPos" : 8115, + "secondEndPos" : 8552 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8083, + "secondPos" : 8520, + "firstEndPos" : 8110, + "secondEndPos" : 8547 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 8083, + "secondPos" : 8520, + "firstEndPos" : 8109, + "secondEndPos" : 8546 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8083, + "secondPos" : 8520, + "firstEndPos" : 8093, + "secondEndPos" : 8530 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 8083, + "secondPos" : 8520, + "firstEndPos" : 8093, + "secondEndPos" : 8530 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "put", + "secondLabel" : "put", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8094, + "secondPos" : 8531, + "firstEndPos" : 8097, + "secondEndPos" : 8534 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8098, + "secondPos" : 8535, + "firstEndPos" : 8108, + "secondEndPos" : 8545 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8098, + "secondPos" : 8535, + "firstEndPos" : 8101, + "secondEndPos" : 8538 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8103, + "secondPos" : 8540, + "firstEndPos" : 8108, + "secondEndPos" : 8545 +}, { + "firstType" : "IfStatement", + "secondType" : "IfStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8124, + "secondPos" : 8561, + "firstEndPos" : 8977, + "secondEndPos" : 8795 +}, { + "firstType" : "InstanceofExpression", + "secondType" : "InstanceofExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8128, + "secondPos" : 8565, + "firstEndPos" : 8151, + "secondEndPos" : 8588 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "InstanceofExpression", + "secondParentType" : "InstanceofExpression", + "firstPos" : 8128, + "secondPos" : 8565, + "firstEndPos" : 8133, + "secondEndPos" : 8570 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Number", + "secondLabel" : "Number", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8145, + "secondPos" : 8582, + "firstEndPos" : 8151, + "secondEndPos" : 8588 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "InstanceofExpression", + "secondParentType" : "InstanceofExpression", + "firstPos" : 8145, + "secondPos" : 8582, + "firstEndPos" : 8151, + "secondEndPos" : 8588 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8153, + "secondPos" : 8590, + "firstEndPos" : 8202, + "secondEndPos" : 8639 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8159, + "secondPos" : 8596, + "firstEndPos" : 8197, + "secondEndPos" : 8634 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 8159, + "secondPos" : 8596, + "firstEndPos" : 8196, + "secondEndPos" : 8633 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8159, + "secondPos" : 8596, + "firstEndPos" : 8169, + "secondEndPos" : 8606 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 8159, + "secondPos" : 8596, + "firstEndPos" : 8169, + "secondEndPos" : 8606 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "put", + "secondLabel" : "put", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8170, + "secondPos" : 8607, + "firstEndPos" : 8173, + "secondEndPos" : 8610 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8174, + "secondPos" : 8611, + "firstEndPos" : 8195, + "secondEndPos" : 8632 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8174, + "secondPos" : 8611, + "firstEndPos" : 8177, + "secondEndPos" : 8614 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8179, + "secondPos" : 8616, + "firstEndPos" : 8195, + "secondEndPos" : 8632 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8179, + "secondPos" : 8616, + "firstEndPos" : 8184, + "secondEndPos" : 8621 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 8179, + "secondPos" : 8616, + "firstEndPos" : 8184, + "secondEndPos" : 8621 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "toString", + "secondLabel" : "toString", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8185, + "secondPos" : 8622, + "firstEndPos" : 8193, + "secondEndPos" : 8630 +}, { + "firstType" : "IfStatement", + "secondType" : "IfStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8211, + "secondPos" : 8648, + "firstEndPos" : 8977, + "secondEndPos" : 8795 +}, { + "firstType" : "InstanceofExpression", + "secondType" : "InstanceofExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8215, + "secondPos" : 8652, + "firstEndPos" : 8239, + "secondEndPos" : 8676 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "InstanceofExpression", + "secondParentType" : "InstanceofExpression", + "firstPos" : 8215, + "secondPos" : 8652, + "firstEndPos" : 8220, + "secondEndPos" : 8657 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Boolean", + "secondLabel" : "Boolean", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8232, + "secondPos" : 8669, + "firstEndPos" : 8239, + "secondEndPos" : 8676 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "InstanceofExpression", + "secondParentType" : "InstanceofExpression", + "firstPos" : 8232, + "secondPos" : 8669, + "firstEndPos" : 8239, + "secondEndPos" : 8676 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8241, + "secondPos" : 8678, + "firstEndPos" : 8290, + "secondEndPos" : 8727 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8247, + "secondPos" : 8684, + "firstEndPos" : 8285, + "secondEndPos" : 8722 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 8247, + "secondPos" : 8684, + "firstEndPos" : 8284, + "secondEndPos" : 8721 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8247, + "secondPos" : 8684, + "firstEndPos" : 8257, + "secondEndPos" : 8694 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 8247, + "secondPos" : 8684, + "firstEndPos" : 8257, + "secondEndPos" : 8694 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "put", + "secondLabel" : "put", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8258, + "secondPos" : 8695, + "firstEndPos" : 8261, + "secondEndPos" : 8698 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8262, + "secondPos" : 8699, + "firstEndPos" : 8283, + "secondEndPos" : 8720 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8262, + "secondPos" : 8699, + "firstEndPos" : 8265, + "secondEndPos" : 8702 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8267, + "secondPos" : 8704, + "firstEndPos" : 8283, + "secondEndPos" : 8720 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8267, + "secondPos" : 8704, + "firstEndPos" : 8272, + "secondEndPos" : 8709 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 8267, + "secondPos" : 8704, + "firstEndPos" : 8272, + "secondEndPos" : 8709 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "toString", + "secondLabel" : "toString", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8273, + "secondPos" : 8710, + "firstEndPos" : 8281, + "secondEndPos" : 8718 +}, { + "firstType" : "IfStatement", + "secondType" : "IfStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "Block", + "firstPos" : 8299, + "secondPos" : 7951, + "firstEndPos" : 8977, + "secondEndPos" : 8795 +}, { + "firstType" : "InstanceofExpression", + "secondType" : "InstanceofExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8303, + "secondPos" : 7955, + "firstEndPos" : 8323, + "secondEndPos" : 7975 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "InstanceofExpression", + "secondParentType" : "InstanceofExpression", + "firstPos" : 8303, + "secondPos" : 7955, + "firstEndPos" : 8308, + "secondEndPos" : 7960 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Map", + "secondLabel" : "Map", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8320, + "secondPos" : 7972, + "firstEndPos" : 8323, + "secondEndPos" : 7975 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "InstanceofExpression", + "secondParentType" : "InstanceofExpression", + "firstPos" : 8320, + "secondPos" : 7972, + "firstEndPos" : 8323, + "secondEndPos" : 7975 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8325, + "secondPos" : 7977, + "firstEndPos" : 8487, + "secondEndPos" : 8069 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Need a compound key", + "secondLabel" : "// Need a compound key", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8331, + "secondPos" : 7983, + "firstEndPos" : 8353, + "secondEndPos" : 8005 +}, { + "firstType" : "CastExpression", + "secondType" : "CastExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8419, + "secondPos" : 8030, + "firstEndPos" : 8446, + "secondEndPos" : 8057 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CastExpression", + "secondParentType" : "CastExpression", + "firstPos" : 8420, + "secondPos" : 8031, + "firstEndPos" : 8439, + "secondEndPos" : 8050 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Map", + "secondLabel" : "Map", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8420, + "secondPos" : 8031, + "firstEndPos" : 8423, + "secondEndPos" : 8034 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 8420, + "secondPos" : 8031, + "firstEndPos" : 8423, + "secondEndPos" : 8034 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8424, + "secondPos" : 8035, + "firstEndPos" : 8430, + "secondEndPos" : 8041 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 8424, + "secondPos" : 8035, + "firstEndPos" : 8430, + "secondEndPos" : 8041 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8432, + "secondPos" : 8043, + "firstEndPos" : 8438, + "secondEndPos" : 8049 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 8432, + "secondPos" : 8043, + "firstEndPos" : 8438, + "secondEndPos" : 8049 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "CastExpression", + "secondParentType" : "CastExpression", + "firstPos" : 8441, + "secondPos" : 8052, + "firstEndPos" : 8446, + "secondEndPos" : 8057 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8452, + "secondPos" : 8010, + "firstEndPos" : 8482, + "secondEndPos" : 8064 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 8452, + "secondPos" : 8010, + "firstEndPos" : 8481, + "secondEndPos" : 8063 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "flatten", + "secondLabel" : "flatten", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8452, + "secondPos" : 8010, + "firstEndPos" : 8459, + "secondEndPos" : 8017 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8460, + "secondPos" : 8018, + "firstEndPos" : 8480, + "secondEndPos" : 8062 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8460, + "secondPos" : 8018, + "firstEndPos" : 8470, + "secondEndPos" : 8028 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8477, + "secondPos" : 8059, + "firstEndPos" : 8480, + "secondEndPos" : 8062 +}, { + "firstType" : "IfStatement", + "secondType" : "IfStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8496, + "secondPos" : 8078, + "firstEndPos" : 8977, + "secondEndPos" : 8795 +}, { + "firstType" : "InstanceofExpression", + "secondType" : "InstanceofExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8500, + "secondPos" : 8082, + "firstEndPos" : 8527, + "secondEndPos" : 8109 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "InstanceofExpression", + "secondParentType" : "InstanceofExpression", + "firstPos" : 8500, + "secondPos" : 8082, + "firstEndPos" : 8505, + "secondEndPos" : 8087 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Collection", + "secondLabel" : "Collection", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8517, + "secondPos" : 8099, + "firstEndPos" : 8527, + "secondEndPos" : 8109 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "InstanceofExpression", + "secondParentType" : "InstanceofExpression", + "firstPos" : 8517, + "secondPos" : 8099, + "firstEndPos" : 8527, + "secondEndPos" : 8109 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8529, + "secondPos" : 8111, + "firstEndPos" : 8909, + "secondEndPos" : 8476 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Need a compound key", + "secondLabel" : "// Need a compound key", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8535, + "secondPos" : 8117, + "firstEndPos" : 8557, + "secondEndPos" : 8139 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8562, + "secondPos" : 8144, + "firstEndPos" : 8656, + "secondEndPos" : 8203 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 8597, + "secondPos" : 8144, + "firstEndPos" : 8615, + "secondEndPos" : 8162 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Collection", + "secondLabel" : "Collection", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8597, + "secondPos" : 8144, + "firstEndPos" : 8607, + "secondEndPos" : 8154 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 8597, + "secondPos" : 8144, + "firstEndPos" : 8607, + "secondEndPos" : 8154 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8608, + "secondPos" : 8155, + "firstEndPos" : 8614, + "secondEndPos" : 8161 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 8608, + "secondPos" : 8155, + "firstEndPos" : 8614, + "secondEndPos" : 8161 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 8616, + "secondPos" : 8163, + "firstEndPos" : 8655, + "secondEndPos" : 8202 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "collection", + "secondLabel" : "collection", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 8616, + "secondPos" : 8163, + "firstEndPos" : 8626, + "secondEndPos" : 8173 +}, { + "firstType" : "CastExpression", + "secondType" : "CastExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 8629, + "secondPos" : 8176, + "firstEndPos" : 8655, + "secondEndPos" : 8202 +}, { + "firstType" : "ParameterizedType", + "secondType" : "ParameterizedType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "CastExpression", + "secondParentType" : "CastExpression", + "firstPos" : 8630, + "secondPos" : 8177, + "firstEndPos" : 8648, + "secondEndPos" : 8195 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Collection", + "secondLabel" : "Collection", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8630, + "secondPos" : 8177, + "firstEndPos" : 8640, + "secondEndPos" : 8187 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 8630, + "secondPos" : 8177, + "firstEndPos" : 8640, + "secondEndPos" : 8187 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8641, + "secondPos" : 8188, + "firstEndPos" : 8647, + "secondEndPos" : 8194 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParameterizedType", + "secondParentType" : "ParameterizedType", + "firstPos" : 8641, + "secondPos" : 8188, + "firstEndPos" : 8647, + "secondEndPos" : 8194 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "CastExpression", + "secondParentType" : "CastExpression", + "firstPos" : 8650, + "secondPos" : 8197, + "firstEndPos" : 8655, + "secondEndPos" : 8202 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8661, + "secondPos" : 8208, + "firstEndPos" : 8745, + "secondEndPos" : 8292 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 8661, + "secondPos" : 8208, + "firstEndPos" : 8744, + "secondEndPos" : 8291 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8661, + "secondPos" : 8208, + "firstEndPos" : 8671, + "secondEndPos" : 8218 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 8661, + "secondPos" : 8208, + "firstEndPos" : 8671, + "secondEndPos" : 8218 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "put", + "secondLabel" : "put", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8672, + "secondPos" : 8219, + "firstEndPos" : 8675, + "secondEndPos" : 8222 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8676, + "secondPos" : 8223, + "firstEndPos" : 8743, + "secondEndPos" : 8290 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8676, + "secondPos" : 8223, + "firstEndPos" : 8679, + "secondEndPos" : 8226 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8687, + "secondPos" : 8234, + "firstEndPos" : 8743, + "secondEndPos" : 8290 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8687, + "secondPos" : 8234, + "firstEndPos" : 8698, + "secondEndPos" : 8245 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "StringUtils", + "secondLabel" : "StringUtils", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 8687, + "secondPos" : 8234, + "firstEndPos" : 8698, + "secondEndPos" : 8245 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "collectionToCommaDelimitedString", + "secondLabel" : "collectionToCommaDelimitedString", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8699, + "secondPos" : 8246, + "firstEndPos" : 8731, + "secondEndPos" : 8278 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8732, + "secondPos" : 8279, + "firstEndPos" : 8742, + "secondEndPos" : 8289 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "collection", + "secondLabel" : "collection", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8732, + "secondPos" : 8279, + "firstEndPos" : 8742, + "secondEndPos" : 8289 +}, { + "firstType" : "VariableDeclarationStatement", + "secondType" : "VariableDeclarationStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8750, + "secondPos" : 8297, + "firstEndPos" : 8764, + "secondEndPos" : 8311 +}, { + "firstType" : "PrimitiveType", + "secondType" : "PrimitiveType", + "firstLabel" : "int", + "secondLabel" : "int", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 8750, + "secondPos" : 8297, + "firstEndPos" : 8753, + "secondEndPos" : 8300 +}, { + "firstType" : "VariableDeclarationFragment", + "secondType" : "VariableDeclarationFragment", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "VariableDeclarationStatement", + "firstPos" : 8754, + "secondPos" : 8301, + "firstEndPos" : 8763, + "secondEndPos" : 8310 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "count", + "secondLabel" : "count", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 8754, + "secondPos" : 8301, + "firstEndPos" : 8759, + "secondEndPos" : 8306 +}, { + "firstType" : "NumberLiteral", + "secondType" : "NumberLiteral", + "firstLabel" : "0", + "secondLabel" : "0", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 8762, + "secondPos" : 8309, + "firstEndPos" : 8763, + "secondEndPos" : 8310 +}, { + "firstType" : "EnhancedForStatement", + "secondType" : "EnhancedForStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8769, + "secondPos" : 8316, + "firstEndPos" : 8904, + "secondEndPos" : 8471 +}, { + "firstType" : "SingleVariableDeclaration", + "secondType" : "SingleVariableDeclaration", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 8774, + "secondPos" : 8321, + "firstEndPos" : 8787, + "secondEndPos" : 8332 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Object", + "secondLabel" : "Object", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8774, + "secondPos" : 8321, + "firstEndPos" : 8780, + "secondEndPos" : 8327 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 8774, + "secondPos" : 8321, + "firstEndPos" : 8780, + "secondEndPos" : 8327 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "object", + "secondLabel" : "item", + "firstParentType" : "SingleVariableDeclaration", + "secondParentType" : "SingleVariableDeclaration", + "firstPos" : 8781, + "secondPos" : 8328, + "firstEndPos" : 8787, + "secondEndPos" : 8332 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "collection", + "secondLabel" : "collection", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 8790, + "secondPos" : 8335, + "firstEndPos" : 8800, + "secondEndPos" : 8345 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "EnhancedForStatement", + "secondParentType" : "EnhancedForStatement", + "firstPos" : 8802, + "secondPos" : 8347, + "firstEndPos" : 8904, + "secondEndPos" : 8471 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8809, + "secondPos" : 8399, + "firstEndPos" : 8898, + "secondEndPos" : 8465 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 8809, + "secondPos" : 8399, + "firstEndPos" : 8897, + "secondEndPos" : 8464 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "flatten", + "secondLabel" : "flatten", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8809, + "secondPos" : 8399, + "firstEndPos" : 8816, + "secondEndPos" : 8406 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8817, + "secondPos" : 8407, + "firstEndPos" : 8896, + "secondEndPos" : 8463 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8817, + "secondPos" : 8407, + "firstEndPos" : 8827, + "secondEndPos" : 8417 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8836, + "secondPos" : 8419, + "firstEndPos" : 8891, + "secondEndPos" : 8458 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8836, + "secondPos" : 8419, + "firstEndPos" : 8847, + "secondEndPos" : 8430 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "Collections", + "secondLabel" : "Collections", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 8836, + "secondPos" : 8419, + "firstEndPos" : 8847, + "secondEndPos" : 8430 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "singletonMap", + "secondLabel" : "singletonMap", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8848, + "secondPos" : 8431, + "firstEndPos" : 8860, + "secondEndPos" : 8443 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8861, + "secondPos" : 8444, + "firstEndPos" : 8890, + "secondEndPos" : 8457 +}, { + "firstType" : "InfixExpression", + "secondType" : "InfixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "VariableDeclarationFragment", + "firstPos" : 8861, + "secondPos" : 8371, + "firstEndPos" : 8882, + "secondEndPos" : 8392 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"[\"", + "secondLabel" : "\"[\"", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 8861, + "secondPos" : 8371, + "firstEndPos" : 8864, + "secondEndPos" : 8374 +}, { + "firstType" : "INFIX_EXPRESSION_OPERATOR", + "secondType" : "INFIX_EXPRESSION_OPERATOR", + "firstLabel" : "+", + "secondLabel" : "+", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 8865, + "secondPos" : 8375, + "firstEndPos" : 8866, + "secondEndPos" : 8376 +}, { + "firstType" : "ParenthesizedExpression", + "secondType" : "ParenthesizedExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 8867, + "secondPos" : 8377, + "firstEndPos" : 8876, + "secondEndPos" : 8386 +}, { + "firstType" : "PostfixExpression", + "secondType" : "PostfixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ParenthesizedExpression", + "secondParentType" : "ParenthesizedExpression", + "firstPos" : 8868, + "secondPos" : 8378, + "firstEndPos" : 8875, + "secondEndPos" : 8385 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "count", + "secondLabel" : "count", + "firstParentType" : "PostfixExpression", + "secondParentType" : "PostfixExpression", + "firstPos" : 8868, + "secondPos" : 8378, + "firstEndPos" : 8873, + "secondEndPos" : 8383 +}, { + "firstType" : "POSTFIX_EXPRESSION_OPERATOR", + "secondType" : "POSTFIX_EXPRESSION_OPERATOR", + "firstLabel" : "++", + "secondLabel" : "++", + "firstParentType" : "PostfixExpression", + "secondParentType" : "PostfixExpression", + "firstPos" : 8873, + "secondPos" : 8383, + "firstEndPos" : 8875, + "secondEndPos" : 8385 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"]\"", + "secondLabel" : "\"]\"", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 8879, + "secondPos" : 8389, + "firstEndPos" : 8882, + "secondEndPos" : 8392 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "object", + "secondLabel" : "item", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8884, + "secondPos" : 8453, + "firstEndPos" : 8890, + "secondEndPos" : 8457 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8893, + "secondPos" : 8460, + "firstEndPos" : 8896, + "secondEndPos" : 8463 +}, { + "firstType" : "Block", + "secondType" : "Block", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "IfStatement", + "secondParentType" : "IfStatement", + "firstPos" : 8918, + "secondPos" : 8736, + "firstEndPos" : 8977, + "secondEndPos" : 8795 +}, { + "firstType" : "ExpressionStatement", + "secondType" : "ExpressionStatement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8924, + "secondPos" : 8742, + "firstEndPos" : 8972, + "secondEndPos" : 8790 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ExpressionStatement", + "secondParentType" : "ExpressionStatement", + "firstPos" : 8924, + "secondPos" : 8742, + "firstEndPos" : 8971, + "secondEndPos" : 8789 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8924, + "secondPos" : 8742, + "firstEndPos" : 8934, + "secondEndPos" : 8752 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "properties", + "secondLabel" : "properties", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 8924, + "secondPos" : 8742, + "firstEndPos" : 8934, + "secondEndPos" : 8752 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "put", + "secondLabel" : "put", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8935, + "secondPos" : 8753, + "firstEndPos" : 8938, + "secondEndPos" : 8756 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8939, + "secondPos" : 8757, + "firstEndPos" : 8970, + "secondEndPos" : 8788 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "key", + "secondLabel" : "key", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8939, + "secondPos" : 8757, + "firstEndPos" : 8942, + "secondEndPos" : 8760 +}, { + "firstType" : "ConditionalExpression", + "secondType" : "ConditionalExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 8944, + "secondPos" : 8762, + "firstEndPos" : 8970, + "secondEndPos" : 8788 +}, { + "firstType" : "InfixExpression", + "secondType" : "InfixExpression", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "ConditionalExpression", + "secondParentType" : "ConditionalExpression", + "firstPos" : 8944, + "secondPos" : 8762, + "firstEndPos" : 8957, + "secondEndPos" : 8775 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 8944, + "secondPos" : 8762, + "firstEndPos" : 8949, + "secondEndPos" : 8767 +}, { + "firstType" : "INFIX_EXPRESSION_OPERATOR", + "secondType" : "INFIX_EXPRESSION_OPERATOR", + "firstLabel" : "==", + "secondLabel" : "==", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 8950, + "secondPos" : 8768, + "firstEndPos" : 8952, + "secondEndPos" : 8770 +}, { + "firstType" : "NullLiteral", + "secondType" : "NullLiteral", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "InfixExpression", + "secondParentType" : "InfixExpression", + "firstPos" : 8953, + "secondPos" : 8771, + "firstEndPos" : 8957, + "secondEndPos" : 8775 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"\"", + "secondLabel" : "\"\"", + "firstParentType" : "ConditionalExpression", + "secondParentType" : "ConditionalExpression", + "firstPos" : 8960, + "secondPos" : 8778, + "firstEndPos" : 8962, + "secondEndPos" : 8780 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "value", + "secondLabel" : "value", + "firstParentType" : "ConditionalExpression", + "secondParentType" : "ConditionalExpression", + "firstPos" : 8965, + "secondPos" : 8783, + "firstEndPos" : 8970, + "secondEndPos" : 8788 +} ] \ No newline at end of file diff --git a/src/test/resources/astDiff/commits/Alluxio_alluxio/0ba343846f21649e29ffc600f30a7f3e463fb24c/servers.src.main.java.tachyon.worker.block.meta.TempBlockMeta.json b/src/test/resources/astDiff/commits/Alluxio_alluxio/0ba343846f21649e29ffc600f30a7f3e463fb24c/servers.src.main.java.tachyon.worker.block.meta.TempBlockMeta.json index 061b44da2f..380108a72a 100644 --- a/src/test/resources/astDiff/commits/Alluxio_alluxio/0ba343846f21649e29ffc600f30a7f3e463fb24c/servers.src.main.java.tachyon.worker.block.meta.TempBlockMeta.json +++ b/src/test/resources/astDiff/commits/Alluxio_alluxio/0ba343846f21649e29ffc600f30a7f3e463fb24c/servers.src.main.java.tachyon.worker.block.meta.TempBlockMeta.json @@ -53,6 +53,28 @@ "secondPos" : 865, "firstEndPos" : 75, "secondEndPos" : 950 +}, { + "firstType" : "TagElement", + "secondType" : "TagElement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Javadoc", + "secondParentType" : "Javadoc", + "firstPos" : 43, + "secondPos" : 872, + "firstEndPos" : 71, + "secondEndPos" : 946 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "Created by binfan on 6/9/15.", + "secondLabel" : "Represents the metadata of an uncommited block in Tachyon managed storage.", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 43, + "secondPos" : 872, + "firstEndPos" : 71, + "secondEndPos" : 946 }, { "firstType" : "Modifier", "secondType" : "Modifier", diff --git a/src/test/resources/astDiff/commits/Alluxio_alluxio/b0938501f1014cf663e33b44ed5bb9b24d19a358/integration-tests.src.test.java.tachyon.client.BlockOutStreamIntegrationTest.json b/src/test/resources/astDiff/commits/Alluxio_alluxio/b0938501f1014cf663e33b44ed5bb9b24d19a358/integration-tests.src.test.java.tachyon.client.BlockOutStreamIntegrationTest.json index 1a241f3fc1..09215fcece 100644 --- a/src/test/resources/astDiff/commits/Alluxio_alluxio/b0938501f1014cf663e33b44ed5bb9b24d19a358/integration-tests.src.test.java.tachyon.client.BlockOutStreamIntegrationTest.json +++ b/src/test/resources/astDiff/commits/Alluxio_alluxio/b0938501f1014cf663e33b44ed5bb9b24d19a358/integration-tests.src.test.java.tachyon.client.BlockOutStreamIntegrationTest.json @@ -20,6 +20,17 @@ "secondPos" : 0, "firstEndPos" : 791, "secondEndPos" : 791 +}, { + "firstType" : "BlockComment", + "secondType" : "BlockComment", + "firstLabel" : "/*\n * Licensed to the University of California, Berkeley under one or more contributor license\n * agreements. See the NOTICE file distributed with this work for additional information regarding\n * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance with the License. You may obtain a\n * copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under the License\n * is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express\n * or implied. See the License for the specific language governing permissions and limitations under\n * the License.\n */", + "secondLabel" : "/*\n * Licensed to the University of California, Berkeley under one or more contributor license\n * agreements. See the NOTICE file distributed with this work for additional information regarding\n * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance with the License. You may obtain a\n * copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under the License\n * is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express\n * or implied. See the License for the specific language governing permissions and limitations under\n * the License.\n */", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 0, + "secondPos" : 0, + "firstEndPos" : 791, + "secondEndPos" : 791 }, { "firstType" : "PackageDeclaration", "secondType" : "PackageDeclaration", diff --git a/src/test/resources/astDiff/commits/AsyncHttpClient_async-http-client/f01d8610b9ceebc1de59d42f569b8af3efbe0a0f/api.src.main.java.org.asynchttpclient.oauth.OAuthSignatureCalculator.json b/src/test/resources/astDiff/commits/AsyncHttpClient_async-http-client/f01d8610b9ceebc1de59d42f569b8af3efbe0a0f/api.src.main.java.org.asynchttpclient.oauth.OAuthSignatureCalculator.json index 6e0ad2f5a3..8200f2b5f5 100644 --- a/src/test/resources/astDiff/commits/AsyncHttpClient_async-http-client/f01d8610b9ceebc1de59d42f569b8af3efbe0a0f/api.src.main.java.org.asynchttpclient.oauth.OAuthSignatureCalculator.json +++ b/src/test/resources/astDiff/commits/AsyncHttpClient_async-http-client/f01d8610b9ceebc1de59d42f569b8af3efbe0a0f/api.src.main.java.org.asynchttpclient.oauth.OAuthSignatureCalculator.json @@ -9,6 +9,17 @@ "secondPos" : 0, "firstEndPos" : 11722, "secondEndPos" : 12185 +}, { + "firstType" : "BlockComment", + "secondType" : "BlockComment", + "firstLabel" : "/*\n * Copyright 2010 Ning, Inc.\n *\n * Ning licenses this file to you under the Apache License, version 2.0\n * (the \"License\"); you may not use this file except in compliance with the\n * License. You may obtain a copy of the License at:\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and limitations\n * under the License.\n *\n */", + "secondLabel" : "/*\n * Copyright 2010 Ning, Inc.\n *\n * Ning licenses this file to you under the Apache License, version 2.0\n * (the \"License\"); you may not use this file except in compliance with the\n * License. You may obtain a copy of the License at:\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and limitations\n * under the License.\n *\n */", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 0, + "secondPos" : 0, + "firstEndPos" : 620, + "secondEndPos" : 620 }, { "firstType" : "PackageDeclaration", "secondType" : "PackageDeclaration", @@ -471,6 +482,17 @@ "secondPos" : 1635, "firstEndPos" : 1671, "secondEndPos" : 1671 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@author", + "secondLabel" : "@author", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1635, + "secondPos" : 1635, + "firstEndPos" : 1642, + "secondEndPos" : 1642 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -2154,6 +2176,17 @@ "secondPos" : 2791, "firstEndPos" : 2856, "secondEndPos" : 2856 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 2791, + "secondPos" : 2791, + "firstEndPos" : 2797, + "secondEndPos" : 2797 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -2187,6 +2220,17 @@ "secondPos" : 2864, "firstEndPos" : 2937, "secondEndPos" : 2937 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 2864, + "secondPos" : 2864, + "firstEndPos" : 2870, + "secondEndPos" : 2870 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -3518,6 +3562,17 @@ "secondPos" : 3718, "firstEndPos" : 4445, "secondEndPos" : 4445 +}, { + "firstType" : "BlockComment", + "secondType" : "BlockComment", + "firstLabel" : "/* 07-Oct-2010, tatu: URL may contain default port number; if so, need to extract\n * from base URL.\n */", + "secondLabel" : "/* 07-Oct-2010, tatu: URL may contain default port number; if so, need to extract\n * from base URL.\n */", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 3728, + "secondPos" : 3728, + "firstEndPos" : 3849, + "secondEndPos" : 3849 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -5223,6 +5278,50 @@ "secondPos" : 4564, "firstEndPos" : 5939, "secondEndPos" : 6181 +}, { + "firstType" : "Javadoc", + "secondType" : "Javadoc", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4574, + "secondPos" : 4574, + "firstEndPos" : 4713, + "secondEndPos" : 4713 +}, { + "firstType" : "TagElement", + "secondType" : "TagElement", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "Javadoc", + "secondParentType" : "Javadoc", + "firstPos" : 4589, + "secondPos" : 4589, + "firstEndPos" : 4701, + "secondEndPos" : 4701 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "List of all query and form parameters added to this request; needed", + "secondLabel" : "List of all query and form parameters added to this request; needed", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 4589, + "secondPos" : 4589, + "firstEndPos" : 4656, + "secondEndPos" : 4656 +}, { + "firstType" : "TextElement", + "secondType" : "TextElement", + "firstLabel" : "for calculating request signature", + "secondLabel" : "for calculating request signature", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 4668, + "secondPos" : 4668, + "firstEndPos" : 4701, + "secondEndPos" : 4701 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -5762,6 +5861,17 @@ "secondPos" : 4995, "firstEndPos" : 5012, "secondEndPos" : 5012 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// start with standard OAuth parameters we need", + "secondLabel" : "// start with standard OAuth parameters we need", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5024, + "secondPos" : 5024, + "firstEndPos" : 5071, + "secondEndPos" : 5071 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -7577,6 +7687,17 @@ "secondPos" : 7257, "firstEndPos" : 7020, "secondEndPos" : 7595 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// beware: must generate first as we're using pooled StringBuilder", + "secondLabel" : "// beware: must generate first as we're using pooled StringBuilder", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6221, + "secondPos" : 6385, + "firstEndPos" : 6287, + "secondEndPos" : 6451 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -7984,6 +8105,17 @@ "secondPos" : 6660, "firstEndPos" : 6502, "secondEndPos" : 6666 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// POST / GET etc (nothing to URL encode)", + "secondLabel" : "// POST / GET etc (nothing to URL encode)", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6505, + "secondPos" : 6669, + "firstEndPos" : 6546, + "secondEndPos" : 6710 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -8149,6 +8281,17 @@ "secondPos" : 6790, "firstEndPos" : 6633, "secondEndPos" : 6797 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// and all that needs to be URL encoded (... again!)", + "secondLabel" : "// and all that needs to be URL encoded (... again!)", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6646, + "secondPos" : 6810, + "firstEndPos" : 6698, + "secondEndPos" : 6862 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -8578,6 +8721,17 @@ "secondPos" : 7488, "firstEndPos" : 6920, "secondEndPos" : 7495 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// and finally, base64 encoded... phew!", + "secondLabel" : "// and finally, base64 encoded... phew!", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6931, + "secondPos" : 7506, + "firstEndPos" : 6970, + "secondEndPos" : 7545 }, { "firstType" : "ReturnStatement", "secondType" : "ReturnStatement", @@ -9942,6 +10096,17 @@ "secondPos" : 8174, "firstEndPos" : 7605, "secondEndPos" : 8180 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// careful: base64 has chars that need URL encoding:", + "secondLabel" : "// careful: base64 has chars that need URL encoding:", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7617, + "secondPos" : 8192, + "firstEndPos" : 7669, + "secondEndPos" : 8244 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -10459,6 +10624,17 @@ "secondPos" : 8464, "firstEndPos" : 7895, "secondEndPos" : 8470 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// also: nonce may contain things that need URL encoding (esp. when using base64):", + "secondLabel" : "// also: nonce may contain things that need URL encoding (esp. when using base64):", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7907, + "secondPos" : 8482, + "firstEndPos" : 7989, + "secondEndPos" : 8564 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -11339,6 +11515,17 @@ "secondPos" : 9067, "firstEndPos" : 8417, "secondEndPos" : 9078 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// let's use base64 encoding over hex, slightly more compact than hex or decimals", + "secondLabel" : "// let's use base64 encoding over hex, slightly more compact than hex or decimals", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8428, + "secondPos" : 9089, + "firstEndPos" : 8509, + "secondEndPos" : 9170 }, { "firstType" : "ReturnStatement", "secondType" : "ReturnStatement", @@ -11416,6 +11603,17 @@ "secondPos" : 9200, "firstEndPos" : 8550, "secondEndPos" : 9211 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// return String.valueOf(Math.abs(random.nextLong()));", + "secondLabel" : "// return String.valueOf(Math.abs(random.nextLong()));", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8553, + "secondPos" : 9214, + "firstEndPos" : 8612, + "secondEndPos" : 9273 }, { "firstType" : "MethodDeclaration", "secondType" : "MethodDeclaration", @@ -12351,6 +12549,17 @@ "secondPos" : 10170, "firstEndPos" : 10342, "secondEndPos" : 10805 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// then sort them (AFTER encoding, important)", + "secondLabel" : "// then sort them (AFTER encoding, important)", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 9721, + "secondPos" : 10184, + "firstEndPos" : 9766, + "secondEndPos" : 10229 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -12659,6 +12868,17 @@ "secondPos" : 10347, "firstEndPos" : 9890, "secondEndPos" : 10353 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// and build parameter section using pre-encoded pieces:", + "secondLabel" : "// and build parameter section using pre-encoded pieces:", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 9906, + "secondPos" : 10369, + "firstEndPos" : 9962, + "secondEndPos" : 10425 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", diff --git a/src/test/resources/astDiff/commits/AsyncHttpClient_async-http-client/f01d8610b9ceebc1de59d42f569b8af3efbe0a0f/api.src.test.java.org.asynchttpclient.oauth.OAuthSignatureCalculatorTest.json b/src/test/resources/astDiff/commits/AsyncHttpClient_async-http-client/f01d8610b9ceebc1de59d42f569b8af3efbe0a0f/api.src.test.java.org.asynchttpclient.oauth.OAuthSignatureCalculatorTest.json index 013d574248..068e553b78 100644 --- a/src/test/resources/astDiff/commits/AsyncHttpClient_async-http-client/f01d8610b9ceebc1de59d42f569b8af3efbe0a0f/api.src.test.java.org.asynchttpclient.oauth.OAuthSignatureCalculatorTest.json +++ b/src/test/resources/astDiff/commits/AsyncHttpClient_async-http-client/f01d8610b9ceebc1de59d42f569b8af3efbe0a0f/api.src.test.java.org.asynchttpclient.oauth.OAuthSignatureCalculatorTest.json @@ -9,6 +9,17 @@ "secondPos" : 0, "firstEndPos" : 7715, "secondEndPos" : 10146 +}, { + "firstType" : "BlockComment", + "secondType" : "BlockComment", + "firstLabel" : "/*\n * Copyright 2010 Ning, Inc.\n *\n * Ning licenses this file to you under the Apache License, version 2.0\n * (the \"License\"); you may not use this file except in compliance with the\n * License. You may obtain a copy of the License at:\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and limitations\n * under the License.\n */", + "secondLabel" : "/*\n * Copyright 2010 Ning, Inc.\n *\n * Ning licenses this file to you under the Apache License, version 2.0\n * (the \"License\"); you may not use this file except in compliance with the\n * License. You may obtain a copy of the License at:\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and limitations\n * under the License.\n */", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 0, + "secondPos" : 0, + "firstEndPos" : 617, + "secondEndPos" : 617 }, { "firstType" : "PackageDeclaration", "secondType" : "PackageDeclaration", @@ -1857,6 +1868,28 @@ "secondPos" : 2349, "firstEndPos" : 2376, "secondEndPos" : 2354 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// based on the reference test case from", + "secondLabel" : "// based on the reference test case from", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 2403, + "secondPos" : 4722, + "firstEndPos" : 2443, + "secondEndPos" : 4762 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// http://oauth.pbwiki.com/TestCases", + "secondLabel" : "// http://oauth.pbwiki.com/TestCases", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 2448, + "secondPos" : 4767, + "firstEndPos" : 2484, + "secondEndPos" : 4803 }, { "firstType" : "MethodDeclaration", "secondType" : "MethodDeclaration", @@ -4321,6 +4354,105 @@ "secondPos" : 6286, "firstEndPos" : 3947, "secondEndPos" : 6291 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// From the signature tester, POST should look like:", + "secondLabel" : "// From the signature tester, POST should look like:", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 3960, + "secondPos" : 6304, + "firstEndPos" : 4012, + "secondEndPos" : 6356 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// normalized parameters: file=vacation.jpg&oauth_consumer_key=dpf43f3p2l4k3l03&oauth_nonce=kllo9940pd9333jh&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1191242096&oauth_token=nnch734d00sl2jdk&oauth_version=1.0&size=original", + "secondLabel" : "// normalized parameters:", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4021, + "secondPos" : 6365, + "firstEndPos" : 4250, + "secondEndPos" : 6390 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// normalized parameters: file=vacation.jpg&oauth_consumer_key=dpf43f3p2l4k3l03&oauth_nonce=kllo9940pd9333jh&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1191242096&oauth_token=nnch734d00sl2jdk&oauth_version=1.0&size=original", + "secondLabel" : "// file=vacation.jpg&oauth_consumer_key=dpf43f3p2l4k3l03&oauth_nonce=kllo9940pd9333jh&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1191242096&oauth_token=nnch734d00sl2jdk&oauth_version=1.0&size=original", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4021, + "secondPos" : 6399, + "firstEndPos" : 4250, + "secondEndPos" : 6605 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// signature base string: POST&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacation.jpg%26oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3Dkllo9940pd9333jh%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1191242096%26oauth_token%3Dnnch734d00sl2jdk%26oauth_version%3D1.0%26size%3Doriginal", + "secondLabel" : "// file=vacation.jpg&oauth_consumer_key=dpf43f3p2l4k3l03&oauth_nonce=kllo9940pd9333jh&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1191242096&oauth_token=nnch734d00sl2jdk&oauth_version=1.0&size=original", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4259, + "secondPos" : 6399, + "firstEndPos" : 4564, + "secondEndPos" : 6605 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// signature base string: POST&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacation.jpg%26oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3Dkllo9940pd9333jh%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1191242096%26oauth_token%3Dnnch734d00sl2jdk%26oauth_version%3D1.0%26size%3Doriginal", + "secondLabel" : "// signature base string:", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4259, + "secondPos" : 6614, + "firstEndPos" : 4564, + "secondEndPos" : 6639 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// signature base string: POST&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacation.jpg%26oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3Dkllo9940pd9333jh%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1191242096%26oauth_token%3Dnnch734d00sl2jdk%26oauth_version%3D1.0%26size%3Doriginal", + "secondLabel" : "// POST&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacation.jpg%26oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3Dkllo9940pd9333jh%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1191242096%26oauth_token%3Dnnch734d00sl2jdk%26oauth_version%3D1.0%26size%3Doriginal", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4259, + "secondPos" : 6648, + "firstEndPos" : 4564, + "secondEndPos" : 6930 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// signature: wPkvxykrw+BTdCcGqKr+3I+PsiM=", + "secondLabel" : "// signature: wPkvxykrw+BTdCcGqKr+3I+PsiM=", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4573, + "secondPos" : 6939, + "firstEndPos" : 4615, + "secondEndPos" : 6981 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// header: OAuth realm=\"\",oauth_version=\"1.0\",oauth_consumer_key=\"dpf43f3p2l4k3l03\",oauth_token=\"nnch734d00sl2jdk\",oauth_timestamp=\"1191242096\",oauth_nonce=\"kllo9940pd9333jh\",oauth_signature_method=\"HMAC-SHA1\",oauth_signature=\"wPkvxykrw%2BBTdCcGqKr%2B3I%2BPsiM%3D\"", + "secondLabel" : "// header: OAuth", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4624, + "secondPos" : 6990, + "firstEndPos" : 4888, + "secondEndPos" : 7006 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// header: OAuth realm=\"\",oauth_version=\"1.0\",oauth_consumer_key=\"dpf43f3p2l4k3l03\",oauth_token=\"nnch734d00sl2jdk\",oauth_timestamp=\"1191242096\",oauth_nonce=\"kllo9940pd9333jh\",oauth_signature_method=\"HMAC-SHA1\",oauth_signature=\"wPkvxykrw%2BBTdCcGqKr%2B3I%2BPsiM%3D\"", + "secondLabel" : "// realm=\"\",oauth_version=\"1.0\",oauth_consumer_key=\"dpf43f3p2l4k3l03\",oauth_token=\"nnch734d00sl2jdk\",oauth_timestamp=\"1191242096\",oauth_nonce=\"kllo9940pd9333jh\",oauth_signature_method=\"HMAC-SHA1\",oauth_signature=\"wPkvxykrw%2BBTdCcGqKr%2B3I%2BPsiM%3D\"", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4624, + "secondPos" : 7015, + "firstEndPos" : 4888, + "secondEndPos" : 7265 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -6862,6 +6994,94 @@ "secondPos" : 8649, "firstEndPos" : 6248, "secondEndPos" : 8650 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// From the signature tester, the URL should look like:", + "secondLabel" : "// From the signature tester, the URL should look like:", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6268, + "secondPos" : 8662, + "firstEndPos" : 6323, + "secondEndPos" : 8717 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "//normalized parameters: file=vacation.jpg&oauth_consumer_key=dpf43f3p2l4k3l03&oauth_nonce=kllo9940pd9333jh&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1191242096&oauth_token=nnch734d00sl2jdk&oauth_version=1.0&size=original", + "secondLabel" : "// normalized parameters:", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6332, + "secondPos" : 8726, + "firstEndPos" : 6560, + "secondEndPos" : 8751 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "//normalized parameters: file=vacation.jpg&oauth_consumer_key=dpf43f3p2l4k3l03&oauth_nonce=kllo9940pd9333jh&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1191242096&oauth_token=nnch734d00sl2jdk&oauth_version=1.0&size=original", + "secondLabel" : "// file=vacation.jpg&oauth_consumer_key=dpf43f3p2l4k3l03&oauth_nonce=kllo9940pd9333jh&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1191242096&oauth_token=nnch734d00sl2jdk&oauth_version=1.0&size=original", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6332, + "secondPos" : 8760, + "firstEndPos" : 6560, + "secondEndPos" : 8966 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "//signature base string: GET&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacation.jpg%26oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3Dkllo9940pd9333jh%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1191242096%26oauth_token%3Dnnch734d00sl2jdk%26oauth_version%3D1.0%26size%3Doriginal", + "secondLabel" : "// signature base string:", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6569, + "secondPos" : 8975, + "firstEndPos" : 6872, + "secondEndPos" : 9000 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "//signature base string: GET&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacation.jpg%26oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3Dkllo9940pd9333jh%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1191242096%26oauth_token%3Dnnch734d00sl2jdk%26oauth_version%3D1.0%26size%3Doriginal", + "secondLabel" : "// GET&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacation.jpg%26oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3Dkllo9940pd9333jh%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1191242096%26oauth_token%3Dnnch734d00sl2jdk%26oauth_version%3D1.0%26size%3Doriginal", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6569, + "secondPos" : 9009, + "firstEndPos" : 6872, + "secondEndPos" : 9290 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "//signature: tR3+Ty81lMeYAr/Fid0kMTYa/WM=", + "secondLabel" : "// signature: tR3+Ty81lMeYAr/Fid0kMTYa/WM=", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6881, + "secondPos" : 9299, + "firstEndPos" : 6922, + "secondEndPos" : 9341 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "//Authorization header: OAuth realm=\"\",oauth_version=\"1.0\",oauth_consumer_key=\"dpf43f3p2l4k3l03\",oauth_token=\"nnch734d00sl2jdk\",oauth_timestamp=\"1191242096\",oauth_nonce=\"kllo9940pd9333jh\",oauth_signature_method=\"HMAC-SHA1\",oauth_signature=\"tR3%2BTy81lMeYAr%2FFid0kMTYa%2FWM%3D\"", + "secondLabel" : "// Authorization header: OAuth", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6931, + "secondPos" : 9350, + "firstEndPos" : 7208, + "secondEndPos" : 9380 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "//Authorization header: OAuth realm=\"\",oauth_version=\"1.0\",oauth_consumer_key=\"dpf43f3p2l4k3l03\",oauth_token=\"nnch734d00sl2jdk\",oauth_timestamp=\"1191242096\",oauth_nonce=\"kllo9940pd9333jh\",oauth_signature_method=\"HMAC-SHA1\",oauth_signature=\"tR3%2BTy81lMeYAr%2FFid0kMTYa%2FWM%3D\"", + "secondLabel" : "// realm=\"\",oauth_version=\"1.0\",oauth_consumer_key=\"dpf43f3p2l4k3l03\",oauth_token=\"nnch734d00sl2jdk\",oauth_timestamp=\"1191242096\",oauth_nonce=\"kllo9940pd9333jh\",oauth_signature_method=\"HMAC-SHA1\",oauth_signature=\"tR3%2BTy81lMeYAr%2FFid0kMTYa%2FWM%3D\"", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6931, + "secondPos" : 9389, + "firstEndPos" : 7208, + "secondEndPos" : 9639 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", diff --git a/src/test/resources/astDiff/commits/VoltDB_voltdb/c1359c843bd03a694f846c8140e24ed646bbb913/tests.frontend.org.voltdb.TestAdhocCreateDropIndex.json b/src/test/resources/astDiff/commits/VoltDB_voltdb/c1359c843bd03a694f846c8140e24ed646bbb913/tests.frontend.org.voltdb.TestAdhocCreateDropIndex.json index c171cedb0b..3d492ff1d4 100644 --- a/src/test/resources/astDiff/commits/VoltDB_voltdb/c1359c843bd03a694f846c8140e24ed646bbb913/tests.frontend.org.voltdb.TestAdhocCreateDropIndex.json +++ b/src/test/resources/astDiff/commits/VoltDB_voltdb/c1359c843bd03a694f846c8140e24ed646bbb913/tests.frontend.org.voltdb.TestAdhocCreateDropIndex.json @@ -9,6 +9,17 @@ "secondPos" : 0, "firstEndPos" : 10272, "secondEndPos" : 10555 +}, { + "firstType" : "BlockComment", + "secondType" : "BlockComment", + "firstLabel" : "/* This file is part of VoltDB.\n * Copyright (C) 2008-2015 VoltDB Inc.\n *\n * Permission is hereby granted, free of charge, to any person obtaining\n * a copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be\n * included in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n * OTHER DEALINGS IN THE SOFTWARE.\n */", + "secondLabel" : "/* This file is part of VoltDB.\n * Copyright (C) 2008-2015 VoltDB Inc.\n *\n * Permission is hereby granted, free of charge, to any person obtaining\n * a copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be\n * included in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n * OTHER DEALINGS IN THE SOFTWARE.\n */", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 0, + "secondPos" : 0, + "firstEndPos" : 1131, + "secondEndPos" : 1131 }, { "firstType" : "PackageDeclaration", "secondType" : "PackageDeclaration", @@ -185,6 +196,17 @@ "secondPos" : 1367, "firstEndPos" : 1383, "secondEndPos" : 1383 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add a test for partitioning a table", + "secondLabel" : "// Add a test for partitioning a table", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 1391, + "secondPos" : 1391, + "firstEndPos" : 1429, + "secondEndPos" : 1429 }, { "firstType" : "MethodDeclaration", "secondType" : "MethodDeclaration", @@ -1318,6 +1340,17 @@ "secondPos" : 2144, "firstEndPos" : 2677, "secondEndPos" : 2150 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Create index on partitioned tables", + "secondLabel" : "// Create index on tables", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 2693, + "secondPos" : 2166, + "firstEndPos" : 2730, + "secondEndPos" : 2191 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -1780,6 +1813,17 @@ "secondPos" : 2637, "firstEndPos" : 3184, "secondEndPos" : 2645 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Create index on replicated tables", + "secondLabel" : "// Create index on replicated tables", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 3200, + "secondPos" : 2661, + "firstEndPos" : 3236, + "secondEndPos" : 2697 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -2242,6 +2286,17 @@ "secondPos" : 3148, "firstEndPos" : 3697, "secondEndPos" : 3158 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Create unique index on partitioned tables", + "secondLabel" : "// Create unique index on partitioned tables", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 3714, + "secondPos" : 3175, + "firstEndPos" : 3758, + "secondEndPos" : 3219 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -2759,6 +2814,17 @@ "secondPos" : 3727, "firstEndPos" : 4278, "secondEndPos" : 3739 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Can create redundant unique index on a table", + "secondLabel" : "// Can create redundant unique index on a table", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4294, + "secondPos" : 3755, + "firstEndPos" : 4341, + "secondEndPos" : 3802 }, { "firstType" : "TryStatement", "secondType" : "TryStatement", @@ -3045,6 +3111,17 @@ "secondPos" : 4061, "firstEndPos" : 4649, "secondEndPos" : 4110 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// It's going to get dropped because it's redundant, so don't expect to see it here", + "secondLabel" : "// It's going to get dropped because it's redundant, so don't expect to see it here", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4678, + "secondPos" : 4139, + "firstEndPos" : 4761, + "secondEndPos" : 4222 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -3133,6 +3210,17 @@ "secondPos" : 4279, "firstEndPos" : 4831, "secondEndPos" : 4292 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// drop an index we added", + "secondLabel" : "// drop an index we added", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4848, + "secondPos" : 4309, + "firstEndPos" : 4873, + "secondEndPos" : 4334 }, { "firstType" : "TryStatement", "secondType" : "TryStatement", @@ -3507,6 +3595,17 @@ "secondPos" : 4673, "firstEndPos" : 5220, "secondEndPos" : 4681 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// can't drop it twice", + "secondLabel" : "// can't drop it twice", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5236, + "secondPos" : 4697, + "firstEndPos" : 5258, + "secondEndPos" : 4719 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -3947,6 +4046,17 @@ "secondPos" : 5107, "firstEndPos" : 5654, "secondEndPos" : 5115 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// unless we use if exists", + "secondLabel" : "// unless we use if exists", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5670, + "secondPos" : 5131, + "firstEndPos" : 5696, + "secondEndPos" : 5157 }, { "firstType" : "TryStatement", "secondType" : "TryStatement", @@ -5498,6 +5608,17 @@ "secondPos" : 6366, "firstEndPos" : 7401, "secondEndPos" : 6372 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// create a basic view", + "secondLabel" : "// create a basic view", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7417, + "secondPos" : 6388, + "firstEndPos" : 7439, + "secondEndPos" : 6410 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -6048,6 +6169,17 @@ "secondPos" : 7889, "firstEndPos" : 8019, "secondEndPos" : 7894 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Create index on view", + "secondLabel" : "// Create index on view", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8482, + "secondPos" : 6943, + "firstEndPos" : 8505, + "secondEndPos" : 6966 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -6510,6 +6642,17 @@ "secondPos" : 7408, "firstEndPos" : 8950, "secondEndPos" : 7421 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// drop index", + "secondLabel" : "// drop index", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8967, + "secondPos" : 7438, + "firstEndPos" : 8980, + "secondEndPos" : 7451 }, { "firstType" : "TryStatement", "secondType" : "TryStatement", @@ -6884,6 +7027,17 @@ "secondPos" : 7805, "firstEndPos" : 9337, "secondEndPos" : 7818 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// can't drop index twice", + "secondLabel" : "// can't drop index twice", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 9354, + "secondPos" : 7835, + "firstEndPos" : 9379, + "secondEndPos" : 7860 }, { "firstType" : "TryStatement", "secondType" : "TryStatement", @@ -7269,6 +7423,17 @@ "secondPos" : 8261, "firstEndPos" : 9775, "secondEndPos" : 8274 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// unless we use if exists", + "secondLabel" : "// with \"if exists\" clause", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 9791, + "secondPos" : 8365, + "firstEndPos" : 9817, + "secondEndPos" : 8391 }, { "firstType" : "TryStatement", "secondType" : "TryStatement", diff --git a/src/test/resources/astDiff/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.consumer.AbstractMessageHandler.json b/src/test/resources/astDiff/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.consumer.AbstractMessageHandler.json index 3c39bf36b5..48fa7f18c1 100644 --- a/src/test/resources/astDiff/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.consumer.AbstractMessageHandler.json +++ b/src/test/resources/astDiff/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.consumer.AbstractMessageHandler.json @@ -1967,6 +1967,17 @@ "secondPos" : 2306, "firstEndPos" : 2314, "secondEndPos" : 2314 +}, { + "firstType" : "BlockComment", + "secondType" : "BlockComment", + "firstLabel" : "/*\n * @see javax.jms.MessageListener#onMessage(javax.jms.Message)\n *\n * @param message\n */", + "secondLabel" : "/*\n * @see javax.jms.MessageListener#onMessage(javax.jms.Message)\n *\n * @param message\n */", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 2327, + "secondPos" : 2327, + "firstEndPos" : 2433, + "secondEndPos" : 2433 }, { "firstType" : "MethodDeclaration", "secondType" : "MethodDeclaration", @@ -4189,6 +4200,17 @@ "secondPos" : 4256, "firstEndPos" : 4174, "secondEndPos" : 4271 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 4159, + "secondPos" : 4256, + "firstEndPos" : 4165, + "secondEndPos" : 4262 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", diff --git a/src/test/resources/astDiff/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.jms.JmsMessageHelper.json b/src/test/resources/astDiff/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.jms.JmsMessageHelper.json index cacea9b19e..3c7217848a 100644 --- a/src/test/resources/astDiff/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.jms.JmsMessageHelper.json +++ b/src/test/resources/astDiff/commits/apache_camel/ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9/components.camel-sjms.src.main.java.org.apache.camel.component.sjms.jms.JmsMessageHelper.json @@ -966,6 +966,17 @@ "secondPos" : 1918, "firstEndPos" : 1943, "secondEndPos" : 1943 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1918, + "secondPos" : 1918, + "firstEndPos" : 1923, + "secondEndPos" : 1923 }, { "firstType" : "QualifiedName", "secondType" : "QualifiedName", @@ -2066,6 +2077,17 @@ "secondPos" : 3458, "firstEndPos" : 5694, "secondEndPos" : 6465 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// convert to JMS Message of the given type", + "secondLabel" : "// convert to JMS Message of the given type", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 2705, + "secondPos" : 3476, + "firstEndPos" : 2748, + "secondEndPos" : 3519 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -5696,6 +5718,17 @@ "secondPos" : 6271, "firstEndPos" : 5508, "secondEndPos" : 6279 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Do nothing. Only set the headers for an empty message", + "secondLabel" : "// Do nothing. Only set the headers for an empty message", + "firstParentType" : "SwitchStatement", + "secondParentType" : "SwitchStatement", + "firstPos" : 5529, + "secondPos" : 6300, + "firstEndPos" : 5585, + "secondEndPos" : 6356 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -11680,6 +11713,17 @@ "secondPos" : 10101, "firstEndPos" : 9345, "secondEndPos" : 10116 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 9330, + "secondPos" : 10101, + "firstEndPos" : 9335, + "secondEndPos" : 10106 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11724,6 +11768,17 @@ "secondPos" : 10207, "firstEndPos" : 9512, "secondEndPos" : 10283 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 9436, + "secondPos" : 10207, + "firstEndPos" : 9442, + "secondEndPos" : 10213 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11757,6 +11812,17 @@ "secondPos" : 10236, "firstEndPos" : 9480, "secondEndPos" : 10251 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 9465, + "secondPos" : 10236, + "firstEndPos" : 9470, + "secondEndPos" : 10241 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11790,6 +11856,17 @@ "secondPos" : 10291, "firstEndPos" : 9581, "secondEndPos" : 10352 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 9520, + "secondPos" : 10291, + "firstEndPos" : 9526, + "secondEndPos" : 10297 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11823,6 +11900,17 @@ "secondPos" : 10318, "firstEndPos" : 9558, "secondEndPos" : 10329 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 9547, + "secondPos" : 10318, + "firstEndPos" : 9552, + "secondEndPos" : 10323 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11856,6 +11944,17 @@ "secondPos" : 10360, "firstEndPos" : 9825, "secondEndPos" : 10502 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 9589, + "secondPos" : 10360, + "firstEndPos" : 9595, + "secondEndPos" : 10366 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11889,6 +11988,17 @@ "secondPos" : 10391, "firstEndPos" : 9645, "secondEndPos" : 10416 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 9620, + "secondPos" : 10391, + "firstEndPos" : 9625, + "secondEndPos" : 10396 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11933,6 +12043,17 @@ "secondPos" : 2648, "firstEndPos" : 9811, "secondEndPos" : 2683 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 9776, + "secondPos" : 2648, + "firstEndPos" : 9781, + "secondEndPos" : 2653 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11955,6 +12076,17 @@ "secondPos" : 10510, "firstEndPos" : 9856, "secondEndPos" : 10533 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 9833, + "secondPos" : 10510, + "firstEndPos" : 9840, + "secondEndPos" : 10517 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -11977,6 +12109,17 @@ "secondPos" : 10518, "firstEndPos" : 9856, "secondEndPos" : 10533 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 9841, + "secondPos" : 10518, + "firstEndPos" : 9846, + "secondEndPos" : 10523 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -13011,6 +13154,28 @@ "secondPos" : 11088, "firstEndPos" : 10613, "secondEndPos" : 11291 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Value can be null but we can't cast a null to a String", + "secondLabel" : "// Value can be null but we can't cast a null to a String", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 10432, + "secondPos" : 11110, + "firstEndPos" : 10489, + "secondEndPos" : 11167 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// so pass null to the setter", + "secondLabel" : "// so pass null to the setter", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 10510, + "secondPos" : 11188, + "firstEndPos" : 10539, + "secondEndPos" : 11217 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -13583,6 +13748,39 @@ "secondPos" : 11733, "firstEndPos" : 11260, "secondEndPos" : 11938 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// FIXME Setting the reply to appears broken. walk back", + "secondLabel" : "// FIXME Setting the reply to appears broken. walk back", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 11077, + "secondPos" : 11755, + "firstEndPos" : 11132, + "secondEndPos" : 11810 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// through it. If the value is a String we must normalize it", + "secondLabel" : "// through it. If the value is a String we must normalize it", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 11153, + "secondPos" : 11831, + "firstEndPos" : 11213, + "secondEndPos" : 11891 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// first", + "secondLabel" : "// first", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 11234, + "secondPos" : 11912, + "firstEndPos" : 11242, + "secondEndPos" : 11920 }, { "firstType" : "Block", "secondType" : "Block", @@ -13594,6 +13792,72 @@ "secondPos" : 11944, "firstEndPos" : 11585, "secondEndPos" : 12263 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// TODO write destination converter", + "secondLabel" : "// TODO write destination converter", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 11288, + "secondPos" : 11966, + "firstEndPos" : 11323, + "secondEndPos" : 12001 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Destination replyTo =", + "secondLabel" : "// Destination replyTo =", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 11344, + "secondPos" : 12022, + "firstEndPos" : 11368, + "secondEndPos" : 12046 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// ExchangeHelper.convertToType(exchange,", + "secondLabel" : "// ExchangeHelper.convertToType(exchange,", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 11389, + "secondPos" : 12067, + "firstEndPos" : 11430, + "secondEndPos" : 12108 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Destination.class,", + "secondLabel" : "// Destination.class,", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 11451, + "secondPos" : 12129, + "firstEndPos" : 11472, + "secondEndPos" : 12150 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// headerValue);", + "secondLabel" : "// headerValue);", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 11493, + "secondPos" : 12171, + "firstEndPos" : 11509, + "secondEndPos" : 12187 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// jmsMessage.setJMSReplyTo(replyTo);", + "secondLabel" : "// jmsMessage.setJMSReplyTo(replyTo);", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 11530, + "secondPos" : 12208, + "firstEndPos" : 11567, + "secondEndPos" : 12245 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", @@ -13748,6 +14012,28 @@ "secondPos" : 12369, "firstEndPos" : 11892, "secondEndPos" : 12570 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Value can be null but we can't cast a null to a String", + "secondLabel" : "// Value can be null but we can't cast a null to a String", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 11713, + "secondPos" : 12391, + "firstEndPos" : 11770, + "secondEndPos" : 12448 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// so pass null to the setter", + "secondLabel" : "// so pass null to the setter", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 11791, + "secondPos" : 12469, + "firstEndPos" : 11820, + "secondEndPos" : 12498 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -13880,6 +14166,17 @@ "secondPos" : 12611, "firstEndPos" : 12070, "secondEndPos" : 12748 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Not null but is a String", + "secondLabel" : "// Not null but is a String", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 11955, + "secondPos" : 12633, + "firstEndPos" : 11982, + "secondEndPos" : 12660 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -16388,6 +16685,72 @@ "secondPos" : 14919, "firstEndPos" : 14703, "secondEndPos" : 15381 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// The following properties are set by the", + "secondLabel" : "// The following properties are set by the", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 14263, + "secondPos" : 14941, + "firstEndPos" : 14305, + "secondEndPos" : 14983 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// MessageProducer:", + "secondLabel" : "// MessageProducer:", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 14326, + "secondPos" : 15004, + "firstEndPos" : 14345, + "secondEndPos" : 15023 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// JMSDestination", + "secondLabel" : "// JMSDestination", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 14366, + "secondPos" : 15044, + "firstEndPos" : 14383, + "secondEndPos" : 15061 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// The following are set on the underlying JMS provider:", + "secondLabel" : "// The following are set on the underlying JMS provider:", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 14404, + "secondPos" : 15082, + "firstEndPos" : 14460, + "secondEndPos" : 15138 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// JMSMessageID, JMSTimestamp, JMSRedelivered", + "secondLabel" : "// JMSMessageID, JMSTimestamp, JMSRedelivered", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 14481, + "secondPos" : 15159, + "firstEndPos" : 14526, + "secondEndPos" : 15204 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// log at trace level to not spam log", + "secondLabel" : "// log at trace level to not spam log", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 14547, + "secondPos" : 15225, + "firstEndPos" : 14584, + "secondEndPos" : 15262 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -17664,6 +18027,17 @@ "secondPos" : 16306, "firstEndPos" : 17299, "secondEndPos" : 17977 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// lets populate the standard JMS message headers", + "secondLabel" : "// lets populate the standard JMS message headers", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 15642, + "secondPos" : 16320, + "firstEndPos" : 15691, + "secondEndPos" : 16369 }, { "firstType" : "TryStatement", "secondType" : "TryStatement", @@ -18896,6 +19270,17 @@ "secondPos" : 17124, "firstEndPos" : 16456, "secondEndPos" : 17134 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// this works around a bug in the ActiveMQ property handling", + "secondLabel" : "// this works around a bug in the ActiveMQ property handling", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 16477, + "secondPos" : 17155, + "firstEndPos" : 16537, + "secondEndPos" : 17215 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -20304,6 +20689,17 @@ "secondPos" : 18221, "firstEndPos" : 17569, "secondEndPos" : 18247 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 17543, + "secondPos" : 18221, + "firstEndPos" : 17549, + "secondEndPos" : 18227 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -20337,6 +20733,17 @@ "secondPos" : 18255, "firstEndPos" : 17615, "secondEndPos" : 18293 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 17577, + "secondPos" : 18255, + "firstEndPos" : 17584, + "secondEndPos" : 18262 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -20601,6 +21008,17 @@ "secondPos" : 18442, "firstEndPos" : 17845, "secondEndPos" : 18523 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// ignore due OracleAQ does not support accessing JMSType", + "secondLabel" : "// ignore due OracleAQ does not support accessing JMSType", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 17778, + "secondPos" : 18456, + "firstEndPos" : 17835, + "secondEndPos" : 18513 }, { "firstType" : "ReturnStatement", "secondType" : "ReturnStatement", @@ -20678,6 +21096,17 @@ "secondPos" : 18623, "firstEndPos" : 17976, "secondEndPos" : 18654 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 17945, + "secondPos" : 18623, + "firstEndPos" : 17951, + "secondEndPos" : 18629 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -20711,6 +21140,17 @@ "secondPos" : 18662, "firstEndPos" : 18052, "secondEndPos" : 18730 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 17984, + "secondPos" : 18662, + "firstEndPos" : 17990, + "secondEndPos" : 18668 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -20744,6 +21184,17 @@ "secondPos" : 18738, "firstEndPos" : 18135, "secondEndPos" : 18813 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@throws", + "secondLabel" : "@throws", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 18060, + "secondPos" : 18738, + "firstEndPos" : 18067, + "secondEndPos" : 18745 }, { "firstType" : "QualifiedName", "secondType" : "QualifiedName", @@ -21448,6 +21899,17 @@ "secondPos" : 19305, "firstEndPos" : 19180, "secondEndPos" : 19858 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// it may be a number in the String so try that", + "secondLabel" : "// it may be a number in the String so try that", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 18645, + "secondPos" : 19323, + "firstEndPos" : 18692, + "secondEndPos" : 19370 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -21712,6 +22174,17 @@ "secondPos" : 19529, "firstEndPos" : 18943, "secondEndPos" : 19621 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Do nothing. The error handler below is sufficient", + "secondLabel" : "// Do nothing. The error handler below is sufficient", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 18873, + "secondPos" : 19551, + "firstEndPos" : 18925, + "secondEndPos" : 19603 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", @@ -21998,6 +22471,17 @@ "secondPos" : 19911, "firstEndPos" : 19342, "secondEndPos" : 20020 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// fallback and try to convert to a number", + "secondLabel" : "// fallback and try to convert to a number", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 19247, + "secondPos" : 19925, + "firstEndPos" : 19289, + "secondEndPos" : 19967 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -22427,6 +22911,17 @@ "secondPos" : 20380, "firstEndPos" : 19732, "secondEndPos" : 20410 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 19702, + "secondPos" : 20380, + "firstEndPos" : 19708, + "secondEndPos" : 20386 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22460,6 +22955,17 @@ "secondPos" : 20418, "firstEndPos" : 19773, "secondEndPos" : 20451 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 19740, + "secondPos" : 20418, + "firstEndPos" : 19746, + "secondEndPos" : 20424 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22966,6 +23472,17 @@ "secondPos" : 20828, "firstEndPos" : 20186, "secondEndPos" : 20864 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 20150, + "secondPos" : 20828, + "firstEndPos" : 20156, + "secondEndPos" : 20834 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22999,6 +23516,17 @@ "secondPos" : 20872, "firstEndPos" : 20233, "secondEndPos" : 20911 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 20194, + "secondPos" : 20872, + "firstEndPos" : 20200, + "secondEndPos" : 20878 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -23483,6 +24011,17 @@ "secondPos" : 21271, "firstEndPos" : 20619, "secondEndPos" : 21297 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 20593, + "secondPos" : 21271, + "firstEndPos" : 20599, + "secondEndPos" : 21277 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -23516,6 +24055,17 @@ "secondPos" : 21305, "firstEndPos" : 20666, "secondEndPos" : 21344 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 20627, + "secondPos" : 21305, + "firstEndPos" : 20633, + "secondEndPos" : 21311 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -24022,6 +24572,17 @@ "secondPos" : 21689, "firstEndPos" : 21037, "secondEndPos" : 21715 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 21011, + "secondPos" : 21689, + "firstEndPos" : 21017, + "secondEndPos" : 21695 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -24055,6 +24616,17 @@ "secondPos" : 21723, "firstEndPos" : 21087, "secondEndPos" : 21765 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 21045, + "secondPos" : 21723, + "firstEndPos" : 21052, + "secondEndPos" : 21730 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -24319,6 +24891,17 @@ "secondPos" : 21925, "firstEndPos" : 21331, "secondEndPos" : 22009 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// ignore due OracleAQ does not support accessing JMSReplyTo", + "secondLabel" : "// ignore due OracleAQ does not support accessing JMSReplyTo", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 21261, + "secondPos" : 21939, + "firstEndPos" : 21321, + "secondEndPos" : 21999 }, { "firstType" : "ReturnStatement", "secondType" : "ReturnStatement", @@ -24396,6 +24979,17 @@ "secondPos" : 22111, "firstEndPos" : 21466, "secondEndPos" : 22144 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 21433, + "secondPos" : 22111, + "firstEndPos" : 21439, + "secondEndPos" : 22117 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -24429,6 +25023,17 @@ "secondPos" : 22152, "firstEndPos" : 21519, "secondEndPos" : 22197 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 21474, + "secondPos" : 22152, + "firstEndPos" : 21480, + "secondEndPos" : 22158 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -24462,6 +25067,17 @@ "secondPos" : 22205, "firstEndPos" : 21554, "secondEndPos" : 22232 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 21527, + "secondPos" : 22205, + "firstEndPos" : 21533, + "secondEndPos" : 22211 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -24495,6 +25111,17 @@ "secondPos" : 22240, "firstEndPos" : 21596, "secondEndPos" : 22274 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@throws", + "secondLabel" : "@throws", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 21562, + "secondPos" : 22240, + "firstEndPos" : 21569, + "secondEndPos" : 22247 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -26387,6 +27014,17 @@ "secondPos" : 23349, "firstEndPos" : 22771, "secondEndPos" : 23449 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// fallback to Object", + "secondLabel" : "// fallback to Object", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 22685, + "secondPos" : 23363, + "firstEndPos" : 22706, + "secondEndPos" : 23384 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -26662,6 +27300,17 @@ "secondPos" : 23568, "firstEndPos" : 22896, "secondEndPos" : 23574 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Default is a JMS Message since a body is not required", + "secondLabel" : "// Default is a JMS Message since a body is not required", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 22906, + "secondPos" : 23584, + "firstEndPos" : 22962, + "secondEndPos" : 23640 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", @@ -26794,6 +27443,28 @@ "secondPos" : 23732, "firstEndPos" : 24544, "secondEndPos" : 25222 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Something was found in the body so determine", + "secondLabel" : "// Something was found in the body so determine", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 23068, + "secondPos" : 23746, + "firstEndPos" : 23115, + "secondEndPos" : 23793 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// what type of message we need to create", + "secondLabel" : "// what type of message we need to create", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 23128, + "secondPos" : 23806, + "firstEndPos" : 23169, + "secondEndPos" : 23847 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", diff --git a/src/test/resources/astDiff/commits/cases-problematic.json b/src/test/resources/astDiff/commits/cases-problematic.json index ba273293a7..ee2fc14dd3 100644 --- a/src/test/resources/astDiff/commits/cases-problematic.json +++ b/src/test/resources/astDiff/commits/cases-problematic.json @@ -55,9 +55,6 @@ }, { "repo" : "https://github.com/JetBrains/intellij-community.git", "commit" : "7dd55014f9840ce03867bb175cf37a4c151dc806" -}, { - "repo" : "https://github.com/apache/camel.git", - "commit" : "ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9" }, { "repo" : "https://github.com/SonarSource/sonarqube.git", "commit" : "c55a8c3761e9aae9f375d312c14b1bbb9ee9c0fa" @@ -148,6 +145,9 @@ }, { "repo" : "https://github.com/infinispan/infinispan.git", "commit" : "03573a655bcbb77f7a76d8e22d851cc22796b4f8" +}, { + "repo" : "https://github.com/spring-projects/spring-boot.git", + "commit" : "20d39f7af2165c67d5221f556f58820c992d2cc6" }, { "repo" : "https://github.com/phishman3579/java-algorithms-implementation.git", "commit" : "ab98bcacf6e5bf1c3a06f6bcca68f178f880ffc9" diff --git a/src/test/resources/astDiff/commits/cases.json b/src/test/resources/astDiff/commits/cases.json index c4a25ca055..3d5c121612 100644 --- a/src/test/resources/astDiff/commits/cases.json +++ b/src/test/resources/astDiff/commits/cases.json @@ -163,9 +163,6 @@ }, { "repo" : "https://github.com/BroadleafCommerce/BroadleafCommerce.git", "commit" : "9687048f76519fc89b4151cbe2841bbba61a401d" -}, { - "repo" : "https://github.com/spring-projects/spring-boot.git", - "commit" : "20d39f7af2165c67d5221f556f58820c992d2cc6" }, { "repo" : "https://github.com/languagetool-org/languagetool.git", "commit" : "01cddc5afb590b4d36cb784637a8ea8aa31d3561" @@ -406,4 +403,7 @@ }, { "repo" : "https://github.com/openhab/openhab1-addons.git", "commit" : "f25fa3ae35e4a60a2b7f79a88f14d46ce6cebf55" +}, { + "repo" : "https://github.com/apache/camel.git", + "commit" : "ab1d1dd78fe53edb50c4ede447e4ac5a55ee2ac9" } ] \ No newline at end of file diff --git a/src/test/resources/astDiff/commits/facebook_buck/ecd0ad5ab99b8d14f28881cf4f49ec01f2221776/src.com.facebook.buck.cxx.CxxSourceRuleFactory.json b/src/test/resources/astDiff/commits/facebook_buck/ecd0ad5ab99b8d14f28881cf4f49ec01f2221776/src.com.facebook.buck.cxx.CxxSourceRuleFactory.json index 357f8fb67b..5d559d49fd 100644 --- a/src/test/resources/astDiff/commits/facebook_buck/ecd0ad5ab99b8d14f28881cf4f49ec01f2221776/src.com.facebook.buck.cxx.CxxSourceRuleFactory.json +++ b/src/test/resources/astDiff/commits/facebook_buck/ecd0ad5ab99b8d14f28881cf4f49ec01f2221776/src.com.facebook.buck.cxx.CxxSourceRuleFactory.json @@ -9,6 +9,17 @@ "secondPos" : 0, "firstEndPos" : 24223, "secondEndPos" : 24622 +}, { + "firstType" : "BlockComment", + "secondType" : "BlockComment", + "firstLabel" : "/*\n * Copyright 2015-present Facebook, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"); you may\n * not use this file except in compliance with the License. You may obtain\n * a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and limitations\n * under the License.\n */", + "secondLabel" : "/*\n * Copyright 2015-present Facebook, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"); you may\n * not use this file except in compliance with the License. You may obtain\n * a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and limitations\n * under the License.\n */", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 0, + "secondPos" : 0, + "firstEndPos" : 605, + "secondEndPos" : 605 }, { "firstType" : "PackageDeclaration", "secondType" : "PackageDeclaration", @@ -2297,6 +2308,17 @@ "secondPos" : 2966, "firstEndPos" : 3606, "secondEndPos" : 3697 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Depend on the rules that generate the sources and headers we're compiling.", + "secondLabel" : "// Depend on the rules that generate the sources and headers we're compiling.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 2890, + "secondPos" : 2981, + "firstEndPos" : 2967, + "secondEndPos" : 3058 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -2517,6 +2539,28 @@ "secondPos" : 3159, "firstEndPos" : 3081, "secondEndPos" : 3172 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "SourcePath", + "secondLabel" : "SourcePath", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 3083, + "secondPos" : 3174, + "firstEndPos" : 3093, + "secondEndPos" : 3184 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 3083, + "secondPos" : 3174, + "firstEndPos" : 3093, + "secondEndPos" : 3184 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -2770,6 +2814,28 @@ "secondPos" : 3373, "firstEndPos" : 3287, "secondEndPos" : 3378 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Also add in extra deps from the preprocessor input, such as the symlink tree", + "secondLabel" : "// Also add in extra deps from the preprocessor input, such as the symlink tree", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 3306, + "secondPos" : 3397, + "firstEndPos" : 3385, + "secondEndPos" : 3476 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// rules.", + "secondLabel" : "// rules.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 3398, + "secondPos" : 3489, + "firstEndPos" : 3407, + "secondEndPos" : 3498 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -7313,6 +7379,17 @@ "secondPos" : 6555, "firstEndPos" : 6525, "secondEndPos" : 6616 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 6464, + "secondPos" : 6555, + "firstEndPos" : 6471, + "secondEndPos" : 6562 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -7786,6 +7863,17 @@ "secondPos" : 6866, "firstEndPos" : 6888, "secondEndPos" : 6979 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 6775, + "secondPos" : 6866, + "firstEndPos" : 6782, + "secondEndPos" : 6873 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -7808,6 +7896,17 @@ "secondPos" : 6876, "firstEndPos" : 6804, "secondEndPos" : 6895 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 6785, + "secondPos" : 6876, + "firstEndPos" : 6790, + "secondEndPos" : 6881 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -9249,6 +9348,17 @@ "secondPos" : 7875, "firstEndPos" : 7872, "secondEndPos" : 7963 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 7784, + "secondPos" : 7875, + "firstEndPos" : 7791, + "secondEndPos" : 7882 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -10393,6 +10503,17 @@ "secondPos" : 8605, "firstEndPos" : 8521, "secondEndPos" : 8612 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Build up the list of dependencies for this rule.", + "secondLabel" : "// Build up the list of dependencies for this rule.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8531, + "secondPos" : 8622, + "firstEndPos" : 8582, + "secondEndPos" : 8673 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -10602,6 +10723,28 @@ "secondPos" : 16335, "firstEndPos" : 8658, "secondEndPos" : 16353 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "BuildRule", + "secondLabel" : "BuildRule", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 8660, + "secondPos" : 16355, + "firstEndPos" : 8669, + "secondEndPos" : 16364 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 8660, + "secondPos" : 16355, + "firstEndPos" : 8669, + "secondEndPos" : 16364 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -10613,6 +10756,17 @@ "secondPos" : 16365, "firstEndPos" : 8682, "secondEndPos" : 16377 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add dependencies on any build rules used to create the preprocessor.", + "secondLabel" : "// Add dependencies on any build rules used to create the preprocessor.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8697, + "secondPos" : 16392, + "firstEndPos" : 8768, + "secondEndPos" : 16463 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -10701,6 +10855,17 @@ "secondPos" : 16265, "firstEndPos" : 8816, "secondEndPos" : 16277 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// If a build rule generates our input source, add that as a dependency.", + "secondLabel" : "// If a build rule generates our input source, add that as a dependency.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8831, + "secondPos" : 16512, + "firstEndPos" : 8903, + "secondEndPos" : 16584 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -10822,6 +10987,17 @@ "secondPos" : 16647, "firstEndPos" : 8973, "secondEndPos" : 16654 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Depend on the rule that generates the sources and headers we're compiling.", + "secondLabel" : "// Add in all preprocessor deps.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 8990, + "secondPos" : 16675, + "firstEndPos" : 9067, + "secondEndPos" : 16707 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -10899,6 +11075,17 @@ "secondPos" : 16763, "firstEndPos" : 9128, "secondEndPos" : 16768 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Build up the list of extra preprocessor flags for this rule.", + "secondLabel" : "// Build up the list of extra preprocessor flags for this rule.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 9137, + "secondPos" : 8808, + "firstEndPos" : 9200, + "secondEndPos" : 8871 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -11108,6 +11295,28 @@ "secondPos" : 16887, "firstEndPos" : 9264, "secondEndPos" : 16900 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 9266, + "secondPos" : 16902, + "firstEndPos" : 9272, + "secondEndPos" : 16908 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 9266, + "secondPos" : 16902, + "firstEndPos" : 9272, + "secondEndPos" : 16908 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11119,6 +11328,17 @@ "secondPos" : 16909, "firstEndPos" : 9280, "secondEndPos" : 16916 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// If we're using pic, add in the appropriate flag.", + "secondLabel" : "// If we're using pic, add in the appropriate flag.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 9295, + "secondPos" : 16927, + "firstEndPos" : 9346, + "secondEndPos" : 16978 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11185,6 +11405,17 @@ "secondPos" : 16999, "firstEndPos" : 9379, "secondEndPos" : 17007 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add in platform specific preprocessor flags.", + "secondLabel" : "// Add in platform specific preprocessor flags.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 9395, + "secondPos" : 17023, + "firstEndPos" : 9442, + "secondEndPos" : 17070 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11317,6 +11548,17 @@ "secondPos" : 17149, "firstEndPos" : 9532, "secondEndPos" : 17156 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add in the platform specific compiler flags.", + "secondLabel" : "// Add in the platform specific compiler flags.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 9549, + "secondPos" : 17173, + "firstEndPos" : 9596, + "secondEndPos" : 17220 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11691,6 +11933,28 @@ "secondPos" : 17926, "firstEndPos" : 9799, "secondEndPos" : 17939 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 9801, + "secondPos" : 17941, + "firstEndPos" : 9807, + "secondEndPos" : 17947 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 9801, + "secondPos" : 17941, + "firstEndPos" : 9807, + "secondEndPos" : 17947 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11702,6 +11966,17 @@ "secondPos" : 17948, "firstEndPos" : 9815, "secondEndPos" : 17955 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add custom preprocessor flags.", + "secondLabel" : "// Add custom preprocessor flags.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 9830, + "secondPos" : 17966, + "firstEndPos" : 9863, + "secondEndPos" : 17999 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11823,6 +12098,17 @@ "secondPos" : 18054, "firstEndPos" : 9929, "secondEndPos" : 18061 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add custom compiler flags.", + "secondLabel" : "// Add custom compiler flags.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 9946, + "secondPos" : 18078, + "firstEndPos" : 9975, + "secondEndPos" : 18107 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -11977,6 +12263,17 @@ "secondPos" : 18192, "firstEndPos" : 10071, "secondEndPos" : 18199 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add custom per-file flags.", + "secondLabel" : "// Add custom per-file flags.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 10089, + "secondPos" : 18217, + "firstEndPos" : 10118, + "secondEndPos" : 18246 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -12054,6 +12351,17 @@ "secondPos" : 18291, "firstEndPos" : 10176, "secondEndPos" : 18296 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Build the CxxCompile rule and add it to our sorted set of build rules.", + "secondLabel" : "// Build the CxxCompile rule and add it to our sorted set of build rules.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 10185, + "secondPos" : 9019, + "firstEndPos" : 10258, + "secondEndPos" : 9092 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -12384,6 +12692,28 @@ "secondPos" : 9299, "firstEndPos" : 10483, "secondEndPos" : 9317 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "BuildRule", + "secondLabel" : "BuildRule", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 10485, + "secondPos" : 9319, + "firstEndPos" : 10494, + "secondEndPos" : 9328 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 10485, + "secondPos" : 9319, + "firstEndPos" : 10494, + "secondEndPos" : 9328 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -13781,6 +14111,17 @@ "secondPos" : 10302, "firstEndPos" : 11523, "secondEndPos" : 10357 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 11468, + "secondPos" : 10302, + "firstEndPos" : 11475, + "secondEndPos" : 10309 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -13979,6 +14320,17 @@ "secondPos" : 10457, "firstEndPos" : 11711, "secondEndPos" : 10545 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 11623, + "secondPos" : 10457, + "firstEndPos" : 11630, + "secondEndPos" : 10464 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -14353,6 +14705,17 @@ "secondPos" : 10738, "firstEndPos" : 12013, "secondEndPos" : 10847 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 11904, + "secondPos" : 10738, + "firstEndPos" : 11911, + "secondEndPos" : 10745 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -14375,6 +14738,17 @@ "secondPos" : 10767, "firstEndPos" : 11964, "secondEndPos" : 10798 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 11933, + "secondPos" : 10767, + "firstEndPos" : 11938, + "secondEndPos" : 10772 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -15728,6 +16102,28 @@ "secondPos" : 11672, "firstEndPos" : 12843, "secondEndPos" : 11677 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Pick the compiler to use. Basically, if we're dealing with C++ sources, use the C++", + "secondLabel" : "// Pick the compiler to use. Basically, if we're dealing with C++ sources, use the C++", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 12852, + "secondPos" : 11686, + "firstEndPos" : 12939, + "secondEndPos" : 11773 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// compiler, and the C compiler for everything.", + "secondLabel" : "// compiler, and the C compiler for everything.", + "firstParentType" : "TypeDeclaration", + "secondParentType" : "TypeDeclaration", + "firstPos" : 12942, + "secondPos" : 11776, + "firstEndPos" : 12989, + "secondEndPos" : 11823 }, { "firstType" : "MethodDeclaration", "secondType" : "MethodDeclaration", @@ -16289,6 +16685,17 @@ "secondPos" : 12128, "firstEndPos" : 13301, "secondEndPos" : 12135 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// If we're dealing with a C source that can be compiled, add the platform C compiler flags.", + "secondLabel" : "// If we're dealing with a C source that can be compiled, add the platform C compiler flags.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 13310, + "secondPos" : 12144, + "firstEndPos" : 13402, + "secondEndPos" : 12236 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", @@ -16531,6 +16938,28 @@ "secondPos" : 12364, "firstEndPos" : 13539, "secondEndPos" : 12373 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// If we're dealing with a C++ source that can be compiled, add the platform C++ compiler", + "secondLabel" : "// If we're dealing with a C++ source that can be compiled, add the platform C++ compiler", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 13555, + "secondPos" : 12389, + "firstEndPos" : 13644, + "secondEndPos" : 12478 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// flags.", + "secondLabel" : "// flags.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 13649, + "secondPos" : 12483, + "firstEndPos" : 13658, + "secondEndPos" : 12492 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", @@ -16773,6 +17202,17 @@ "secondPos" : 12624, "firstEndPos" : 13801, "secondEndPos" : 12635 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// All source types require assembling, so add in platform-specific assembler flags.", + "secondLabel" : "// All source types require assembling, so add in platform-specific assembler flags.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 13817, + "secondPos" : 12651, + "firstEndPos" : 13901, + "secondEndPos" : 12735 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -17213,6 +17653,17 @@ "secondPos" : 12940, "firstEndPos" : 14113, "secondEndPos" : 12947 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add in explicit additional compiler flags, if we're compiling.", + "secondLabel" : "// Add in explicit additional compiler flags, if we're compiling.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 14122, + "secondPos" : 12956, + "firstEndPos" : 14187, + "secondEndPos" : 13021 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", @@ -17642,6 +18093,17 @@ "secondPos" : 13302, "firstEndPos" : 14594, "secondEndPos" : 13428 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 14468, + "secondPos" : 13302, + "firstEndPos" : 14475, + "secondEndPos" : 13309 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -17664,6 +18126,17 @@ "secondPos" : 13312, "firstEndPos" : 14509, "secondEndPos" : 13343 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 14478, + "secondPos" : 13312, + "firstEndPos" : 14483, + "secondEndPos" : 13317 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -17708,6 +18181,17 @@ "secondPos" : 13410, "firstEndPos" : 14593, "secondEndPos" : 13427 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 14576, + "secondPos" : 13410, + "firstEndPos" : 14581, + "secondEndPos" : 13415 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -18577,6 +19061,28 @@ "secondPos" : 13872, "firstEndPos" : 15056, "secondEndPos" : 13890 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "BuildRule", + "secondLabel" : "BuildRule", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 15058, + "secondPos" : 13892, + "firstEndPos" : 15067, + "secondEndPos" : 13901 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 15058, + "secondPos" : 13892, + "firstEndPos" : 15067, + "secondEndPos" : 13901 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -18588,6 +19094,17 @@ "secondPos" : 13902, "firstEndPos" : 15080, "secondEndPos" : 13914 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add dependencies on any build rules used to create the compiler.", + "secondLabel" : "// Add dependencies on any build rules used to create the compiler.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 15095, + "secondPos" : 13929, + "firstEndPos" : 15162, + "secondEndPos" : 13996 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -18676,6 +19193,17 @@ "secondPos" : 14036, "firstEndPos" : 15214, "secondEndPos" : 14048 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// If a build rule generates our input source, add that as a dependency.", + "secondLabel" : "// If a build rule generates our input source, add that as a dependency.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 15229, + "secondPos" : 14063, + "firstEndPos" : 15301, + "secondEndPos" : 14135 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -18808,6 +19336,17 @@ "secondPos" : 14223, "firstEndPos" : 15394, "secondEndPos" : 14228 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Build up the list of compiler flags.", + "secondLabel" : "// Build up the list of compiler flags.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 15403, + "secondPos" : 14237, + "firstEndPos" : 15442, + "secondEndPos" : 14276 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -18995,6 +19534,28 @@ "secondPos" : 14327, "firstEndPos" : 15506, "secondEndPos" : 14340 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 15508, + "secondPos" : 14342, + "firstEndPos" : 15514, + "secondEndPos" : 14348 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 15508, + "secondPos" : 14342, + "firstEndPos" : 15514, + "secondEndPos" : 14348 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -19006,6 +19567,17 @@ "secondPos" : 14349, "firstEndPos" : 15522, "secondEndPos" : 14356 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// If we're using pic, add in the appropriate flag.", + "secondLabel" : "// If we're using pic, add in the appropriate flag.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 15537, + "secondPos" : 14371, + "firstEndPos" : 15588, + "secondEndPos" : 14422 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -19072,6 +19644,17 @@ "secondPos" : 14447, "firstEndPos" : 15621, "secondEndPos" : 14455 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add in the platform specific compiler flags.", + "secondLabel" : "// Add in the platform specific compiler flags.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 15637, + "secondPos" : 14471, + "firstEndPos" : 15684, + "secondEndPos" : 14518 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -19369,6 +19952,28 @@ "secondPos" : 14651, "firstEndPos" : 15830, "secondEndPos" : 14664 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 15832, + "secondPos" : 14666, + "firstEndPos" : 15838, + "secondEndPos" : 14672 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 15832, + "secondPos" : 14666, + "firstEndPos" : 15838, + "secondEndPos" : 14672 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -19380,6 +19985,17 @@ "secondPos" : 14673, "firstEndPos" : 15846, "secondEndPos" : 14680 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add custom compiler flags.", + "secondLabel" : "// Add custom compiler flags.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 15861, + "secondPos" : 14695, + "firstEndPos" : 15890, + "secondEndPos" : 14724 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -19479,6 +20095,17 @@ "secondPos" : 14772, "firstEndPos" : 15945, "secondEndPos" : 14779 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add custom per-file flags.", + "secondLabel" : "// Add custom per-file flags.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 15962, + "secondPos" : 14796, + "firstEndPos" : 15991, + "secondEndPos" : 14825 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -19556,6 +20183,17 @@ "secondPos" : 14878, "firstEndPos" : 16049, "secondEndPos" : 14883 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Build the CxxCompile rule and add it to our sorted set of build rules.", + "secondLabel" : "// Build the CxxCompile rule and add it to our sorted set of build rules.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 16058, + "secondPos" : 14892, + "firstEndPos" : 16131, + "secondEndPos" : 14965 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -19886,6 +20524,28 @@ "secondPos" : 15169, "firstEndPos" : 16353, "secondEndPos" : 15187 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "BuildRule", + "secondLabel" : "BuildRule", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 16355, + "secondPos" : 15189, + "firstEndPos" : 16364, + "secondEndPos" : 15198 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 16355, + "secondPos" : 15189, + "firstEndPos" : 16364, + "secondEndPos" : 15198 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -21019,6 +21679,17 @@ "secondPos" : 18671, "firstEndPos" : 17304, "secondEndPos" : 18797 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 17178, + "secondPos" : 18671, + "firstEndPos" : 17185, + "secondEndPos" : 18678 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -21041,6 +21712,17 @@ "secondPos" : 18681, "firstEndPos" : 17219, "secondEndPos" : 18712 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 17188, + "secondPos" : 18681, + "firstEndPos" : 17193, + "secondEndPos" : 18686 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -21085,6 +21767,17 @@ "secondPos" : 18779, "firstEndPos" : 17303, "secondEndPos" : 18796 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@link", + "secondLabel" : "@link", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 17286, + "secondPos" : 18779, + "firstEndPos" : 17291, + "secondEndPos" : 18784 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22097,6 +22790,28 @@ "secondPos" : 16335, "firstEndPos" : 17912, "secondEndPos" : 16353 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "BuildRule", + "secondLabel" : "BuildRule", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 17914, + "secondPos" : 16355, + "firstEndPos" : 17923, + "secondEndPos" : 16364 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 17914, + "secondPos" : 16355, + "firstEndPos" : 17923, + "secondEndPos" : 16364 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22108,6 +22823,17 @@ "secondPos" : 16365, "firstEndPos" : 17936, "secondEndPos" : 16377 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add dependencies on any build rules used to create the preprocessor.", + "secondLabel" : "// Add dependencies on any build rules used to create the preprocessor.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 17951, + "secondPos" : 16392, + "firstEndPos" : 18022, + "secondEndPos" : 16463 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22196,6 +22922,17 @@ "secondPos" : 16265, "firstEndPos" : 18074, "secondEndPos" : 16277 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// If a build rule generates our input source, add that as a dependency.", + "secondLabel" : "// If a build rule generates our input source, add that as a dependency.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 18089, + "secondPos" : 16512, + "firstEndPos" : 18161, + "secondEndPos" : 16584 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22317,6 +23054,17 @@ "secondPos" : 16647, "firstEndPos" : 18231, "secondEndPos" : 16654 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add in all preprocessor deps.", + "secondLabel" : "// Add in all preprocessor deps.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 18248, + "secondPos" : 16675, + "firstEndPos" : 18280, + "secondEndPos" : 16707 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22394,6 +23142,17 @@ "secondPos" : 16763, "firstEndPos" : 18341, "secondEndPos" : 16768 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Build up the list of compiler flags.", + "secondLabel" : "// Build up the list of compiler flags.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 18350, + "secondPos" : 17487, + "firstEndPos" : 18389, + "secondEndPos" : 17526 }, { "firstType" : "MethodInvocation", "secondType" : "MethodInvocation", @@ -22493,6 +23252,28 @@ "secondPos" : 17538, "firstEndPos" : 18453, "secondEndPos" : 17551 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 18455, + "secondPos" : 17553, + "firstEndPos" : 18461, + "secondEndPos" : 17559 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 18455, + "secondPos" : 17553, + "firstEndPos" : 18461, + "secondEndPos" : 17559 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22504,6 +23285,17 @@ "secondPos" : 17560, "firstEndPos" : 18469, "secondEndPos" : 17567 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// If we're using pic, add in the appropriate flag.", + "secondLabel" : "// If we're using pic, add in the appropriate flag.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 18480, + "secondPos" : 17578, + "firstEndPos" : 18531, + "secondEndPos" : 17629 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22570,6 +23362,17 @@ "secondPos" : 17650, "firstEndPos" : 18560, "secondEndPos" : 17658 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add in the platform specific compiler flags.", + "secondLabel" : "// Add in the platform specific compiler flags.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 18572, + "secondPos" : 17674, + "firstEndPos" : 18619, + "secondEndPos" : 17721 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22834,6 +23637,28 @@ "secondPos" : 18393, "firstEndPos" : 18799, "secondEndPos" : 18406 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 18801, + "secondPos" : 18408, + "firstEndPos" : 18807, + "secondEndPos" : 18414 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 18801, + "secondPos" : 18408, + "firstEndPos" : 18807, + "secondEndPos" : 18414 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22845,6 +23670,17 @@ "secondPos" : 18415, "firstEndPos" : 18815, "secondEndPos" : 18422 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add custom compiler flags.", + "secondLabel" : "// Add custom compiler flags.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 18826, + "secondPos" : 18433, + "firstEndPos" : 18855, + "secondEndPos" : 18462 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -22999,6 +23835,17 @@ "secondPos" : 18547, "firstEndPos" : 18947, "secondEndPos" : 18554 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add custom per-file flags.", + "secondLabel" : "// Add custom per-file flags.", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 18961, + "secondPos" : 18572, + "firstEndPos" : 18990, + "secondEndPos" : 18601 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -23175,6 +24022,17 @@ "secondPos" : 19399, "firstEndPos" : 19120, "secondEndPos" : 19405 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Build the CxxCompile rule and add it to our sorted set of build rules.", + "secondLabel" : "// Build the CxxCompile rule and add it to our sorted set of build rules.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 19128, + "secondPos" : 19413, + "firstEndPos" : 19201, + "secondEndPos" : 19486 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -23494,6 +24352,28 @@ "secondPos" : 19782, "firstEndPos" : 19436, "secondEndPos" : 19800 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "BuildRule", + "secondLabel" : "BuildRule", + "firstParentType" : "SimpleType", + "secondParentType" : "SimpleType", + "firstPos" : 19438, + "secondPos" : 19802, + "firstEndPos" : 19447, + "secondEndPos" : 19811 +}, { + "firstType" : "SimpleType", + "secondType" : "SimpleType", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 19438, + "secondPos" : 19802, + "firstEndPos" : 19447, + "secondEndPos" : 19811 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -26299,6 +27179,28 @@ "secondPos" : 21769, "firstEndPos" : 21374, "secondEndPos" : 21773 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// If it's a preprocessable source, use a combine preprocess-and-compile build rule.", + "secondLabel" : "// If it's a preprocessable source, use a combine preprocess-and-compile build rule.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 21387, + "secondPos" : 21786, + "firstEndPos" : 21471, + "secondEndPos" : 21870 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Otherwise, use a regular compile rule.", + "secondLabel" : "// Otherwise, use a regular compile rule.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 21482, + "secondPos" : 21881, + "firstEndPos" : 21523, + "secondEndPos" : 21922 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", @@ -26805,6 +27707,28 @@ "secondPos" : 22275, "firstEndPos" : 22659, "secondEndPos" : 23058 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// If this is a preprocessable source, first create the preprocess build rule and", + "secondLabel" : "// If this is a preprocessable source, first create the preprocess build rule and", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 21889, + "secondPos" : 22288, + "firstEndPos" : 21970, + "secondEndPos" : 22369 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// update the source and name to represent its compilable output.", + "secondLabel" : "// update the source and name to represent its compilable output.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 21981, + "secondPos" : 22380, + "firstEndPos" : 22046, + "secondEndPos" : 22445 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", @@ -27432,6 +28356,17 @@ "secondPos" : 22827, "firstEndPos" : 22442, "secondEndPos" : 22841 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Now build the compile build rule.", + "secondLabel" : "// Now build the compile build rule.", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 22471, + "secondPos" : 22870, + "firstEndPos" : 22507, + "secondEndPos" : 22906 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -27652,6 +28587,17 @@ "secondPos" : 23042, "firstEndPos" : 22649, "secondEndPos" : 23048 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// $CASES-OMITTED$", + "secondLabel" : "// $CASES-OMITTED$", + "firstParentType" : "SwitchStatement", + "secondParentType" : "SwitchStatement", + "firstPos" : 22669, + "secondPos" : 23068, + "firstEndPos" : 22687, + "secondEndPos" : 23086 }, { "firstType" : "SwitchCase", "secondType" : "SwitchCase", @@ -29126,6 +30072,17 @@ "secondPos" : 24249, "firstEndPos" : 23857, "secondEndPos" : 24256 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Generate position-independent code (e.g. for use in shared libraries).", + "secondLabel" : "// Generate position-independent code (e.g. for use in shared libraries).", + "firstParentType" : "EnumDeclaration", + "secondParentType" : "EnumDeclaration", + "firstPos" : 23865, + "secondPos" : 24264, + "firstEndPos" : 23938, + "secondEndPos" : 24337 }, { "firstType" : "EnumConstantDeclaration", "secondType" : "EnumConstantDeclaration", @@ -29159,6 +30116,17 @@ "secondPos" : 24346, "firstEndPos" : 23954, "secondEndPos" : 24353 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Generate position-dependent code.", + "secondLabel" : "// Generate position-dependent code.", + "firstParentType" : "EnumDeclaration", + "secondParentType" : "EnumDeclaration", + "firstPos" : 23962, + "secondPos" : 24361, + "firstEndPos" : 23998, + "secondEndPos" : 24397 }, { "firstType" : "EnumConstantDeclaration", "secondType" : "EnumConstantDeclaration", diff --git a/src/test/resources/astDiff/commits/glyptodon_guacamole-client/ce1f3d07976de31aed8f8189ec5e1a6453f4b580/extensions.guacamole-auth-jdbc.modules.guacamole-auth-jdbc-base.src.main.java.org.glyptodon.guacamole.auth.jdbc.user.UserContextService.json b/src/test/resources/astDiff/commits/glyptodon_guacamole-client/ce1f3d07976de31aed8f8189ec5e1a6453f4b580/extensions.guacamole-auth-jdbc.modules.guacamole-auth-jdbc-base.src.main.java.org.glyptodon.guacamole.auth.jdbc.user.UserContextService.json index e4bfa57343..ea936f9ec3 100644 --- a/src/test/resources/astDiff/commits/glyptodon_guacamole-client/ce1f3d07976de31aed8f8189ec5e1a6453f4b580/extensions.guacamole-auth-jdbc.modules.guacamole-auth-jdbc-base.src.main.java.org.glyptodon.guacamole.auth.jdbc.user.UserContextService.json +++ b/src/test/resources/astDiff/commits/glyptodon_guacamole-client/ce1f3d07976de31aed8f8189ec5e1a6453f4b580/extensions.guacamole-auth-jdbc.modules.guacamole-auth-jdbc-base.src.main.java.org.glyptodon.guacamole.auth.jdbc.user.UserContextService.json @@ -9,6 +9,17 @@ "secondPos" : 0, "firstEndPos" : 6659, "secondEndPos" : 3187 +}, { + "firstType" : "BlockComment", + "secondType" : "BlockComment", + "firstLabel" : "/*\n * Copyright (C) 2015 Glyptodon LLC\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */", + "secondLabel" : "/*\n * Copyright (C) 2015 Glyptodon LLC\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 0, + "secondPos" : 0, + "firstEndPos" : 1117, + "secondEndPos" : 1117 }, { "firstType" : "PackageDeclaration", "secondType" : "PackageDeclaration", @@ -229,6 +240,17 @@ "secondPos" : 1602, "firstEndPos" : 1947, "secondEndPos" : 1624 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@author", + "secondLabel" : "@author", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 1925, + "secondPos" : 1602, + "firstEndPos" : 1932, + "secondEndPos" : 1609 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -1802,6 +1824,17 @@ "secondPos" : 2173, "firstEndPos" : 4099, "secondEndPos" : 2253 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 4019, + "secondPos" : 2173, + "firstEndPos" : 4025, + "secondEndPos" : 2179 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -1835,6 +1868,17 @@ "secondPos" : 2268, "firstEndPos" : 4220, "secondEndPos" : 2374 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 4114, + "secondPos" : 2268, + "firstEndPos" : 4121, + "secondEndPos" : 2275 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -1868,6 +1912,17 @@ "secondPos" : 2389, "firstEndPos" : 4377, "secondEndPos" : 2531 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@throws", + "secondLabel" : "@throws", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 4235, + "secondPos" : 2389, + "firstEndPos" : 4242, + "secondEndPos" : 2396 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -2022,6 +2077,17 @@ "secondPos" : 2686, "firstEndPos" : 6655, "secondEndPos" : 3183 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Authenticate user", + "secondLabel" : "// Authenticate user", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4543, + "secondPos" : 2697, + "firstEndPos" : 4563, + "secondEndPos" : 2717 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -2209,6 +2275,17 @@ "secondPos" : 2810, "firstEndPos" : 6504, "secondEndPos" : 3032 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Upon successful authentication, return new user context", + "secondLabel" : "// Upon successful authentication, return new user context", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6297, + "secondPos" : 2825, + "firstEndPos" : 6355, + "secondEndPos" : 2883 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -2440,6 +2517,17 @@ "secondPos" : 3013, "firstEndPos" : 6492, "secondEndPos" : 3020 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Otherwise, unauthorized", + "secondLabel" : "// Otherwise, unauthorized", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6514, + "secondPos" : 3042, + "firstEndPos" : 6540, + "secondEndPos" : 3068 }, { "firstType" : "ThrowStatement", "secondType" : "ThrowStatement", diff --git a/src/test/resources/astDiff/commits/glyptodon_guacamole-client/ce1f3d07976de31aed8f8189ec5e1a6453f4b580/extensions.guacamole-auth-jdbc.modules.guacamole-auth-jdbc-base.src.main.java.org.glyptodon.guacamole.auth.jdbc.user.UserService.json b/src/test/resources/astDiff/commits/glyptodon_guacamole-client/ce1f3d07976de31aed8f8189ec5e1a6453f4b580/extensions.guacamole-auth-jdbc.modules.guacamole-auth-jdbc-base.src.main.java.org.glyptodon.guacamole.auth.jdbc.user.UserService.json index f6b85027a8..2e824502d3 100644 --- a/src/test/resources/astDiff/commits/glyptodon_guacamole-client/ce1f3d07976de31aed8f8189ec5e1a6453f4b580/extensions.guacamole-auth-jdbc.modules.guacamole-auth-jdbc-base.src.main.java.org.glyptodon.guacamole.auth.jdbc.user.UserService.json +++ b/src/test/resources/astDiff/commits/glyptodon_guacamole-client/ce1f3d07976de31aed8f8189ec5e1a6453f4b580/extensions.guacamole-auth-jdbc.modules.guacamole-auth-jdbc-base.src.main.java.org.glyptodon.guacamole.auth.jdbc.user.UserService.json @@ -9,6 +9,17 @@ "secondPos" : 0, "firstEndPos" : 9060, "secondEndPos" : 12892 +}, { + "firstType" : "BlockComment", + "secondType" : "BlockComment", + "firstLabel" : "/*\n * Copyright (C) 2013 Glyptodon LLC\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */", + "secondLabel" : "/*\n * Copyright (C) 2013 Glyptodon LLC\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 0, + "secondPos" : 0, + "firstEndPos" : 1117, + "secondEndPos" : 1117 }, { "firstType" : "PackageDeclaration", "secondType" : "PackageDeclaration", @@ -790,6 +801,17 @@ "secondPos" : 2746, "firstEndPos" : 2474, "secondEndPos" : 2784 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@author", + "secondLabel" : "@author", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 2436, + "secondPos" : 2746, + "firstEndPos" : 2443, + "secondEndPos" : 2753 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -3375,6 +3397,17 @@ "secondPos" : 5748, "firstEndPos" : 4302, "secondEndPos" : 6131 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Create new ModeledUser backed by blank model", + "secondLabel" : "// Create new ModeledUser backed by blank model", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 3930, + "secondPos" : 5759, + "firstEndPos" : 3977, + "secondEndPos" : 5806 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -3573,6 +3606,17 @@ "secondPos" : 5908, "firstEndPos" : 4084, "secondEndPos" : 5913 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Set model contents through ModeledUser, copying the provided user", + "secondLabel" : "// Set model contents through ModeledUser, copying the provided user", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4096, + "secondPos" : 5925, + "firstEndPos" : 4164, + "secondEndPos" : 5993 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -3958,6 +4002,17 @@ "secondPos" : 6251, "firstEndPos" : 4662, "secondEndPos" : 6491 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Return whether user has explicit user creation permission", + "secondLabel" : "// Return whether user has explicit user creation permission", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4433, + "secondPos" : 6262, + "firstEndPos" : 4493, + "secondEndPos" : 6322 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -4321,6 +4376,17 @@ "secondPos" : 6620, "firstEndPos" : 4899, "secondEndPos" : 6728 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Return permissions related to users", + "secondLabel" : "// Return permissions related to users", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 4802, + "secondPos" : 6631, + "firstEndPos" : 4840, + "secondEndPos" : 6669 }, { "firstType" : "ReturnStatement", "secondType" : "ReturnStatement", @@ -4651,6 +4717,17 @@ "secondPos" : 6891, "firstEndPos" : 5067, "secondEndPos" : 6896 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Username must not be blank", + "secondLabel" : "// Username must not be blank", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5087, + "secondPos" : 6916, + "firstEndPos" : 5116, + "secondEndPos" : 6945 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", @@ -4926,6 +5003,17 @@ "secondPos" : 7078, "firstEndPos" : 5282, "secondEndPos" : 7111 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Do not create duplicate users", + "secondLabel" : "// Do not create duplicate users", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5302, + "secondPos" : 7131, + "firstEndPos" : 5334, + "secondEndPos" : 7163 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -5619,6 +5707,17 @@ "secondPos" : 7578, "firstEndPos" : 5754, "secondEndPos" : 7583 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Username must not be blank", + "secondLabel" : "// Username must not be blank", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5774, + "secondPos" : 7603, + "firstEndPos" : 5803, + "secondEndPos" : 7632 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", @@ -5894,6 +5993,17 @@ "secondPos" : 7765, "firstEndPos" : 5969, "secondEndPos" : 7798 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Check whether such a user is already present", + "secondLabel" : "// Check whether such a user is already present", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 5989, + "secondPos" : 7818, + "firstEndPos" : 6036, + "secondEndPos" : 7865 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -6114,6 +6224,17 @@ "secondPos" : 7970, "firstEndPos" : 6391, "secondEndPos" : 8220 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Do not rename to existing user", + "secondLabel" : "// Do not rename to existing user", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6156, + "secondPos" : 7985, + "firstEndPos" : 6189, + "secondEndPos" : 8018 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", @@ -6620,6 +6741,17 @@ "secondPos" : 8371, "firstEndPos" : 7393, "secondEndPos" : 9222 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Get original set of implicit permissions", + "secondLabel" : "// Get original set of implicit permissions", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6565, + "secondPos" : 8394, + "firstEndPos" : 6608, + "secondEndPos" : 8437 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -6752,6 +6884,17 @@ "secondPos" : 8537, "firstEndPos" : 6713, "secondEndPos" : 8542 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Grant implicit permissions to the new user", + "secondLabel" : "// Grant implicit permissions to the new user", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 6733, + "secondPos" : 8562, + "firstEndPos" : 6778, + "secondEndPos" : 8607 }, { "firstType" : "EnhancedForStatement", "secondType" : "EnhancedForStatement", @@ -7324,6 +7467,17 @@ "secondPos" : 9014, "firstEndPos" : 7198, "secondEndPos" : 9027 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Add new permission to implicit permission set ", + "secondLabel" : "// Add new permission to implicit permission set ", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7216, + "secondPos" : 9045, + "firstEndPos" : 7265, + "secondEndPos" : 9094 }, { "firstType" : "ExpressionStatement", "secondType" : "ExpressionStatement", @@ -7665,6 +7819,17 @@ "secondPos" : 9383, "firstEndPos" : 7564, "secondEndPos" : 9393 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Do not allow users to delete themselves", + "secondLabel" : "// Do not allow users to delete themselves", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 7576, + "secondPos" : 9405, + "firstEndPos" : 7618, + "secondEndPos" : 9447 }, { "firstType" : "IfStatement", "secondType" : "IfStatement", @@ -7929,6 +8094,17 @@ "secondPos" : 9890, "firstEndPos" : 7974, "secondEndPos" : 9966 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@param", + "secondLabel" : "@param", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 7898, + "secondPos" : 9890, + "firstEndPos" : 7904, + "secondEndPos" : 9896 }, { "firstType" : "SimpleName", "secondType" : "SimpleName", @@ -7962,6 +8138,17 @@ "secondPos" : 9981, "firstEndPos" : 8102, "secondEndPos" : 10094 +}, { + "firstType" : "TAG_NAME", + "secondType" : "TAG_NAME", + "firstLabel" : "@return", + "secondLabel" : "@return", + "firstParentType" : "TagElement", + "secondParentType" : "TagElement", + "firstPos" : 7989, + "secondPos" : 9981, + "firstEndPos" : 7996, + "secondEndPos" : 9988 }, { "firstType" : "TextElement", "secondType" : "TextElement", @@ -8083,6 +8270,17 @@ "secondPos" : 10314, "firstEndPos" : 9056, "secondEndPos" : 12888 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Get username and password", + "secondLabel" : "// Get username and password", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8183, + "secondPos" : 10325, + "firstEndPos" : 8211, + "secondEndPos" : 10353 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -8281,6 +8479,17 @@ "secondPos" : 10445, "firstEndPos" : 8314, "secondEndPos" : 10456 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Retrieve corresponding user model, if such a user exists", + "secondLabel" : "// Retrieve corresponding user model, if such a user exists", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8327, + "secondPos" : 10469, + "firstEndPos" : 8386, + "secondEndPos" : 10528 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -8479,6 +8688,17 @@ "secondPos" : 10641, "firstEndPos" : 8503, "secondEndPos" : 10645 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// If password hash matches, return the retrieved user", + "secondLabel" : "// Verify provided password is correct", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8514, + "secondPos" : 10778, + "firstEndPos" : 8568, + "secondEndPos" : 10816 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", @@ -8776,6 +8996,17 @@ "secondPos" : 10959, "firstEndPos" : 8725, "secondEndPos" : 10974 +}, { + "firstType" : "LineComment", + "secondType" : "LineComment", + "firstLabel" : "// Return corresponding user, set up cyclic reference", + "secondLabel" : "// Create corresponding user object, set up cyclic reference", + "firstParentType" : "Block", + "secondParentType" : "Block", + "firstPos" : 8745, + "secondPos" : 11013, + "firstEndPos" : 8798, + "secondEndPos" : 11073 }, { "firstType" : "VariableDeclarationStatement", "secondType" : "VariableDeclarationStatement", diff --git a/src/test/resources/astDiff/commits/gradle_gradle/3a7ccf5a252077332b9505acb22f190745f726f7/subprojects.platform-play.src.main.java.org.gradle.play.tasks.PlayRun.json b/src/test/resources/astDiff/commits/gradle_gradle/3a7ccf5a252077332b9505acb22f190745f726f7/subprojects.platform-play.src.main.java.org.gradle.play.tasks.PlayRun.json index 0bb37bdc48..b34d792319 100644 --- a/src/test/resources/astDiff/commits/gradle_gradle/3a7ccf5a252077332b9505acb22f190745f726f7/subprojects.platform-play.src.main.java.org.gradle.play.tasks.PlayRun.json +++ b/src/test/resources/astDiff/commits/gradle_gradle/3a7ccf5a252077332b9505acb22f190745f726f7/subprojects.platform-play.src.main.java.org.gradle.play.tasks.PlayRun.json @@ -20,6 +20,17 @@ "secondPos" : 0, "firstEndPos" : 615, "secondEndPos" : 615 +}, { + "firstType" : "BlockComment", + "secondType" : "BlockComment", + "firstLabel" : "/*\n * Copyright 2014 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */", + "secondLabel" : "/*\n * Copyright 2014 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */", + "firstParentType" : "CompilationUnit", + "secondParentType" : "CompilationUnit", + "firstPos" : 0, + "secondPos" : 0, + "firstEndPos" : 615, + "secondEndPos" : 615 }, { "firstType" : "PackageDeclaration", "secondType" : "PackageDeclaration", diff --git a/src/test/resources/astDiff/commits/junit-team_junit5/6b575f2ee5f02288a774ff0a85ce3a3e3cb6946f/junit5-engine.src.main.java.org.junit.gen5.engine.junit5.descriptor.ClassTestDescriptor.json b/src/test/resources/astDiff/commits/junit-team_junit5/6b575f2ee5f02288a774ff0a85ce3a3e3cb6946f/junit5-engine.src.main.java.org.junit.gen5.engine.junit5.descriptor.ClassTestDescriptor.json index e4cc5d2881..1215ea830d 100644 --- a/src/test/resources/astDiff/commits/junit-team_junit5/6b575f2ee5f02288a774ff0a85ce3a3e3cb6946f/junit5-engine.src.main.java.org.junit.gen5.engine.junit5.descriptor.ClassTestDescriptor.json +++ b/src/test/resources/astDiff/commits/junit-team_junit5/6b575f2ee5f02288a774ff0a85ce3a3e3cb6946f/junit5-engine.src.main.java.org.junit.gen5.engine.junit5.descriptor.ClassTestDescriptor.json @@ -10338,6 +10338,160 @@ "secondPos" : 2216, "firstEndPos" : 10053, "secondEndPos" : 2362 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationFragment", + "secondParentType" : "ClassInstanceCreation", + "firstPos" : 9854, + "secondPos" : 2246, + "firstEndPos" : 9993, + "secondEndPos" : 2356 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 9854, + "secondPos" : 2246, + "firstEndPos" : 9860, + "secondEndPos" : 2252 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "String", + "secondLabel" : "String", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 9854, + "secondPos" : 2246, + "firstEndPos" : 9860, + "secondEndPos" : 2252 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "format", + "secondLabel" : "format", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 9861, + "secondPos" : 2253, + "firstEndPos" : 9867, + "secondEndPos" : 2259 +}, { + "firstType" : "METHOD_INVOCATION_ARGUMENTS", + "secondType" : "METHOD_INVOCATION_ARGUMENTS", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 9868, + "secondPos" : 2260, + "firstEndPos" : 9992, + "secondEndPos" : 2355 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"Cannot register method '%s' as an @%s method since it is not static.\"", + "secondLabel" : "\"@%s method '%s' must be static.\"", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 9868, + "secondPos" : 2260, + "firstEndPos" : 9938, + "secondEndPos" : 2293 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 9944, + "secondPos" : 2295, + "firstEndPos" : 9960, + "secondEndPos" : 2325 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 9944, + "secondPos" : 2295, + "firstEndPos" : 9950, + "secondEndPos" : 2309 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "method", + "secondLabel" : "annotationType", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 9944, + "secondPos" : 2295, + "firstEndPos" : 9950, + "secondEndPos" : 2309 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getName", + "secondLabel" : "getSimpleName", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 9951, + "secondPos" : 2310, + "firstEndPos" : 9958, + "secondEndPos" : 2323 +}, { + "firstType" : "MethodInvocation", + "secondType" : "MethodInvocation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "METHOD_INVOCATION_ARGUMENTS", + "secondParentType" : "METHOD_INVOCATION_ARGUMENTS", + "firstPos" : 9962, + "secondPos" : 2331, + "firstEndPos" : 9992, + "secondEndPos" : 2355 +}, { + "firstType" : "METHOD_INVOCATION_RECEIVER", + "secondType" : "METHOD_INVOCATION_RECEIVER", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 9962, + "secondPos" : 2331, + "firstEndPos" : 9976, + "secondEndPos" : 2337 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "annotationType", + "secondLabel" : "method", + "firstParentType" : "METHOD_INVOCATION_RECEIVER", + "secondParentType" : "METHOD_INVOCATION_RECEIVER", + "firstPos" : 9962, + "secondPos" : 2331, + "firstEndPos" : 9976, + "secondEndPos" : 2337 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "getSimpleName", + "secondLabel" : "toGenericString", + "firstParentType" : "MethodInvocation", + "secondParentType" : "MethodInvocation", + "firstPos" : 9977, + "secondPos" : 2338, + "firstEndPos" : 9990, + "secondEndPos" : 2353 }, { "firstType" : "ThrowStatement", "secondType" : "ThrowStatement", diff --git a/src/test/resources/astDiff/commits/spring-projects_spring-boot/20d39f7af2165c67d5221f556f58820c992d2cc6/spring-boot.src.main.java.org.springframework.boot.cloudfoundry.VcapApplicationListener.json b/src/test/resources/astDiff/commits/spring-projects_spring-boot/20d39f7af2165c67d5221f556f58820c992d2cc6/spring-boot.src.main.java.org.springframework.boot.cloudfoundry.VcapApplicationListener.json index a10984bca3..1b0cb0d90e 100644 --- a/src/test/resources/astDiff/commits/spring-projects_spring-boot/20d39f7af2165c67d5221f556f58820c992d2cc6/spring-boot.src.main.java.org.springframework.boot.cloudfoundry.VcapApplicationListener.json +++ b/src/test/resources/astDiff/commits/spring-projects_spring-boot/20d39f7af2165c67d5221f556f58820c992d2cc6/spring-boot.src.main.java.org.springframework.boot.cloudfoundry.VcapApplicationListener.json @@ -8435,6 +8435,39 @@ "secondPos" : 7983, "firstEndPos" : 8353, "secondEndPos" : 8005 +}, { + "firstType" : "SingleMemberAnnotation", + "secondType" : "SingleMemberAnnotation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "MethodDeclaration", + "firstPos" : 8358, + "secondPos" : 7687, + "firstEndPos" : 8388, + "secondEndPos" : 7717 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "SuppressWarnings", + "secondLabel" : "SuppressWarnings", + "firstParentType" : "SingleMemberAnnotation", + "secondParentType" : "SingleMemberAnnotation", + "firstPos" : 8359, + "secondPos" : 7688, + "firstEndPos" : 8375, + "secondEndPos" : 7704 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"unchecked\"", + "secondLabel" : "\"unchecked\"", + "firstParentType" : "SingleMemberAnnotation", + "secondParentType" : "SingleMemberAnnotation", + "firstPos" : 8376, + "secondPos" : 7705, + "firstEndPos" : 8387, + "secondEndPos" : 7716 }, { "firstType" : "CastExpression", "secondType" : "CastExpression", @@ -8688,6 +8721,39 @@ "secondPos" : 8144, "firstEndPos" : 8656, "secondEndPos" : 8203 +}, { + "firstType" : "SingleMemberAnnotation", + "secondType" : "SingleMemberAnnotation", + "firstLabel" : "", + "secondLabel" : "", + "firstParentType" : "VariableDeclarationStatement", + "secondParentType" : "MethodDeclaration", + "firstPos" : 8562, + "secondPos" : 7687, + "firstEndPos" : 8592, + "secondEndPos" : 7717 +}, { + "firstType" : "SimpleName", + "secondType" : "SimpleName", + "firstLabel" : "SuppressWarnings", + "secondLabel" : "SuppressWarnings", + "firstParentType" : "SingleMemberAnnotation", + "secondParentType" : "SingleMemberAnnotation", + "firstPos" : 8563, + "secondPos" : 7688, + "firstEndPos" : 8579, + "secondEndPos" : 7704 +}, { + "firstType" : "StringLiteral", + "secondType" : "StringLiteral", + "firstLabel" : "\"unchecked\"", + "secondLabel" : "\"unchecked\"", + "firstParentType" : "SingleMemberAnnotation", + "secondParentType" : "SingleMemberAnnotation", + "firstPos" : 8580, + "secondPos" : 7705, + "firstEndPos" : 8591, + "secondEndPos" : 7716 }, { "firstType" : "ParameterizedType", "secondType" : "ParameterizedType",