summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGravatar jeff2014-10-08 23:54:08 -0400
committerGravatar jeff2014-10-08 23:54:08 -0400
commit035e73fba69ab06172ae9d784b9e0e4fffeb8388 (patch)
tree2a4334d75ffc8731a19d86b75c1abf97be9fc575 /test
parentAdded tag v0.6 beta for changeset a64497064515 (diff)
downloadenigma-fork-035e73fba69ab06172ae9d784b9e0e4fffeb8388.tar.gz
enigma-fork-035e73fba69ab06172ae9d784b9e0e4fffeb8388.tar.xz
enigma-fork-035e73fba69ab06172ae9d784b9e0e4fffeb8388.zip
relicense as LGPL
Diffstat (limited to 'test')
-rw-r--r--test/cuchaz/enigma/EntryFactory.java9
-rw-r--r--test/cuchaz/enigma/TestDeobfuscator.java9
-rw-r--r--test/cuchaz/enigma/TestInnerClasses.java7
-rw-r--r--test/cuchaz/enigma/TestJarIndexConstructorReferences.java6
-rw-r--r--test/cuchaz/enigma/TestJarIndexInheritanceTree.java6
-rw-r--r--test/cuchaz/enigma/TestJarIndexLoneClass.java7
-rw-r--r--test/cuchaz/enigma/TestSourceIndex.java7
-rw-r--r--test/cuchaz/enigma/TestTokensConstructors.java6
-rw-r--r--test/cuchaz/enigma/TokenChecker.java6
-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/Anonymous.java10
-rw-r--r--test/cuchaz/enigma/inputs/innerClasses/AnonymousWithScopeArgs.java10
-rw-r--r--test/cuchaz/enigma/inputs/innerClasses/ConstructorArgs.java10
-rw-r--r--test/cuchaz/enigma/inputs/innerClasses/Simple.java10
-rw-r--r--test/cuchaz/enigma/inputs/loneClass/LoneClass.java10
24 files changed, 179 insertions, 34 deletions
diff --git a/test/cuchaz/enigma/EntryFactory.java b/test/cuchaz/enigma/EntryFactory.java
index 5a8a427..f66149f 100644
--- a/test/cuchaz/enigma/EntryFactory.java
+++ b/test/cuchaz/enigma/EntryFactory.java
@@ -1,10 +1,9 @@
1/******************************************************************************* 1/*******************************************************************************
2 * Copyright (c) 2014 Jeff Martin.\ 2 * Copyright (c) 2014 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/TestDeobfuscator.java b/test/cuchaz/enigma/TestDeobfuscator.java
index 71de24a..1f19329 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) 2014 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 a7ee0b6..81626ff 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) 2014 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 0238171..f2c6525 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) 2014 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 50c2282..dc7900c 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) 2014 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 e2a87d0..defec46 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) 2014 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/TestSourceIndex.java b/test/cuchaz/enigma/TestSourceIndex.java
index dc6ca7e..408dcde 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) 2014 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 2409153..449d70e 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) 2014 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/TokenChecker.java b/test/cuchaz/enigma/TokenChecker.java
index c0852f3..6bcd2bb 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) 2014 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 3c12bae..3fb1457 100644
--- a/test/cuchaz/enigma/inputs/Keep.java
+++ b/test/cuchaz/enigma/inputs/Keep.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2014 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 e6d8768..e4e273d 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) 2014 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 b218619..a7b6f1f 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) 2014 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 6cfd35e..e89a32e 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) 2014 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 6ef7732..0358989 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) 2014 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 76a0f1f..76e69c1 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) 2014 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 8402dde..9d3807b 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) 2014 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 ed50709..98a9570 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) 2014 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 fc4c8ee..29a29b8 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) 2014 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 b3b8342..4aa0af0 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) 2014 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/Anonymous.java b/test/cuchaz/enigma/inputs/innerClasses/Anonymous.java
index d36a514..44b529e 100644
--- a/test/cuchaz/enigma/inputs/innerClasses/Anonymous.java
+++ b/test/cuchaz/enigma/inputs/innerClasses/Anonymous.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2014 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 Anonymous 13public class Anonymous
diff --git a/test/cuchaz/enigma/inputs/innerClasses/AnonymousWithScopeArgs.java b/test/cuchaz/enigma/inputs/innerClasses/AnonymousWithScopeArgs.java
index e0a65e2..4924d09 100644
--- a/test/cuchaz/enigma/inputs/innerClasses/AnonymousWithScopeArgs.java
+++ b/test/cuchaz/enigma/inputs/innerClasses/AnonymousWithScopeArgs.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2014 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 AnonymousWithScopeArgs 13public class AnonymousWithScopeArgs
diff --git a/test/cuchaz/enigma/inputs/innerClasses/ConstructorArgs.java b/test/cuchaz/enigma/inputs/innerClasses/ConstructorArgs.java
index e24395c..f7d06d4 100644
--- a/test/cuchaz/enigma/inputs/innerClasses/ConstructorArgs.java
+++ b/test/cuchaz/enigma/inputs/innerClasses/ConstructorArgs.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2014 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/Simple.java b/test/cuchaz/enigma/inputs/innerClasses/Simple.java
index 405c639..9fc9b0c 100644
--- a/test/cuchaz/enigma/inputs/innerClasses/Simple.java
+++ b/test/cuchaz/enigma/inputs/innerClasses/Simple.java
@@ -1,3 +1,13 @@
1/*******************************************************************************
2 * Copyright (c) 2014 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 Simple 13public class Simple
diff --git a/test/cuchaz/enigma/inputs/loneClass/LoneClass.java b/test/cuchaz/enigma/inputs/loneClass/LoneClass.java
index 961b012..1022aa2 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) 2014 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