diff options
Diffstat (limited to 'src/main/java/cuchaz/enigma/analysis/ReferenceTreeNode.java')
| -rw-r--r-- | src/main/java/cuchaz/enigma/analysis/ReferenceTreeNode.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/main/java/cuchaz/enigma/analysis/ReferenceTreeNode.java b/src/main/java/cuchaz/enigma/analysis/ReferenceTreeNode.java deleted file mode 100644 index c0a3a75..0000000 --- a/src/main/java/cuchaz/enigma/analysis/ReferenceTreeNode.java +++ /dev/null | |||
| @@ -1,20 +0,0 @@ | |||
| 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 | * <p> | ||
| 8 | * Contributors: | ||
| 9 | * Jeff Martin - initial API and implementation | ||
| 10 | ******************************************************************************/ | ||
| 11 | |||
| 12 | package cuchaz.enigma.analysis; | ||
| 13 | |||
| 14 | import cuchaz.enigma.translation.representation.entry.Entry; | ||
| 15 | |||
| 16 | public interface ReferenceTreeNode<E extends Entry<?>, C extends Entry<?>> { | ||
| 17 | E getEntry(); | ||
| 18 | |||
| 19 | EntryReference<E, C> getReference(); | ||
| 20 | } | ||