view gnv-artifacts/src/main/java/de/intevation/gnv/raster/Filter.java @ 803:feae2f9d6c6f

Removed trailing whitespace. gnv-artifacts/trunk@885 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 07 Apr 2010 07:52:27 +0000
parents d766fe2d917a
children f953c9a559d8
line wrap: on
line source
package de.intevation.gnv.raster;

import org.w3c.dom.Element;

/**
 * Interface to model transformations of rasters.
 * @author <a href="mailto:sascha.teichmann@intevation.de">Sascha L. Teichmann</a>
 */
public interface Filter
{
    /**
     *  Allows the creation of filters parameterized from XML elements.
     */
    public interface Factory {

        /**
         * Setup the factory with a given XML element.
         * @param element
         */
        void init(Element element);

        /**
         * Created a new Filter with this factory.
         * @return The new created Filter.
         */
        Filter create();

    } // interface Factory

    /**
     * Apply this filter to a given raster. The original raster is
     * unmodified and a new raster is created.
     * @param raster The original raster.
     * @return The new raster.
     */
    Raster filter(Raster raster);
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org