-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Job Support. Better Disconnection. Updated JARs
- Loading branch information
1 parent
fcc067a
commit 60ff515
Showing
8 changed files
with
71 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[Dolphin] | ||
HeaderColumnWidths=772,64,123 | ||
Timestamp=2014,3,15,1,47,34 | ||
Version=3 | ||
ViewMode=1 |
Binary file not shown.
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,25 @@ | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Vector; | ||
/** | ||
* Created by dexter on 3/15/14. | ||
*/ | ||
public class Job | ||
{ | ||
public static String imagepath = new String(); | ||
public static String resultpath = new String(); | ||
public static String output = new String(); | ||
public static String executable = new String(); | ||
public static String jobid = new String(); | ||
public static List<String> files = new Vector<String>(); | ||
|
||
public static void addFiles(String path) | ||
{ | ||
files.add(path); | ||
} | ||
|
||
public static String getExecutable(){ | ||
return executable; | ||
} | ||
|
||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,3 +46,4 @@ | |
import ConfigParser.* | ||
import SocketConnection.* | ||
import Sockets_CCV.* | ||
import Job.* |