Rename *AccountPm => *AccountPM for consistency

This commit is contained in:
Chris Beams 2014-11-22 10:57:48 +01:00
parent 10cca4f844
commit d0724d707a
No known key found for this signature in database
GPG Key ID: 3D214F8F5BC5ED73
4 changed files with 8 additions and 8 deletions

View File

@ -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;
}

View File

@ -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;

View File

@ -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;
}

View File

@ -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);
}