mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-24 06:44:19 -04:00
initial commit. gui prototype v 0.1
This commit is contained in:
parent
e028928571
commit
bc09937785
140 changed files with 5398 additions and 2 deletions
26
src/main/java/io/bitsquare/gui/funds/FundsController.java
Normal file
26
src/main/java/io/bitsquare/gui/funds/FundsController.java
Normal file
|
@ -0,0 +1,26 @@
|
|||
package io.bitsquare.gui.funds;
|
||||
|
||||
import io.bitsquare.gui.IChildController;
|
||||
import io.bitsquare.gui.INavigationController;
|
||||
import javafx.fxml.Initializable;
|
||||
|
||||
import java.net.URL;
|
||||
import java.util.ResourceBundle;
|
||||
|
||||
public class FundsController implements Initializable, IChildController
|
||||
{
|
||||
private INavigationController navigationController;
|
||||
|
||||
@Override
|
||||
public void initialize(URL url, ResourceBundle rb)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setNavigationController(INavigationController navigationController)
|
||||
{
|
||||
this.navigationController = navigationController;
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue