diff options
Diffstat (limited to 'src/main/java/cuchaz/enigma/mapping/Entry.java')
| -rw-r--r-- | src/main/java/cuchaz/enigma/mapping/Entry.java | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/main/java/cuchaz/enigma/mapping/Entry.java b/src/main/java/cuchaz/enigma/mapping/Entry.java deleted file mode 100644 index eb783e9..0000000 --- a/src/main/java/cuchaz/enigma/mapping/Entry.java +++ /dev/null | |||
| @@ -1,22 +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.mapping; | ||
| 13 | |||
| 14 | public interface Entry { | ||
| 15 | String getName(); | ||
| 16 | |||
| 17 | String getClassName(); | ||
| 18 | |||
| 19 | ClassEntry getOwnerClassEntry(); | ||
| 20 | |||
| 21 | Entry updateOwnership(ClassEntry classEntry); | ||
| 22 | } | ||