* Creates a new core.
*/
public Core() {
- super("Sone Core");
+ super("Sone Core", false);
}
//
* The Freenet interface
*/
public SoneDownloader(Core core, FreenetInterface freenetInterface) {
- super("Sone Downloader");
+ super("Sone Downloader", false);
this.core = core;
this.freenetInterface = freenetInterface;
}
* The Sone to insert
*/
public SoneInserter(Core core, FreenetInterface freenetInterface, Sone sone) {
- super("Sone Inserter for “" + sone.getName() + "”");
+ super("Sone Inserter for “" + sone.getName() + "”", false);
this.core = core;
this.freenetInterface = freenetInterface;
this.sone = sone;
* The Sone plugin
*/
public WebInterface(SonePlugin sonePlugin) {
- super("Sone Web Interface");
+ super("Sone Web Interface", false);
this.sonePlugin = sonePlugin;
}