-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
802ca0e
commit f941014
Showing
7 changed files
with
26 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
view-simulation-results/src/main/java/org/vcell/N5/retrieving/SimLoadingEventCreator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
package org.vcell.N5.retrieving; | ||
|
||
import ij.ImagePlus; | ||
|
||
public interface SimLoadingEventCreator { | ||
public void addSimLoadingListener(SimLoadingListener simLoadingListener); | ||
|
||
public void notifySimIsLoading(SimResultsLoader simResultsLoader); | ||
|
||
public void notifySimIsDoneLoading(SimResultsLoader simResultsLoader); | ||
public void notifySimIsDoneLoading(SimResultsLoader simResultsLoader, ImagePlus imagePlus); | ||
|
||
} |
4 changes: 3 additions & 1 deletion
4
view-simulation-results/src/main/java/org/vcell/N5/retrieving/SimLoadingListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
package org.vcell.N5.retrieving; | ||
|
||
import ij.ImagePlus; | ||
|
||
import java.util.EventListener; | ||
|
||
public interface SimLoadingListener extends EventListener { | ||
|
||
public void simIsLoading(int itemRow, String exportID); | ||
|
||
public void simFinishedLoading(int itemRow, String exportID); | ||
public void simFinishedLoading(int itemRow, String exportID, ImagePlus imagePlus); | ||
|
||
} |