tim@65: /* Copyright (C) 2007 con terra GmbH (http://www.conterra.de)
tim@65:  * All rights reserved
tim@65:  *
tim@65:  * $Id: Insets.java,v 1.1 2007/12/10 13:57:13 drewnak Exp $
tim@65:  *
tim@65:  * created by:      drewnak
tim@65:  * created at :     10.12.2007
tim@65:  * created at :     13:31:12
tim@65:  *
tim@65:  * modified by:     $Author: drewnak $
tim@65:  * modified at:     $Date: 2007/12/10 13:57:13 $
tim@65:  */
tim@65: package de.intevation.gnv.chart;
tim@65: 
tim@65: public class Insets {
tim@65:     public double mUpper;
tim@65:     public double mLower;
tim@65:     public double mLeft;
tim@65:     public double mRight;
tim@171: 
tim@65:     /**
tim@65:      * @param pUpper
tim@65:      * @param pLower
tim@65:      * @param pLeft
tim@65:      * @param pRight
tim@65:      */
tim@65:     public Insets(double pUpper, double pLeft, double pLower, double pRight) {
tim@65:         super();
tim@65:         mUpper = pUpper;
tim@65:         mLower = pLower;
tim@65:         mLeft = pLeft;
tim@65:         mRight = pRight;
tim@65:     }
tim@65: }