All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.threerings.getdown.tools.JarDiffCodes Maven / Gradle / Ivy

There is a newer version: 1.8.7
Show newest version
//
// 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";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy