mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-18 14:55:53 -04:00
Rename *AccountPm => *AccountPM for consistency
This commit is contained in:
parent
10cca4f844
commit
d0724d707a
@ -40,7 +40,7 @@ import javafx.collections.ListChangeListener;
|
||||
import javafx.collections.ObservableList;
|
||||
import javafx.util.StringConverter;
|
||||
|
||||
class FiatAccountPm extends PresentationModel<FiatAccountModel> {
|
||||
class FiatAccountPM extends PresentationModel<FiatAccountModel> {
|
||||
|
||||
private final BankAccountNumberValidator bankAccountNumberValidator;
|
||||
|
||||
@ -59,7 +59,7 @@ class FiatAccountPm extends PresentationModel<FiatAccountModel> {
|
||||
|
||||
|
||||
@Inject
|
||||
public FiatAccountPm(FiatAccountModel model, BankAccountNumberValidator bankAccountNumberValidator) {
|
||||
public FiatAccountPM(FiatAccountModel model, BankAccountNumberValidator bankAccountNumberValidator) {
|
||||
super(model);
|
||||
this.bankAccountNumberValidator = bankAccountNumberValidator;
|
||||
}
|
||||
|
@ -56,7 +56,7 @@ import org.slf4j.LoggerFactory;
|
||||
|
||||
import static javafx.beans.binding.Bindings.createBooleanBinding;
|
||||
|
||||
public class FiatAccountViewCB extends CachedViewCB<FiatAccountPm> implements ContextAware {
|
||||
public class FiatAccountViewCB extends CachedViewCB<FiatAccountPM> implements ContextAware {
|
||||
|
||||
private static final Logger log = LoggerFactory.getLogger(FiatAccountViewCB.class);
|
||||
|
||||
@ -76,7 +76,7 @@ public class FiatAccountViewCB extends CachedViewCB<FiatAccountPm> implements Co
|
||||
///////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@Inject
|
||||
FiatAccountViewCB(FiatAccountPm presentationModel, OverlayManager overlayManager) {
|
||||
FiatAccountViewCB(FiatAccountPM presentationModel, OverlayManager overlayManager) {
|
||||
super(presentationModel);
|
||||
|
||||
this.overlayManager = overlayManager;
|
||||
|
@ -37,7 +37,7 @@ import javafx.beans.property.StringProperty;
|
||||
import javafx.collections.ObservableList;
|
||||
import javafx.util.StringConverter;
|
||||
|
||||
class IrcAccountPm extends PresentationModel<IrcAccountModel> {
|
||||
class IrcAccountPM extends PresentationModel<IrcAccountModel> {
|
||||
|
||||
private final InputValidator nickNameValidator;
|
||||
|
||||
@ -48,7 +48,7 @@ class IrcAccountPm extends PresentationModel<IrcAccountModel> {
|
||||
|
||||
|
||||
@Inject
|
||||
public IrcAccountPm(IrcAccountModel model, BankAccountNumberValidator nickNameValidator) {
|
||||
public IrcAccountPM(IrcAccountModel model, BankAccountNumberValidator nickNameValidator) {
|
||||
super(model);
|
||||
this.nickNameValidator = nickNameValidator;
|
||||
}
|
||||
|
@ -47,7 +47,7 @@ import org.slf4j.LoggerFactory;
|
||||
/*
|
||||
Just temporary for giving the user a possibility to test the app via simulating the bank transfer in a IRC chat.
|
||||
*/
|
||||
public class IrcAccountViewCB extends CachedViewCB<IrcAccountPm> implements ContextAware {
|
||||
public class IrcAccountViewCB extends CachedViewCB<IrcAccountPM> implements ContextAware {
|
||||
|
||||
private static final Logger log = LoggerFactory.getLogger(IrcAccountViewCB.class);
|
||||
|
||||
@ -63,7 +63,7 @@ public class IrcAccountViewCB extends CachedViewCB<IrcAccountPm> implements Cont
|
||||
///////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@Inject
|
||||
IrcAccountViewCB(IrcAccountPm presentationModel) {
|
||||
IrcAccountViewCB(IrcAccountPM presentationModel) {
|
||||
super(presentationModel);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user