isftpclientlistener.java

来自「SFTP Plug-in for Eclipse will add the SF」· Java 代码 · 共 29 行

JAVA
29
字号
/******************************************************************************* * Copyright (c) 2000, 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *  * Contributors: *     IBM Corporation - initial API and implementation *     Atsuhiko Yamanaka, JCraft, Inc. - adding sftp support. *******************************************************************************/package com.jcraft.eclipse.sftp.internal;public interface ISFTPClientListener{  /**   * Called when a response is received from the server.   * @param responseCode the 3 digit response   * @param responseText the multi-line text string, lines are terminated by \n   */  public void responseReceived(int responseCode, String responseText);  /**   * Called when a request is sent to the server.   * @param command the command sent to the server   * @param argument the argument sent to the server   */  public void requestSent(String command, String argument);}

⌨️ 快捷键说明

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