library.java
来自「纯java操作系统jnode,安装简单和操作简单的个人使用的Java操作系统」· Java 代码 · 共 43 行
JAVA
43 行
/*
* $Id: Library.java,v 1.1 2003/11/25 11:42:27 epr Exp $
*/
package org.jnode.plugin;
/**
* Resource library descriptor.
*
* @author Ewout Prangsma (epr@users.sourceforge.net)
*/
public interface Library {
/**
* Gets the name of the jar file or directory
* @return The name
*/
public String getName();
/**
* Is this a code library?
* @return boolean
*/
public boolean isCode();
/**
* Is this a resource only library?
* @return boolean
*/
public boolean isResource();
/**
* Gets all declared export names
* @return All declared export names
*/
public String[] getExports();
/**
* Gets the descriptor of the plugin in which this element was declared.
* @return The descriptor
*/
public PluginDescriptor getDeclaringPluginDescriptor();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?