starting project notifications
[jSite2.git] / src / net / pterodactylus / jsite / gui / SwingInterface.java
index 3c073be..4fb7139 100644 (file)
@@ -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);
        }
 
        //