view gnv-artifacts/src/main/java/de/intevation/gnv/chart/Insets.java @ 605:e8ebdbc7f1e3

First step of removing the cache blob. The static part of the describe document will be created by using the input data stored at each state. Some TODOs left (see ChangeLog). gnv-artifacts/trunk@671 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 09 Feb 2010 14:27:55 +0000
parents 7fb9441dd8af
children
line wrap: on
line source
/* Copyright (C) 2007 con terra GmbH (http://www.conterra.de)
 * All rights reserved
 *
 * $Id: Insets.java,v 1.1 2007/12/10 13:57:13 drewnak Exp $
 *
 * created by:      drewnak
 * created at :     10.12.2007
 * created at :     13:31:12
 *
 * modified by:     $Author: drewnak $
 * modified at:     $Date: 2007/12/10 13:57:13 $
 */
package de.intevation.gnv.chart;

public class Insets {
    public double mUpper;
    public double mLower;
    public double mLeft;
    public double mRight;

    /**
     * @param pUpper
     * @param pLower
     * @param pLeft
     * @param pRight
     */
    public Insets(double pUpper, double pLeft, double pLower, double pRight) {
        super();
        mUpper = pUpper;
        mLower = pLower;
        mLeft = pLeft;
        mRight = pRight;
    }
}

http://dive4elements.wald.intevation.org