X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fnet%2Fpterodactylus%2Fjsite%2Fgui%2FSwingInterface.java;h=4fb71390be8b1455547ea8a02162e966791d5f19;hb=587428e890799ee0c6d3a3224e4a161a3480811d;hp=3c073beee7309834c6578368463d9004c5b0f789;hpb=d5afe3e2bde1f3a21cec6f3b3f1e57f7fdac3618;p=jSite2.git diff --git a/src/net/pterodactylus/jsite/gui/SwingInterface.java b/src/net/pterodactylus/jsite/gui/SwingInterface.java index 3c073be..4fb7139 100644 --- a/src/net/pterodactylus/jsite/gui/SwingInterface.java +++ b/src/net/pterodactylus/jsite/gui/SwingInterface.java @@ -980,7 +980,7 @@ public class SwingInterface implements CoreListener, LoggingListener { * @see net.pterodactylus.jsite.core.CoreListener#projectInsertStarted(net.pterodactylus.jsite.project.Project) */ public void projectInsertStarted(Project project) { - /* TODO - show in interface */ + mainWindow.projectInsertStarted(project); } /** @@ -988,7 +988,7 @@ public class SwingInterface implements CoreListener, LoggingListener { * int, int, int, int, int, boolean) */ public void projectInsertProgressed(Project project, int totalBlocks, int requiredBlocks, int successfulBlocks, int failedBlocks, int fatallyFailedBlocks, boolean finalizedTotal) { - /* TODO - show in interface */ + mainWindow.projectInsertProgressed(project, totalBlocks, requiredBlocks, successfulBlocks, failedBlocks, fatallyFailedBlocks, finalizedTotal); } /** @@ -996,7 +996,7 @@ public class SwingInterface implements CoreListener, LoggingListener { * java.lang.String) */ public void projectInsertGeneratedURI(Project project, String uri) { - /* TODO - show in interface */ + mainWindow.projectInsertGeneratedURI(project); } /** @@ -1004,7 +1004,7 @@ public class SwingInterface implements CoreListener, LoggingListener { * boolean) */ public void projectInsertFinished(Project project, boolean success) { - /* TODO - show in interface */ + mainWindow.projectInsertFinished(project, success); } //