de.swm.gwt.client.IDisabledFormPresenter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swm-gwt-client Show documentation
Show all versions of swm-gwt-client Show documentation
Plain GWT Swm erweiterungen, auch zur benutzung in mobilen Geraeten
The newest version!
package de.swm.gwt.client;
/**
* Allgemeines Interface fuer einen Formular-Presenter.
*
* @author Steiner.Christian
*
copyright (C) 2010-13, SWM Services GmbH S-IP-AN-EE
* @param der Typ des Daten Transfer Objektes
*/
public interface IDisabledFormPresenter {
/**
* Wenn im Formular der 'Abbrechen'/'Schließen'-Button geklickt wurde.
*/
void handleCancel();
/**
* Zeigt ein DTO in dem Formular an.
*
* @param toDisplay
* das DTO.
*/
void displayDTO(T toDisplay);
/**
* Liefert das aktuell angezeigte DTO zurueck.
*
* @return das DTO oder null.
*/
T getDisplayedDTO();
}