view gnv-artifacts/src/main/java/de/intevation/gnv/chart/ChartLabels.java @ 86:5d4f5d26bb7a

Some Codecleanup done gnv-artifacts/trunk@123 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Thu, 24 Sep 2009 09:39:27 +0000
parents 8b75d01fa5b5
children 7fb9441dd8af
line wrap: on
line source
/* Copyright (C) 2007 con terra GmbH (http://www.conterra.de)
 * All rights reserved
 *
 * $Id: ChartLabels.java,v 1.1 2007/12/10 13:57:13 drewnak Exp $
 *
 * created by:      drewnak
 * created at :     10.12.2007
 * created at :     11:48:39
 *
 * modified by:     $Author: drewnak $
 * modified at:     $Date: 2007/12/10 13:57:13 $
 */
package de.intevation.gnv.chart;

/**
 * @author  drewnak
 * @author Tim Englich <tim.englich@intevation.de>
 * Changes and codecleanup
 */
public class ChartLabels {
    /**
     * 
     */
    private String title;
    /**
     * 
     */
    private String domainAxisLabel;

    /**
     * Constructor
     * @param title
     * @param domainAxisLabel
     */
    public ChartLabels(String title, String domainAxisLabel) {
        this.title = title;
        this.domainAxisLabel = domainAxisLabel;
    }

    /**
     * @return the title
     */
    public String getTitle() {
        return this.title;
    }


    /**
     * @return the timeAxisLabel
     */
    public String getDomainAxisLabel() {
        return this.domainAxisLabel;
    }
}

http://dive4elements.wald.intevation.org