Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/Insets.java @ 127:f6f0e4ce4a35
merged gnv-artifacts/0.1
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:41 +0200 |
parents | 8b75d01fa5b5 |
children | 7fb9441dd8af |
comparison
equal
deleted
inserted
replaced
49:94a07d1d9316 | 127:f6f0e4ce4a35 |
---|---|
1 /* Copyright (C) 2007 con terra GmbH (http://www.conterra.de) | |
2 * All rights reserved | |
3 * | |
4 * $Id: Insets.java,v 1.1 2007/12/10 13:57:13 drewnak Exp $ | |
5 * | |
6 * created by: drewnak | |
7 * created at : 10.12.2007 | |
8 * created at : 13:31:12 | |
9 * | |
10 * modified by: $Author: drewnak $ | |
11 * modified at: $Date: 2007/12/10 13:57:13 $ | |
12 */ | |
13 package de.intevation.gnv.chart; | |
14 | |
15 public class Insets { | |
16 public double mUpper; | |
17 public double mLower; | |
18 public double mLeft; | |
19 public double mRight; | |
20 /** | |
21 * @param pUpper | |
22 * @param pLower | |
23 * @param pLeft | |
24 * @param pRight | |
25 */ | |
26 public Insets(double pUpper, double pLeft, double pLower, double pRight) { | |
27 super(); | |
28 mUpper = pUpper; | |
29 mLower = pLower; | |
30 mLeft = pLeft; | |
31 mRight = pRight; | |
32 } | |
33 } |