mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-25 16:05:28 -04:00
Refactor gui package structure to avoid cyclic dependencies
This commit is contained in:
parent
87a057cf5d
commit
173073caf8
52 changed files with 779 additions and 324 deletions
|
@ -68,7 +68,7 @@ public class AccountSettingsUITestRunner extends Application {
|
|||
log.debug("re load");
|
||||
pane.getChildren().removeAll();
|
||||
BSFXMLLoader loader = new BSFXMLLoader(
|
||||
getUrl("/io/bitsquare/gui/account/settings/AccountSettingsView.fxml"), false);
|
||||
getUrl("/io/bitsquare/gui/view/account/AccountSettingsView.fxml"), false);
|
||||
try {
|
||||
view = loader.load();
|
||||
pane.getChildren().setAll(view);
|
||||
|
|
|
@ -68,7 +68,7 @@ public class AccountUITestRunner extends Application {
|
|||
log.debug("re load");
|
||||
pane.getChildren().removeAll();
|
||||
BSFXMLLoader loader = new BSFXMLLoader(
|
||||
getUrl("/io/bitsquare/gui/account/AccountView.fxml"), false);
|
||||
getUrl("/io/bitsquare/gui/view/AccountView.fxml"), false);
|
||||
try {
|
||||
view = loader.load();
|
||||
pane.getChildren().setAll(view);
|
||||
|
|
|
@ -68,7 +68,7 @@ public class RegistrationUITestRunner extends Application {
|
|||
log.debug("re load");
|
||||
pane.getChildren().removeAll();
|
||||
BSFXMLLoader loader = new BSFXMLLoader(
|
||||
getUrl("/io/bitsquare/gui/account/registration/RegistrationView.fxml"), false);
|
||||
getUrl("/io/bitsquare/gui/view/account/content/RegistrationView.fxml"), false);
|
||||
try {
|
||||
view = loader.load();
|
||||
pane.getChildren().setAll(view);
|
||||
|
|
|
@ -68,7 +68,7 @@ public class FiatAccountUITestRunner extends Application {
|
|||
log.debug("re load");
|
||||
pane.getChildren().removeAll();
|
||||
BSFXMLLoader loader = new BSFXMLLoader(
|
||||
getUrl("/io/bitsquare/gui/account/fiataccount/FiatAccountView.fxml"), false);
|
||||
getUrl("/io/bitsquare/gui/view/account/content/FiatAccountView.fxml"), false);
|
||||
try {
|
||||
view = loader.load();
|
||||
pane.getChildren().setAll(view);
|
||||
|
|
|
@ -68,7 +68,7 @@ public class PasswordUITestRunner extends Application {
|
|||
log.debug("re load");
|
||||
pane.getChildren().removeAll();
|
||||
BSFXMLLoader loader = new BSFXMLLoader(
|
||||
getUrl("/io/bitsquare/gui/account/addpassword/PasswordView.fxml"), false);
|
||||
getUrl("/io/bitsquare/gui/view/account/content/PasswordView.fxml"), false);
|
||||
try {
|
||||
view = loader.load();
|
||||
pane.getChildren().setAll(view);
|
||||
|
|
|
@ -68,7 +68,7 @@ public class RegistrationUITestRunner extends Application {
|
|||
log.debug("re load");
|
||||
pane.getChildren().removeAll();
|
||||
BSFXMLLoader loader = new BSFXMLLoader(
|
||||
getUrl("/io/bitsquare/gui/account/registration/RegistrationView.fxml"), false);
|
||||
getUrl("/io/bitsquare/gui/view/account/content/RegistrationView.fxml"), false);
|
||||
try {
|
||||
view = loader.load();
|
||||
pane.getChildren().setAll(view);
|
||||
|
|
|
@ -68,7 +68,7 @@ public class RestrictionsUITestRunner extends Application {
|
|||
log.debug("re load");
|
||||
pane.getChildren().removeAll();
|
||||
BSFXMLLoader loader = new BSFXMLLoader(
|
||||
getUrl("/io/bitsquare/gui/account/restrictions/RestrictionsView.fxml"), false);
|
||||
getUrl("/io/bitsquare/gui/view/account/content/RestrictionsView.fxml"), false);
|
||||
try {
|
||||
view = loader.load();
|
||||
pane.getChildren().setAll(view);
|
||||
|
|
|
@ -68,7 +68,7 @@ public class SeedWordsUITestRunner extends Application {
|
|||
log.debug("re load");
|
||||
pane.getChildren().removeAll();
|
||||
BSFXMLLoader loader = new BSFXMLLoader(
|
||||
getUrl("/io/bitsquare/gui/account/seedwords/SeedWordsView.fxml"), false);
|
||||
getUrl("/io/bitsquare/gui/view/account/content/SeedWordsView.fxml"), false);
|
||||
try {
|
||||
view = loader.load();
|
||||
pane.getChildren().setAll(view);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue