Subversion Repositories pub

Compare Revisions

Ignore whitespace Rev 56 → Rev 62

/pluggablejs/trunk/src/net/outlyer/plugins/PluginProperties.java
30,9 → 30,32
* Common properties of the plugin object. All of them
* take sane defaults.
*/
public class PluginProperties extends SandboxAccessorImpl {
class PluginProperties extends SandboxAccessorImpl {
/**
* pluggablejs Api Version against which this plugin was written.
* Default: 1
* @see API#VERSION
*/
public int apiVersion = 1;
 
/**
* Type of this plugin, application-specific.
* Default: "" (no type)
* @see PluginLocator#getAll()
* @see PluginLocator#getFirst()
*/
public String type;
 
/**
* Name of this plugin.
* Default: same as filename (including extension but not path)
* @see PluginLocator#getAll()
* @see PluginLocator#getFirst()
*/
public String name;
 
/**
* @deprecated The use of this field is yet to be defined
*/
public Object properties; // FIXME: To be defined
}