Subversion Repositories pub

Compare Revisions

Ignore whitespace Rev 64 → Rev 65

/pluggablejs/trunk/src/net/outlyer/plugins/NamespaceContainer.java
41,19 → 41,14
}
}
 
public static class Outlyer {
/**
* This object is published as $net_outlyer
*/
public static class $Net_Outlyer {
public final Runtime runtime;
private Outlyer(final PluginEnvironment pe, final Sandbox sandbox) {
$Net_Outlyer(final PluginEnvironment pe, final Sandbox sandbox) {
runtime = new Runtime(pe, sandbox);
}
}
public static class $Net {
public final Outlyer outlyer;
$Net(final PluginEnvironment pe, final Sandbox sandbox) {
outlyer = new Outlyer(pe, sandbox);
}
}
}