Subversion Repositories pub

Compare Revisions

Ignore whitespace Rev 67 → Rev 68

/pluggablejs/trunk/src/net/outlyer/plugins/PluginReader.java
36,13 → 36,16
import java.net.URI;
 
/**
* java.io.Reader for plugins, tries to abstract the plugin location (file or jar)
* java.io.Reader for plugins, tries to abstract the plugin location (file or jar).
* Generally users of the library may only need such functionality in case
* some needs be fed to an existing sandbox (e.g.
* {@link net.outlyer.plugins.utils.LanguageExtensions_v1#include}).
*/
class PluginReader extends Reader {
public class PluginReader extends Reader {
 
private final Reader readerImpl;
 
PluginReader(final URI uri) throws IOException {
public PluginReader(final URI uri) throws IOException {
super();
assert null != uri;