view gnv-artifacts/src/main/java/de/intevation/gnv/exports/DefaultProfile.java @ 469:62fc63d0f71d

Added a new State in Product Verticalprofile in Timeseriespoints. Now it will be displayed the Years where measurements happened and than only the dates of the chosen Year will be fetched and displayed. gnv-artifacts/trunk@532 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 12 Jan 2010 12:42:53 +0000
parents 3ea030aafe65
children a0e63136954e
line wrap: on
line source
package de.intevation.gnv.exports;


/**
 * @author Sascha L. Teichmann (sascha.teichmann@intevation.de)
 * @author Ingo Weinzierl (ingo.weinzierl@intevation.de)
 */
public class DefaultProfile
implements   Export.Profile
{
    protected Export.DataCollector collector;
    protected String []            header;
    protected String []            names;
    protected char                 separator;
    protected char                 escapeCharacter;
    protected char                 quoteCharacter;
    protected String               type;
    protected String               encoding;

    public DefaultProfile() {
    }

    public DefaultProfile(
        String []            header,
        char                 separator,
        char                 escapeCharacter,
        char                 quoteCharacter,
        String               type,
        String               encoding
    ) {
        this.header          = header;
        this.separator       = separator;
        this.escapeCharacter = escapeCharacter;
        this.quoteCharacter  = quoteCharacter;
        this.type            = type;
        this.encoding        = encoding;
    }

    public String toString(int index, String value) {
        return value;
    }

    public char getSeparator() {
        return separator;
    }

    public char getEscapeCharacter() {
        return escapeCharacter;
    }

    public char getQuoteCharacter() {
        return quoteCharacter;
    }

    public String getType() {
        return type;
    }

    public String getEncoding() {
        return encoding;
    }

    public String[] getHeader() {
        return header;
    }
}

http://dive4elements.wald.intevation.org