-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added new classes/interfaces we discussed
- Loading branch information
1 parent
826fd81
commit 8143e21
Showing
6 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
render-ws-java-client/src/main/java/org/janelia/render/client/newsolver/Assembler.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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package org.janelia.render.client.newsolver; | ||
|
||
public abstract class Assembler | ||
{ | ||
public abstract void assemble(); | ||
} |
5 changes: 5 additions & 0 deletions
5
render-ws-java-client/src/main/java/org/janelia/render/client/newsolver/BlockCollection.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.janelia.render.client.newsolver; | ||
|
||
public class BlockCollection { | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
render-ws-java-client/src/main/java/org/janelia/render/client/newsolver/BlockData.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.janelia.render.client.newsolver; | ||
|
||
public class BlockData { | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
render-ws-java-client/src/main/java/org/janelia/render/client/newsolver/BlockFactory.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.janelia.render.client.newsolver; | ||
|
||
public abstract class BlockFactory { | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
render-ws-java-client/src/main/java/org/janelia/render/client/newsolver/Worker.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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package org.janelia.render.client.newsolver; | ||
|
||
public interface Worker | ||
{ | ||
public void run(); | ||
} |
8 changes: 8 additions & 0 deletions
8
...-java-client/src/main/java/org/janelia/render/client/newsolver/blockfactories/ZBlock.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package org.janelia.render.client.newsolver.blockfactories; | ||
|
||
import org.janelia.render.client.newsolver.BlockFactory; | ||
|
||
public class ZBlock extends BlockFactory | ||
{ | ||
|
||
} |