summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/cuchaz/enigma/gui')
-rw-r--r--src/cuchaz/enigma/gui/AboutDialog.java8
-rw-r--r--src/cuchaz/enigma/gui/BoxHighlightPainter.java8
-rw-r--r--src/cuchaz/enigma/gui/BrowserCaret.java8
-rw-r--r--src/cuchaz/enigma/gui/ClassListCellRenderer.java8
-rw-r--r--src/cuchaz/enigma/gui/ClassMatchingGui.java10
-rw-r--r--src/cuchaz/enigma/gui/ClassSelector.java8
-rw-r--r--src/cuchaz/enigma/gui/ClassSelectorClassNode.java8
-rw-r--r--src/cuchaz/enigma/gui/ClassSelectorPackageNode.java8
-rw-r--r--src/cuchaz/enigma/gui/CodeReader.java10
-rw-r--r--src/cuchaz/enigma/gui/CrashDialog.java8
-rw-r--r--src/cuchaz/enigma/gui/DeobfuscatedHighlightPainter.java8
-rw-r--r--src/cuchaz/enigma/gui/Gui.java8
-rw-r--r--src/cuchaz/enigma/gui/GuiController.java8
-rw-r--r--src/cuchaz/enigma/gui/GuiTricks.java8
-rw-r--r--src/cuchaz/enigma/gui/MemberMatchingGui.java10
-rw-r--r--src/cuchaz/enigma/gui/ObfuscatedHighlightPainter.java8
-rw-r--r--src/cuchaz/enigma/gui/OtherHighlightPainter.java8
-rw-r--r--src/cuchaz/enigma/gui/ProgressDialog.java8
-rw-r--r--src/cuchaz/enigma/gui/ReadableToken.java8
-rw-r--r--src/cuchaz/enigma/gui/RenameListener.java8
-rw-r--r--src/cuchaz/enigma/gui/ScoredClassEntry.java10
-rw-r--r--src/cuchaz/enigma/gui/SelectionHighlightPainter.java8
-rw-r--r--src/cuchaz/enigma/gui/TokenListCellRenderer.java8
23 files changed, 116 insertions, 76 deletions
diff --git a/src/cuchaz/enigma/gui/AboutDialog.java b/src/cuchaz/enigma/gui/AboutDialog.java
index 2476b56..3eba1e5 100644
--- a/src/cuchaz/enigma/gui/AboutDialog.java
+++ b/src/cuchaz/enigma/gui/AboutDialog.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/src/cuchaz/enigma/gui/BoxHighlightPainter.java b/src/cuchaz/enigma/gui/BoxHighlightPainter.java
index db7c85b..e5e0557 100644
--- a/src/cuchaz/enigma/gui/BoxHighlightPainter.java
+++ b/src/cuchaz/enigma/gui/BoxHighlightPainter.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/src/cuchaz/enigma/gui/BrowserCaret.java b/src/cuchaz/enigma/gui/BrowserCaret.java
index acee483..6af4d24 100644
--- a/src/cuchaz/enigma/gui/BrowserCaret.java
+++ b/src/cuchaz/enigma/gui/BrowserCaret.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/src/cuchaz/enigma/gui/ClassListCellRenderer.java b/src/cuchaz/enigma/gui/ClassListCellRenderer.java
index d0f01e6..cde3e4c 100644
--- a/src/cuchaz/enigma/gui/ClassListCellRenderer.java
+++ b/src/cuchaz/enigma/gui/ClassListCellRenderer.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/src/cuchaz/enigma/gui/ClassMatchingGui.java b/src/cuchaz/enigma/gui/ClassMatchingGui.java
index 6f8feac..89b19c3 100644
--- a/src/cuchaz/enigma/gui/ClassMatchingGui.java
+++ b/src/cuchaz/enigma/gui/ClassMatchingGui.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.gui; 11package cuchaz.enigma.gui;
2 12
3import java.awt.BorderLayout; 13import java.awt.BorderLayout;
diff --git a/src/cuchaz/enigma/gui/ClassSelector.java b/src/cuchaz/enigma/gui/ClassSelector.java
index 2a63675..11333a9 100644
--- a/src/cuchaz/enigma/gui/ClassSelector.java
+++ b/src/cuchaz/enigma/gui/ClassSelector.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/src/cuchaz/enigma/gui/ClassSelectorClassNode.java b/src/cuchaz/enigma/gui/ClassSelectorClassNode.java
index 6c1c9a0..1219e89 100644
--- a/src/cuchaz/enigma/gui/ClassSelectorClassNode.java
+++ b/src/cuchaz/enigma/gui/ClassSelectorClassNode.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/src/cuchaz/enigma/gui/ClassSelectorPackageNode.java b/src/cuchaz/enigma/gui/ClassSelectorPackageNode.java
index 5685abb..7259f54 100644
--- a/src/cuchaz/enigma/gui/ClassSelectorPackageNode.java
+++ b/src/cuchaz/enigma/gui/ClassSelectorPackageNode.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/src/cuchaz/enigma/gui/CodeReader.java b/src/cuchaz/enigma/gui/CodeReader.java
index d8fb394..5033a2c 100644
--- a/src/cuchaz/enigma/gui/CodeReader.java
+++ b/src/cuchaz/enigma/gui/CodeReader.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.gui; 11package cuchaz.enigma.gui;
2 12
3import java.awt.Rectangle; 13import java.awt.Rectangle;
diff --git a/src/cuchaz/enigma/gui/CrashDialog.java b/src/cuchaz/enigma/gui/CrashDialog.java
index 360091a..904273c 100644
--- a/src/cuchaz/enigma/gui/CrashDialog.java
+++ b/src/cuchaz/enigma/gui/CrashDialog.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/src/cuchaz/enigma/gui/DeobfuscatedHighlightPainter.java b/src/cuchaz/enigma/gui/DeobfuscatedHighlightPainter.java
index 26a3163..57210a8 100644
--- a/src/cuchaz/enigma/gui/DeobfuscatedHighlightPainter.java
+++ b/src/cuchaz/enigma/gui/DeobfuscatedHighlightPainter.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/src/cuchaz/enigma/gui/Gui.java b/src/cuchaz/enigma/gui/Gui.java
index 27b06f9..f9192d3 100644
--- a/src/cuchaz/enigma/gui/Gui.java
+++ b/src/cuchaz/enigma/gui/Gui.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/src/cuchaz/enigma/gui/GuiController.java b/src/cuchaz/enigma/gui/GuiController.java
index 552ee47..6690622 100644
--- a/src/cuchaz/enigma/gui/GuiController.java
+++ b/src/cuchaz/enigma/gui/GuiController.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/src/cuchaz/enigma/gui/GuiTricks.java b/src/cuchaz/enigma/gui/GuiTricks.java
index 7e539a1..5dc3ffb 100644
--- a/src/cuchaz/enigma/gui/GuiTricks.java
+++ b/src/cuchaz/enigma/gui/GuiTricks.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/src/cuchaz/enigma/gui/MemberMatchingGui.java b/src/cuchaz/enigma/gui/MemberMatchingGui.java
index 65e6dd9..150eaad 100644
--- a/src/cuchaz/enigma/gui/MemberMatchingGui.java
+++ b/src/cuchaz/enigma/gui/MemberMatchingGui.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.gui; 11package cuchaz.enigma.gui;
2 12
3import java.awt.BorderLayout; 13import java.awt.BorderLayout;
diff --git a/src/cuchaz/enigma/gui/ObfuscatedHighlightPainter.java b/src/cuchaz/enigma/gui/ObfuscatedHighlightPainter.java
index 177835f..4c3714a 100644
--- a/src/cuchaz/enigma/gui/ObfuscatedHighlightPainter.java
+++ b/src/cuchaz/enigma/gui/ObfuscatedHighlightPainter.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/src/cuchaz/enigma/gui/OtherHighlightPainter.java b/src/cuchaz/enigma/gui/OtherHighlightPainter.java
index 4e9c870..8d3fbe8 100644
--- a/src/cuchaz/enigma/gui/OtherHighlightPainter.java
+++ b/src/cuchaz/enigma/gui/OtherHighlightPainter.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/src/cuchaz/enigma/gui/ProgressDialog.java b/src/cuchaz/enigma/gui/ProgressDialog.java
index b864fdb..1c20f10 100644
--- a/src/cuchaz/enigma/gui/ProgressDialog.java
+++ b/src/cuchaz/enigma/gui/ProgressDialog.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/src/cuchaz/enigma/gui/ReadableToken.java b/src/cuchaz/enigma/gui/ReadableToken.java
index 66bcbc2..0741af3 100644
--- a/src/cuchaz/enigma/gui/ReadableToken.java
+++ b/src/cuchaz/enigma/gui/ReadableToken.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/src/cuchaz/enigma/gui/RenameListener.java b/src/cuchaz/enigma/gui/RenameListener.java
index abeda0c..8b515bb 100644
--- a/src/cuchaz/enigma/gui/RenameListener.java
+++ b/src/cuchaz/enigma/gui/RenameListener.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/src/cuchaz/enigma/gui/ScoredClassEntry.java b/src/cuchaz/enigma/gui/ScoredClassEntry.java
index dd7ba61..6070452 100644
--- a/src/cuchaz/enigma/gui/ScoredClassEntry.java
+++ b/src/cuchaz/enigma/gui/ScoredClassEntry.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.gui; 11package cuchaz.enigma.gui;
2 12
3import cuchaz.enigma.mapping.ClassEntry; 13import cuchaz.enigma.mapping.ClassEntry;
diff --git a/src/cuchaz/enigma/gui/SelectionHighlightPainter.java b/src/cuchaz/enigma/gui/SelectionHighlightPainter.java
index 5e189d2..4165da4 100644
--- a/src/cuchaz/enigma/gui/SelectionHighlightPainter.java
+++ b/src/cuchaz/enigma/gui/SelectionHighlightPainter.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/src/cuchaz/enigma/gui/TokenListCellRenderer.java b/src/cuchaz/enigma/gui/TokenListCellRenderer.java
index a49be37..e4f7c87 100644
--- a/src/cuchaz/enigma/gui/TokenListCellRenderer.java
+++ b/src/cuchaz/enigma/gui/TokenListCellRenderer.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