jarui.java
来自「Ftp服务1.0」· Java 代码 · 共 41 行
JAVA
41 行
package ranab.jar.view;
import java.awt.Component;
import java.util.zip.ZipEntry;
import javax.swing.JPanel;
/**
* Basic jar/zip file display interface.
*
* @author <a href="mailto:rana_b@yahoo.com">Rana Bhattacharyya</a>
*/
public
interface JarUI {
/**
* Update panel look & feel.
*/
public void updateLnF();
/**
* Get the panel to display.
*/
public JPanel getPanel();
/**
* Get all the selected entries.
*/
public ZipEntry[] getSelectedEntries();
/**
* Is this panel active?
*/
public boolean isActive();
/**
* Set the panel active status.
*/
public void setActive(boolean b);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?