1
- package gui ;
2
-
3
- import data .ModFile ;
4
- import exceptions .ModFileGenerationException ;
5
- import exceptions .ModFileNotFoundException ;
6
- import gui .cells .CheckBoxCell ;
7
- import gui .cells .RepresentingType ;
1
+ package com .github .dunklemango .starboundmodmanager ;
2
+
3
+ import com .github .dunklemango .starboundmodmanager .data .ModFile ;
4
+ import com .github .dunklemango .starboundmodmanager .exceptions .ModFileGenerationException ;
5
+ import com .github .dunklemango .starboundmodmanager .exceptions .ModFileNotFoundException ;
6
+ import com .github .dunklemango .starboundmodmanager .gui .cells .CheckBoxCell ;
7
+ import com .github .dunklemango .starboundmodmanager .gui .cells .RepresentingType ;
8
+ import com .github .dunklemango .starboundmodmanager .managers .checkboxes .InputCheckBoxManager ;
9
+ import com .github .dunklemango .starboundmodmanager .managers .checkboxes .OutputCheckBoxManager ;
10
+ import com .github .dunklemango .starboundmodmanager .managers .settings .SettingsManager ;
8
11
import javafx .application .Application ;
9
12
import javafx .collections .FXCollections ;
10
13
import javafx .collections .ObservableList ;
21
24
import javafx .stage .DirectoryChooser ;
22
25
import javafx .stage .Modality ;
23
26
import javafx .stage .Stage ;
24
- import managers .checkboxes .InputCheckBoxManager ;
25
- import managers .checkboxes .OutputCheckBoxManager ;
26
- import managers .settings .SettingsManager ;
27
- import transfer .FileTransferTask ;
27
+ import com .github .dunklemango .starboundmodmanager .transfer .FileTransferTask ;
28
28
29
29
import java .io .File ;
30
30
import java .util .ArrayList ;
@@ -86,8 +86,8 @@ public void start(Stage primaryStage) {
86
86
87
87
private void setupUpdateButton (GridPane grid , Stage primaryStage ) {
88
88
Alert transferAlert = new Alert (Alert .AlertType .CONFIRMATION );
89
- transferAlert .setTitle ("Confirmation of transfer" );
90
- transferAlert .setHeaderText ("Do you wish to transfer the following files?" );
89
+ transferAlert .setTitle ("Confirmation of com.github.dunklemango. transfer" );
90
+ transferAlert .setHeaderText ("Do you wish to com.github.dunklemango. transfer the following files?" );
91
91
92
92
Button updateButton = new Button ("Update all" );
93
93
updateButton .setMinWidth (buttonVBox .getPrefWidth ());
@@ -121,8 +121,8 @@ private void setupUpdateButton(GridPane grid, Stage primaryStage) {
121
121
122
122
private void setupTransferButton (GridPane grid , Stage primaryStage ) {
123
123
Alert transferAlert = new Alert (Alert .AlertType .CONFIRMATION );
124
- transferAlert .setTitle ("Confirmation of transfer" );
125
- transferAlert .setHeaderText ("Do you wish to transfer the following files?" );
124
+ transferAlert .setTitle ("Confirmation of com.github.dunklemango. transfer" );
125
+ transferAlert .setHeaderText ("Do you wish to com.github.dunklemango. transfer the following files?" );
126
126
127
127
Button transferButton = new Button ("Transfer Selected" );
128
128
transferButton .setMinWidth (buttonVBox .getPrefWidth ());
@@ -151,7 +151,7 @@ private void transferFiles(ArrayList<String> dirsOfFilesToTransfer, Stage primar
151
151
final Stage dialog = new Stage ();
152
152
dialog .initModality (Modality .APPLICATION_MODAL );
153
153
dialog .initOwner (primaryStage );
154
- dialog .setTitle ("File-transfer" );
154
+ dialog .setTitle ("File-com.github.dunklemango. transfer" );
155
155
156
156
GridPane grid = new GridPane ();
157
157
grid .setAlignment (Pos .CENTER );
@@ -161,7 +161,7 @@ private void transferFiles(ArrayList<String> dirsOfFilesToTransfer, Stage primar
161
161
ProgressBar progressBar = new ProgressBar ();
162
162
progressBar .setPrefWidth (300 );
163
163
164
- grid .add (new Text ("Progress of transfer:" ), 0 , 0 );
164
+ grid .add (new Text ("Progress of com.github.dunklemango. transfer:" ), 0 , 0 );
165
165
166
166
List <File > inputFiles = new ArrayList <>();
167
167
List <File > outputFiles = new ArrayList <>();
0 commit comments