summaryrefslogtreecommitdiff
path: root/test/cuchaz
diff options
context:
space:
mode:
authorGravatar Cuchaz2015-04-19 18:51:04 -0400
committerGravatar Cuchaz2015-04-19 18:51:04 -0400
commit51b92b780b57cc955e0618d09fbc3aa95ff47163 (patch)
treec67831c7206060ad699eb490db574fd2a37f5c6d /test/cuchaz
parentsave more translation information for m3l (diff)
downloadenigma-fork-0.10.4_beta.tar.gz
enigma-fork-0.10.4_beta.tar.xz
enigma-fork-0.10.4_beta.zip
relicense Enigma as LGPLv0.10.4_beta
Diffstat (limited to 'test/cuchaz')
-rw-r--r--test/cuchaz/enigma/TestDeobfed.java10
-rw-r--r--test/cuchaz/enigma/TestDeobfuscator.java9
-rw-r--r--test/cuchaz/enigma/TestEntryFactory.java9
-rw-r--r--test/cuchaz/enigma/TestInnerClasses.java9
-rw-r--r--test/cuchaz/enigma/TestJarIndexConstructorReferences.java8
-rw-r--r--test/cuchaz/enigma/TestJarIndexInheritanceTree.java8
-rw-r--r--test/cuchaz/enigma/TestJarIndexLoneClass.java9
-rw-r--r--test/cuchaz/enigma/TestSignature.java10
-rw-r--r--test/cuchaz/enigma/TestSourceIndex.java9
-rw-r--r--test/cuchaz/enigma/TestTokensConstructors.java8
-rw-r--r--test/cuchaz/enigma/TestTranslator.java10
-rw-r--r--test/cuchaz/enigma/TestType.java10
-rw-r--r--test/cuchaz/enigma/TokenChecker.java8
-rw-r--r--test/cuchaz/enigma/inputs/Keep.java10
-rw-r--r--test/cuchaz/enigma/inputs/constructors/BaseClass.java10
-rw-r--r--test/cuchaz/enigma/inputs/constructors/Caller.java10
-rw-r--r--test/cuchaz/enigma/inputs/constructors/DefaultConstructable.java10
-rw-r--r--test/cuchaz/enigma/inputs/constructors/SubClass.java10
-rw-r--r--test/cuchaz/enigma/inputs/constructors/SubSubClass.java10
-rw-r--r--test/cuchaz/enigma/inputs/inheritanceTree/BaseClass.java10
-rw-r--r--test/cuchaz/enigma/inputs/inheritanceTree/SubclassA.java10
-rw-r--r--test/cuchaz/enigma/inputs/inheritanceTree/SubclassB.java10
-rw-r--r--test/cuchaz/enigma/inputs/inheritanceTree/SubsubclassAA.java10
-rw-r--r--test/cuchaz/enigma/inputs/innerClasses/A_Anonymous.java10
-rw-r--r--test/cuchaz/enigma/inputs/innerClasses/B_AnonymousWithScopeArgs.java10
-rw-r--r--test/cuchaz/enigma/inputs/innerClasses/C_ConstructorArgs.java10
-rw-r--r--test/cuchaz/enigma/inputs/innerClasses/D_Simple.java10
-rw-r--r--test/cuchaz/enigma/inputs/innerClasses/E_AnonymousWithOuterAccess.java10
-rw-r--r--test/cuchaz/enigma/inputs/innerClasses/F_ClassTree.java10
-rw-r--r--test/cuchaz/enigma/inputs/loneClass/LoneClass.java10
-rw-r--r--test/cuchaz/enigma/inputs/translation/A_Basic.java10
-rw-r--r--test/cuchaz/enigma/inputs/translation/B_BaseClass.java10
-rw-r--r--test/cuchaz/enigma/inputs/translation/C_SubClass.java10
-rw-r--r--test/cuchaz/enigma/inputs/translation/D_AnonymousTesting.java10
-rw-r--r--test/cuchaz/enigma/inputs/translation/E_Bridges.java10
-rw-r--r--test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java10
-rw-r--r--test/cuchaz/enigma/inputs/translation/G_OuterClass.java10
-rw-r--r--test/cuchaz/enigma/inputs/translation/H_NamelessClass.java10
-rw-r--r--test/cuchaz/enigma/inputs/translation/I_Generics.java10
39 files changed, 336 insertions, 41 deletions
diff --git a/test/cuchaz/enigma/TestDeobfed.java b/test/cuchaz/enigma/TestDeobfed.java
index ca349d7..f4093ee 100644
--- a/test/cuchaz/enigma/TestDeobfed.java
+++ b/test/cuchaz/enigma/TestDeobfed.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma; 11package cuchaz.enigma;
2 12
3 13
diff --git a/test/cuchaz/enigma/TestDeobfuscator.java b/test/cuchaz/enigma/TestDeobfuscator.java
index 26d492d..bb2a4a5 100644
--- a/test/cuchaz/enigma/TestDeobfuscator.java
+++ b/test/cuchaz/enigma/TestDeobfuscator.java
@@ -1,10 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin.\ 2 * Copyright (c) 2015 Jeff Martin.
3 *
4 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the GNU Public License v3.0 4 * are made available under the terms of the GNU Lesser General Public
6 * which accompanies this distribution, and is available at 5 * License v3.0 which accompanies this distribution, and is available at
7 * http://www.gnu.org/licenses/gpl.html 6 * http://www.gnu.org/licenses/lgpl.html
8 * 7 *
9 * Contributors: 8 * Contributors:
10 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/test/cuchaz/enigma/TestEntryFactory.java b/test/cuchaz/enigma/TestEntryFactory.java
index 754f308..4aa773b 100644
--- a/test/cuchaz/enigma/TestEntryFactory.java
+++ b/test/cuchaz/enigma/TestEntryFactory.java
@@ -1,10 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin.\ 2 * Copyright (c) 2015 Jeff Martin.
3 *
4 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the GNU Public License v3.0 4 * are made available under the terms of the GNU Lesser General Public
6 * which accompanies this distribution, and is available at 5 * License v3.0 which accompanies this distribution, and is available at
7 * http://www.gnu.org/licenses/gpl.html 6 * http://www.gnu.org/licenses/lgpl.html
8 * 7 *
9 * Contributors: 8 * Contributors:
10 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/test/cuchaz/enigma/TestInnerClasses.java b/test/cuchaz/enigma/TestInnerClasses.java
index 014a461..41dee4d 100644
--- a/test/cuchaz/enigma/TestInnerClasses.java
+++ b/test/cuchaz/enigma/TestInnerClasses.java
@@ -1,10 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2015 Jeff Martin.
3 *
4 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the GNU Public License v3.0 4 * are made available under the terms of the GNU Lesser General Public
6 * which accompanies this distribution, and is available at 5 * License v3.0 which accompanies this distribution, and is available at
7 * http://www.gnu.org/licenses/gpl.html 6 * http://www.gnu.org/licenses/lgpl.html
8 * 7 *
9 * Contributors: 8 * Contributors:
10 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/test/cuchaz/enigma/TestJarIndexConstructorReferences.java b/test/cuchaz/enigma/TestJarIndexConstructorReferences.java
index e1a3022..1c6ead1 100644
--- a/test/cuchaz/enigma/TestJarIndexConstructorReferences.java
+++ b/test/cuchaz/enigma/TestJarIndexConstructorReferences.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Public License v3.0 4 * are made available under the terms of the GNU Lesser General Public
5 * which accompanies this distribution, and is available at 5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/gpl.html 6 * http://www.gnu.org/licenses/lgpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/test/cuchaz/enigma/TestJarIndexInheritanceTree.java b/test/cuchaz/enigma/TestJarIndexInheritanceTree.java
index 6e2c1ad..04d4fb2 100644
--- a/test/cuchaz/enigma/TestJarIndexInheritanceTree.java
+++ b/test/cuchaz/enigma/TestJarIndexInheritanceTree.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Public License v3.0 4 * are made available under the terms of the GNU Lesser General Public
5 * which accompanies this distribution, and is available at 5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/gpl.html 6 * http://www.gnu.org/licenses/lgpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/test/cuchaz/enigma/TestJarIndexLoneClass.java b/test/cuchaz/enigma/TestJarIndexLoneClass.java
index 0c126ad..2889241 100644
--- a/test/cuchaz/enigma/TestJarIndexLoneClass.java
+++ b/test/cuchaz/enigma/TestJarIndexLoneClass.java
@@ -1,10 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2015 Jeff Martin.
3 *
4 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the GNU Public License v3.0 4 * are made available under the terms of the GNU Lesser General Public
6 * which accompanies this distribution, and is available at 5 * License v3.0 which accompanies this distribution, and is available at
7 * http://www.gnu.org/licenses/gpl.html 6 * http://www.gnu.org/licenses/lgpl.html
8 * 7 *
9 * Contributors: 8 * Contributors:
10 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/test/cuchaz/enigma/TestSignature.java b/test/cuchaz/enigma/TestSignature.java
index 649b76d..8537adf 100644
--- a/test/cuchaz/enigma/TestSignature.java
+++ b/test/cuchaz/enigma/TestSignature.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma; 11package cuchaz.enigma;
2 12
3import static org.hamcrest.MatcherAssert.*; 13import static org.hamcrest.MatcherAssert.*;
diff --git a/test/cuchaz/enigma/TestSourceIndex.java b/test/cuchaz/enigma/TestSourceIndex.java
index 94bf941..9329b71 100644
--- a/test/cuchaz/enigma/TestSourceIndex.java
+++ b/test/cuchaz/enigma/TestSourceIndex.java
@@ -1,10 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2015 Jeff Martin.
3 *
4 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the GNU Public License v3.0 4 * are made available under the terms of the GNU Lesser General Public
6 * which accompanies this distribution, and is available at 5 * License v3.0 which accompanies this distribution, and is available at
7 * http://www.gnu.org/licenses/gpl.html 6 * http://www.gnu.org/licenses/lgpl.html
8 * 7 *
9 * Contributors: 8 * Contributors:
10 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/test/cuchaz/enigma/TestTokensConstructors.java b/test/cuchaz/enigma/TestTokensConstructors.java
index a563f83..07a37ca 100644
--- a/test/cuchaz/enigma/TestTokensConstructors.java
+++ b/test/cuchaz/enigma/TestTokensConstructors.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Public License v3.0 4 * are made available under the terms of the GNU Lesser General Public
5 * which accompanies this distribution, and is available at 5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/gpl.html 6 * http://www.gnu.org/licenses/lgpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/test/cuchaz/enigma/TestTranslator.java b/test/cuchaz/enigma/TestTranslator.java
index 1b61740..668fe05 100644
--- a/test/cuchaz/enigma/TestTranslator.java
+++ b/test/cuchaz/enigma/TestTranslator.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma; 11package cuchaz.enigma;
2 12
3import static cuchaz.enigma.TestEntryFactory.*; 13import static cuchaz.enigma.TestEntryFactory.*;
diff --git a/test/cuchaz/enigma/TestType.java b/test/cuchaz/enigma/TestType.java
index 71aaaee..01c235b 100644
--- a/test/cuchaz/enigma/TestType.java
+++ b/test/cuchaz/enigma/TestType.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma; 11package cuchaz.enigma;
2 12
3import static cuchaz.enigma.TestEntryFactory.*; 13import static cuchaz.enigma.TestEntryFactory.*;
diff --git a/test/cuchaz/enigma/TokenChecker.java b/test/cuchaz/enigma/TokenChecker.java
index a72c2fc..7afb4cf 100644
--- a/test/cuchaz/enigma/TokenChecker.java
+++ b/test/cuchaz/enigma/TokenChecker.java
@@ -1,9 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin. 2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Public License v3.0 4 * are made available under the terms of the GNU Lesser General Public
5 * which accompanies this distribution, and is available at 5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/gpl.html 6 * http://www.gnu.org/licenses/lgpl.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * Jeff Martin - initial API and implementation 9 * Jeff Martin - initial API and implementation
diff --git a/test/cuchaz/enigma/inputs/Keep.java b/test/cuchaz/enigma/inputs/Keep.java
index 390e82f..f04875f 100644
--- a/test/cuchaz/enigma/inputs/Keep.java
+++ b/test/cuchaz/enigma/inputs/Keep.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs; 11package cuchaz.enigma.inputs;
2 12
3public class Keep { 13public class Keep {
diff --git a/test/cuchaz/enigma/inputs/constructors/BaseClass.java b/test/cuchaz/enigma/inputs/constructors/BaseClass.java
index 9345308..65e782a 100644
--- a/test/cuchaz/enigma/inputs/constructors/BaseClass.java
+++ b/test/cuchaz/enigma/inputs/constructors/BaseClass.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.constructors; 11package cuchaz.enigma.inputs.constructors;
2 12
3// none/a 13// none/a
diff --git a/test/cuchaz/enigma/inputs/constructors/Caller.java b/test/cuchaz/enigma/inputs/constructors/Caller.java
index 5727875..75096ec 100644
--- a/test/cuchaz/enigma/inputs/constructors/Caller.java
+++ b/test/cuchaz/enigma/inputs/constructors/Caller.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.constructors; 11package cuchaz.enigma.inputs.constructors;
2 12
3// none/b 13// none/b
diff --git a/test/cuchaz/enigma/inputs/constructors/DefaultConstructable.java b/test/cuchaz/enigma/inputs/constructors/DefaultConstructable.java
index 26a3ddb..655f4da 100644
--- a/test/cuchaz/enigma/inputs/constructors/DefaultConstructable.java
+++ b/test/cuchaz/enigma/inputs/constructors/DefaultConstructable.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.constructors; 11package cuchaz.enigma.inputs.constructors;
2 12
3public class DefaultConstructable { 13public class DefaultConstructable {
diff --git a/test/cuchaz/enigma/inputs/constructors/SubClass.java b/test/cuchaz/enigma/inputs/constructors/SubClass.java
index fecfa2b..b0fb3e9 100644
--- a/test/cuchaz/enigma/inputs/constructors/SubClass.java
+++ b/test/cuchaz/enigma/inputs/constructors/SubClass.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.constructors; 11package cuchaz.enigma.inputs.constructors;
2 12
3// none/d extends none/a 13// none/d extends none/a
diff --git a/test/cuchaz/enigma/inputs/constructors/SubSubClass.java b/test/cuchaz/enigma/inputs/constructors/SubSubClass.java
index ab84161..5031405 100644
--- a/test/cuchaz/enigma/inputs/constructors/SubSubClass.java
+++ b/test/cuchaz/enigma/inputs/constructors/SubSubClass.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.constructors; 11package cuchaz.enigma.inputs.constructors;
2 12
3// none/e extends none/d 13// none/e extends none/d
diff --git a/test/cuchaz/enigma/inputs/inheritanceTree/BaseClass.java b/test/cuchaz/enigma/inputs/inheritanceTree/BaseClass.java
index 5b416c4..4f9c5b0 100644
--- a/test/cuchaz/enigma/inputs/inheritanceTree/BaseClass.java
+++ b/test/cuchaz/enigma/inputs/inheritanceTree/BaseClass.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.inheritanceTree; 11package cuchaz.enigma.inputs.inheritanceTree;
2 12
3// none/a 13// none/a
diff --git a/test/cuchaz/enigma/inputs/inheritanceTree/SubclassA.java b/test/cuchaz/enigma/inputs/inheritanceTree/SubclassA.java
index 7a99d51..140d2a8 100644
--- a/test/cuchaz/enigma/inputs/inheritanceTree/SubclassA.java
+++ b/test/cuchaz/enigma/inputs/inheritanceTree/SubclassA.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.inheritanceTree; 11package cuchaz.enigma.inputs.inheritanceTree;
2 12
3// none/b extends none/a 13// none/b extends none/a
diff --git a/test/cuchaz/enigma/inputs/inheritanceTree/SubclassB.java b/test/cuchaz/enigma/inputs/inheritanceTree/SubclassB.java
index c9485d3..99d149b 100644
--- a/test/cuchaz/enigma/inputs/inheritanceTree/SubclassB.java
+++ b/test/cuchaz/enigma/inputs/inheritanceTree/SubclassB.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.inheritanceTree; 11package cuchaz.enigma.inputs.inheritanceTree;
2 12
3// none/c extends none/a 13// none/c extends none/a
diff --git a/test/cuchaz/enigma/inputs/inheritanceTree/SubsubclassAA.java b/test/cuchaz/enigma/inputs/inheritanceTree/SubsubclassAA.java
index afd03ac..2e414b7 100644
--- a/test/cuchaz/enigma/inputs/inheritanceTree/SubsubclassAA.java
+++ b/test/cuchaz/enigma/inputs/inheritanceTree/SubsubclassAA.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.inheritanceTree; 11package cuchaz.enigma.inputs.inheritanceTree;
2 12
3// none/d extends none/b 13// none/d extends none/b
diff --git a/test/cuchaz/enigma/inputs/innerClasses/A_Anonymous.java b/test/cuchaz/enigma/inputs/innerClasses/A_Anonymous.java
index f7118f6..f644439 100644
--- a/test/cuchaz/enigma/inputs/innerClasses/A_Anonymous.java
+++ b/test/cuchaz/enigma/inputs/innerClasses/A_Anonymous.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.innerClasses; 11package cuchaz.enigma.inputs.innerClasses;
2 12
3public class A_Anonymous { 13public class A_Anonymous {
diff --git a/test/cuchaz/enigma/inputs/innerClasses/B_AnonymousWithScopeArgs.java b/test/cuchaz/enigma/inputs/innerClasses/B_AnonymousWithScopeArgs.java
index 42fba9a..d78be84 100644
--- a/test/cuchaz/enigma/inputs/innerClasses/B_AnonymousWithScopeArgs.java
+++ b/test/cuchaz/enigma/inputs/innerClasses/B_AnonymousWithScopeArgs.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.innerClasses; 11package cuchaz.enigma.inputs.innerClasses;
2 12
3public class B_AnonymousWithScopeArgs { 13public class B_AnonymousWithScopeArgs {
diff --git a/test/cuchaz/enigma/inputs/innerClasses/C_ConstructorArgs.java b/test/cuchaz/enigma/inputs/innerClasses/C_ConstructorArgs.java
index 8fa6c5b..eb03489 100644
--- a/test/cuchaz/enigma/inputs/innerClasses/C_ConstructorArgs.java
+++ b/test/cuchaz/enigma/inputs/innerClasses/C_ConstructorArgs.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.innerClasses; 11package cuchaz.enigma.inputs.innerClasses;
2 12
3@SuppressWarnings("unused") 13@SuppressWarnings("unused")
diff --git a/test/cuchaz/enigma/inputs/innerClasses/D_Simple.java b/test/cuchaz/enigma/inputs/innerClasses/D_Simple.java
index c4fc0ef..0e9bf82 100644
--- a/test/cuchaz/enigma/inputs/innerClasses/D_Simple.java
+++ b/test/cuchaz/enigma/inputs/innerClasses/D_Simple.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.innerClasses; 11package cuchaz.enigma.inputs.innerClasses;
2 12
3public class D_Simple { 13public class D_Simple {
diff --git a/test/cuchaz/enigma/inputs/innerClasses/E_AnonymousWithOuterAccess.java b/test/cuchaz/enigma/inputs/innerClasses/E_AnonymousWithOuterAccess.java
index e1de53c..255434d 100644
--- a/test/cuchaz/enigma/inputs/innerClasses/E_AnonymousWithOuterAccess.java
+++ b/test/cuchaz/enigma/inputs/innerClasses/E_AnonymousWithOuterAccess.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.innerClasses; 11package cuchaz.enigma.inputs.innerClasses;
2 12
3public class E_AnonymousWithOuterAccess { 13public class E_AnonymousWithOuterAccess {
diff --git a/test/cuchaz/enigma/inputs/innerClasses/F_ClassTree.java b/test/cuchaz/enigma/inputs/innerClasses/F_ClassTree.java
index 6552d8a..7d1dab4 100644
--- a/test/cuchaz/enigma/inputs/innerClasses/F_ClassTree.java
+++ b/test/cuchaz/enigma/inputs/innerClasses/F_ClassTree.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.innerClasses; 11package cuchaz.enigma.inputs.innerClasses;
2 12
3 13
diff --git a/test/cuchaz/enigma/inputs/loneClass/LoneClass.java b/test/cuchaz/enigma/inputs/loneClass/LoneClass.java
index 18c716e..bf264fa 100644
--- a/test/cuchaz/enigma/inputs/loneClass/LoneClass.java
+++ b/test/cuchaz/enigma/inputs/loneClass/LoneClass.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.loneClass; 11package cuchaz.enigma.inputs.loneClass;
2 12
3public class LoneClass { 13public class LoneClass {
diff --git a/test/cuchaz/enigma/inputs/translation/A_Basic.java b/test/cuchaz/enigma/inputs/translation/A_Basic.java
index 8930763..26acac8 100644
--- a/test/cuchaz/enigma/inputs/translation/A_Basic.java
+++ b/test/cuchaz/enigma/inputs/translation/A_Basic.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.translation; 11package cuchaz.enigma.inputs.translation;
2 12
3public class A_Basic { 13public class A_Basic {
diff --git a/test/cuchaz/enigma/inputs/translation/B_BaseClass.java b/test/cuchaz/enigma/inputs/translation/B_BaseClass.java
index 44fbc8d..035e329 100644
--- a/test/cuchaz/enigma/inputs/translation/B_BaseClass.java
+++ b/test/cuchaz/enigma/inputs/translation/B_BaseClass.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.translation; 11package cuchaz.enigma.inputs.translation;
2 12
3public class B_BaseClass { 13public class B_BaseClass {
diff --git a/test/cuchaz/enigma/inputs/translation/C_SubClass.java b/test/cuchaz/enigma/inputs/translation/C_SubClass.java
index 8fe0b79..6026a8d 100644
--- a/test/cuchaz/enigma/inputs/translation/C_SubClass.java
+++ b/test/cuchaz/enigma/inputs/translation/C_SubClass.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.translation; 11package cuchaz.enigma.inputs.translation;
2 12
3public class C_SubClass extends B_BaseClass { 13public class C_SubClass extends B_BaseClass {
diff --git a/test/cuchaz/enigma/inputs/translation/D_AnonymousTesting.java b/test/cuchaz/enigma/inputs/translation/D_AnonymousTesting.java
index a1166e2..a1827f9 100644
--- a/test/cuchaz/enigma/inputs/translation/D_AnonymousTesting.java
+++ b/test/cuchaz/enigma/inputs/translation/D_AnonymousTesting.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.translation; 11package cuchaz.enigma.inputs.translation;
2 12
3import java.util.ArrayList; 13import java.util.ArrayList;
diff --git a/test/cuchaz/enigma/inputs/translation/E_Bridges.java b/test/cuchaz/enigma/inputs/translation/E_Bridges.java
index dac50d3..769eb70 100644
--- a/test/cuchaz/enigma/inputs/translation/E_Bridges.java
+++ b/test/cuchaz/enigma/inputs/translation/E_Bridges.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.translation; 11package cuchaz.enigma.inputs.translation;
2 12
3import java.util.Iterator; 13import java.util.Iterator;
diff --git a/test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java b/test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java
index 4e09179..32c246c 100644
--- a/test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java
+++ b/test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.translation; 11package cuchaz.enigma.inputs.translation;
2 12
3public class F_ObjectMethods { 13public class F_ObjectMethods {
diff --git a/test/cuchaz/enigma/inputs/translation/G_OuterClass.java b/test/cuchaz/enigma/inputs/translation/G_OuterClass.java
index 0856afe..a2e0daf 100644
--- a/test/cuchaz/enigma/inputs/translation/G_OuterClass.java
+++ b/test/cuchaz/enigma/inputs/translation/G_OuterClass.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.translation; 11package cuchaz.enigma.inputs.translation;
2 12
3 13
diff --git a/test/cuchaz/enigma/inputs/translation/H_NamelessClass.java b/test/cuchaz/enigma/inputs/translation/H_NamelessClass.java
index 5802d78..1b718a5 100644
--- a/test/cuchaz/enigma/inputs/translation/H_NamelessClass.java
+++ b/test/cuchaz/enigma/inputs/translation/H_NamelessClass.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.translation; 11package cuchaz.enigma.inputs.translation;
2 12
3 13
diff --git a/test/cuchaz/enigma/inputs/translation/I_Generics.java b/test/cuchaz/enigma/inputs/translation/I_Generics.java
index 191931a..3490f9d 100644
--- a/test/cuchaz/enigma/inputs/translation/I_Generics.java
+++ b/test/cuchaz/enigma/inputs/translation/I_Generics.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 *
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
1package cuchaz.enigma.inputs.translation; 11package cuchaz.enigma.inputs.translation;
2 12
3import java.util.List; 13import java.util.List;