JAL-3130 adapted getdown src. attempt 2. first attempt failed due to cp'ed .git files
[jalview.git] / getdown / src / getdown / core / src / main / java / com / threerings / getdown / tools / JarDiffCodes.java
1 //
2 // Getdown - application installer, patcher and launcher
3 // Copyright (C) 2004-2018 Getdown authors
4 // https://github.com/threerings/getdown/blob/master/LICENSE
5
6 package com.threerings.getdown.tools;
7
8 /**
9  * Constants shared by {@link JarDiff} and {@link JarDiffPatcher}.
10  */
11 public interface JarDiffCodes
12 {
13     /** The name of the jardiff control file. */
14     String INDEX_NAME = "META-INF/INDEX.JD";
15
16     /** The version header used in the control file. */
17     String VERSION_HEADER = "version 1.0";
18
19     /** A jardiff command to remove an entry. */
20     String REMOVE_COMMAND = "remove";
21
22     /** A jardiff command to move an entry. */
23     String MOVE_COMMAND = "move";
24 }