com.threerings.getdown.tools.JarDiffCodes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of getdown-core Show documentation
Show all versions of getdown-core Show documentation
Core Getdown functionality
//
// Getdown - application installer, patcher and launcher
// Copyright (C) 2004-2016 Getdown authors
// https://github.com/threerings/getdown/blob/master/LICENSE
package com.threerings.getdown.tools;
/**
* Constants shared by {@link JarDiff} and {@link JarDiffPatcher}.
*/
public interface JarDiffCodes
{
/** The name of the jardiff control file. */
String INDEX_NAME = "META-INF/INDEX.JD";
/** The version header used in the control file. */
String VERSION_HEADER = "version 1.0";
/** A jardiff command to remove an entry. */
String REMOVE_COMMAND = "remove";
/** A jardiff command to move an entry. */
String MOVE_COMMAND = "move";
}