Subversion Repositories pub

Compare Revisions

Ignore whitespace Rev 48 → Rev 49

/pluggablejs/trunk/src/net/outlyer/plugins/BasePluginObject.java
0,0 → 1,16
package net.outlyer.plugins;
 
import net.outlyer.plugins.sandboxing.SandboxAccessor;
 
/**
* Simplest object to be exported as "plugin"
* @see PluginObject
*/
public class BasePluginObject extends PluginProperties implements SandboxAccessor, Cloneable {
public String name;
public int version = 0;
 
@Override public Object clone() throws CloneNotSupportedException {
return super.clone();
}
}