patcher.java

来自「编写程序」· Java 代码 · 共 33 行

JAVA
33
字号
/* * @(#)Patcher.java	1.8 03/01/23 *  * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package jnlp.sample.jardiff;import java.io.IOException;import java.io.OutputStream;import java.net.URL;/** * Patcher describes the necessary method to apply and create deltas. * * @version 1.8, 01/23/03 */public interface Patcher {    /**     * Applies a patch previously created with <code>createPatch</code>.     * Pass in a delegate to be notified of the status of the patch.     */    public void applyPatch(PatchDelegate delegate, String oldJarPath,                           String deltaPath, OutputStream result) throws IOException;            /**     * Callback used when patching a file.     */    public interface PatchDelegate {        public void patching(int percentDone);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?