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

org.drombler.commons.data.DataHandler Maven / Gradle / Ivy

/*
 *         COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Notice
 *
 * The contents of this file are subject to the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)
 * Version 1.0 (the "License"); you may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.opensource.org/licenses/cddl1.txt
 *
 * The Original Code is Drombler.org. The Initial Developer of the
 * Original Code is Florian Brunner (GitHub user: puce77).
 * Copyright 2016 Drombler.org. All Rights Reserved.
 *
 * Contributor(s): .
 */
package org.drombler.commons.data;

import org.drombler.commons.context.LocalContextProvider;
import org.softsmithy.lib.beans.Bean;
import org.softsmithy.lib.util.UniqueKeyProvider;

/**
 * A data handler. A data handler usually knows how to read, save etc. a particular kind of data.
 *
 * To fully integrate with the framework it should observe registered {@link DataCapabilityProvider}s and add the found data capabilities to it's local context.
 *
 *
 * @param  the type of the unique key of this data handler
 * @author puce
 */
public interface DataHandler extends LocalContextProvider, UniqueKeyProvider, Bean {
    String UNIQUE_KEY_PROPERTY_NAME = "uniqueKey";
    String TITLE_PROPERTY_NAME = "title";
    String TOOLTIP_TEXT_PROPERTY_NAME = "tooltipText";
    String DIRTY_PROPERTY_NAME = "dirty";

    /**
     * Gets the title of this data handler. It's intended to be used e.g. in tabs and cells.
     *
     * @return the title of this data handler
     */
    String getTitle();

    /**
     * Gets the tooltip text. This text is intended to be used in tooltips.
     *
     * @return the tooltip text
     */
    String getTooltipText();

    /**
     * Marks the content of this data handler as dirty.
     *
     * If the content has been modified but the user discarded the changes, the data handler should be marked as dirty to indicate that the content needs to be reloaded from its source when it's
     * accessed the next time.
     *
     * @see #isDirty()
     */
    void markDirty();

    /**
     * A flag if the content of this data handler is dirty.
     *
     * If the content is marked as dirty it should be reloaded from its source when it's accessed the next time.
     *
     * @return true, if the content is marked as dirty, else false
     */
    boolean isDirty();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy