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

org.dominokit.domino.ui.datatable.events.TableDataUpdatedEvent Maven / Gradle / Ivy

There is a newer version: 1.0.139
Show newest version
package org.dominokit.domino.ui.datatable.events;

import java.util.List;

public class TableDataUpdatedEvent implements TableEvent {

    public static final String DATA_UPDATED = "table-data-updated";

    private final List data;
    private final int totalCount;

    public TableDataUpdatedEvent(List data, int totalCount) {
        this.data = data;
        this.totalCount = totalCount;
    }

    @Override
    public String getType() {
        return DATA_UPDATED;
    }

    public List getData() {
        return data;
    }

    public int getTotalCount() {
        return totalCount;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy