1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-10-01 08:36:48 +02:00

Statemachine for installation wizard (WIP)

This commit is contained in:
snowleo
2011-10-23 21:45:01 +02:00
parent 1b4b78d6e6
commit 7888471982
14 changed files with 471 additions and 41 deletions

View File

@@ -1,19 +1,28 @@
package com.earth2me.essentials.update;
import java.io.File;
import org.bukkit.plugin.Plugin;
public class UpdatesDownloader
public class UpdatesDownloader extends WorkListener
{
UpdatesDownloader()
public UpdatesDownloader(final Plugin plugin, final VersionInfo newVersionInfo)
{
super(plugin, newVersionInfo);
}
void start(File updateFolderFile, VersionInfo newVersion)
public void start()
{
}
@Override
public void onWorkAbort(String message)
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public void onWorkDone(String message)
{
throw new UnsupportedOperationException("Not supported yet.");
}
}