filerenamepolicy.java

来自「该HttpProxy用于从Applet或Swing界面中访问Ejb和服务端的Ja」· Java 代码 · 共 27 行

JAVA
27
字号
// Copyright (C) 2002 by Jason Hunter <jhunter_AT_acm_DOT_org>.
// All rights reserved.  Use of this class is limited.
// Please see the LICENSE for more information.

package com.nari.pmos.arch.multipart;

import java.io.*;

/**
 * An interface to provide a pluggable file renaming policy, particularly useful
 * to handle naming conflicts with an existing file.
 * 
 * @author Jason Hunter
 * @version 1.0, 2002/04/30, initial revision, thanks to Changshin Lee for the
 *          basic idea
 */
public interface FileRenamePolicy {

	/**
	 * Returns a File object holding a new name for the specified file.
	 * 
	 * @see FilePart#writeTo(File fileOrDirectory)
	 */
	public File rename(File f);

}

⌨️ 快捷键说明

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