All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.spirylics.xgwt.essential.ModelHandler Maven / Gradle / Ivy

package com.github.spirylics.xgwt.essential;

import com.google.gwt.event.shared.EventHandler;

public interface ModelHandler extends EventHandler {
    void onDeleteModel(D deleted);

    void onUpdateModel(D old, D updated);

    void onCreateModel(D created);

    void onClearModel();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy