mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-01 11:16:11 -04:00
Rename ChildOf => ChildView
This commit is contained in:
parent
961ec9b317
commit
1e59f9bf63
3 changed files with 4 additions and 4 deletions
|
@ -17,6 +17,6 @@
|
|||
|
||||
package io.bitsquare.gui;
|
||||
|
||||
public interface ChildOf<Parent extends View> extends View {
|
||||
public interface ChildView<Parent extends View> extends View {
|
||||
void setParent(Parent parent);
|
||||
}
|
|
@ -20,7 +20,7 @@ package io.bitsquare.gui;
|
|||
public interface Wizard extends View {
|
||||
void nextStep(Step currentStep);
|
||||
|
||||
public interface Step extends ChildOf<Wizard> {
|
||||
public interface Step extends ChildView<Wizard> {
|
||||
void hideWizardNavigation();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
package io.bitsquare.gui.main.trade.offerbook;
|
||||
|
||||
import io.bitsquare.gui.ActivatableViewAndModel;
|
||||
import io.bitsquare.gui.ChildOf;
|
||||
import io.bitsquare.gui.ChildView;
|
||||
import io.bitsquare.gui.Navigation;
|
||||
import io.bitsquare.gui.OverlayManager;
|
||||
import io.bitsquare.gui.components.InputTextField;
|
||||
|
@ -60,7 +60,7 @@ import static javafx.beans.binding.Bindings.createStringBinding;
|
|||
* TODO: The advanced filters are not impl. yet
|
||||
* The restrictions handling is open from the concept and is only implemented for countries yet.
|
||||
*/
|
||||
public class OfferBookView extends ActivatableViewAndModel<OfferBookViewModel> implements ChildOf<TradeView> {
|
||||
public class OfferBookView extends ActivatableViewAndModel<OfferBookViewModel> implements ChildView<TradeView> {
|
||||
private static final Logger log = LoggerFactory.getLogger(OfferBookView.class);
|
||||
|
||||
private final Navigation navigation;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue