Rozważmy następujący pseudo kod, który implementuje wzorzec MVP:MVP wzornictwo najlepszych praktyk
interface Presenter {
void onSendClicked();
}
interface View {
String getInput();
void showProgress();
void hideProgress();
}
class PresenterImpl implements Presenter {
// ...ignore other implementations
void onSendClicked() {
String input = view.getInput();
view.showProgress();
repository.store(input);
view.hideProgress();
}
}
class ViewImpl implements View {
// ...ignore other implementations
void onButtonClicked() {
presenter.onSendClicked();
}
String getInput() {
return textBox.getInput();
}
void showProgress() {
progressBar.show();
}
void hideProgress() {
progressBar.hide();
}
}
A oto alternatywa implementacja MVP wzoru:
interface Presenter {
void saveInput(String input);
}
interface View {
void showProgress();
void hideProgress();
}
class PresenterImpl implements Presenter {
// ...ignore other implementations
void saveInput(String input) {
view.showProgress();
repository.store(input);
view.hideProgress();
}
}
class ViewImpl implements View {
// ...ignore other implementations
void onButtonClicked() {
String input = textBox.getInput();
presenter.saveInput(intput);
}
void showProgress() {
progressBar.show();
}
void hideProgress() {
progressBar.hide();
}
}
Który z nich jest bardziej poprawna implementacja MVP wzór? Czemu?
Przegląd kodu może być lepszym miejscem na to pytanie, dostaniesz tam kilka dobrych odpowiedzi: http://codereview.stackexchange.com/ –
@Jezzabeanz potrzebuje prawdziwego kodu, ale nie pseudokodu. – Riker
Jak mogę poprosić o opinię bez pytania o opinię? – CarlLee