-
Notifications
You must be signed in to change notification settings - Fork 49
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
Showing
13 changed files
with
397 additions
and
74 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
N true RANDOM 56 71 0 1 | ||
N false SORTED 363 125 1 -1 | ||
C 0 1 | ||
C 1 2 |
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,4 @@ | ||
N false REVERSE 25 15 0 1 | ||
N false ALMOST 275 15 1 -1 | ||
C 0 1 | ||
C 1 2 |
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,12 @@ | ||
package dialogs; | ||
|
||
final public class ExportShuffleDialog extends FileDialog { | ||
public ExportShuffleDialog() { | ||
super(); | ||
|
||
fileDialog.setDialogTitle("Choose where to export the current shuffle graph..."); | ||
|
||
fileDialog.showSaveDialog(null); | ||
this.file = fileDialog.getSelectedFile(); | ||
} | ||
} |
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,12 @@ | ||
package dialogs; | ||
|
||
final public class ImportShuffleDialog extends FileDialog { | ||
public ImportShuffleDialog() { | ||
super(); | ||
|
||
fileDialog.setDialogTitle("Choose where to import the current shuffle graph from..."); | ||
|
||
fileDialog.showOpenDialog(null); | ||
this.file = fileDialog.getSelectedFile(); | ||
} | ||
} |
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 |
---|---|---|
@@ -1,14 +1,12 @@ | ||
package dialogs; | ||
|
||
import javax.swing.filechooser.FileNameExtensionFilter; | ||
|
||
final public class SaveArrayDialog extends FileDialog { | ||
public SaveArrayDialog() { | ||
super(); | ||
|
||
this.fileDialog.setDialogTitle("Choose where to save the contents of the main array..."); | ||
fileDialog.setDialogTitle("Choose where to save the contents of the main array..."); | ||
|
||
this.fileDialog.showSaveDialog(null); | ||
this.file = this.fileDialog.getSelectedFile(); | ||
fileDialog.showSaveDialog(null); | ||
this.file = fileDialog.getSelectedFile(); | ||
} | ||
} |
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
Oops, something went wrong.