iuserinterface.java
来自「Azureus is a powerful, full-featured, cr」· Java 代码 · 共 40 行
JAVA
40 行
/*
* IUserInterface.java
*
* Created on 9. Oktober 2003, 00:07
*/
package org.gudy.azureus2.ui.common;
/**
*
* @author Tobias Minich
*/
public interface IUserInterface {
/** Initializes the UI.
* The UI should not be started at this stage.
*
* @param first This UI Instance is the first on the command line and should take control of singular stuff (LocaleUtil and torrents added via Command Line).
* @param others Indicates wether other UIs run along.
*/
public void init(boolean first, boolean others);
/** Process UI specific command line arguments.
* @return Unprocessed Args
*/
public String[] processArgs(String[] args);
/** Start the UI.
* Now the GlobalManager is initialized.
*/
public void startUI();
/** Determine if the UI is already started
* You usually don't need to override this from UITemplate
*/
public boolean isStarted();
/** Open a torrent file.
* This is for torrents passed in the command line. Only called for the first UI.
*/
public void openTorrent(final String fileName);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?