comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/QW.java @ 3729:e727e3ebdf85

Factored out a pure QW model to be more reusable. flys-artifacts/trunk@5402 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Sat, 08 Sep 2012 14:19:40 +0000
parents
children
comparison
equal deleted inserted replaced
3728:d03e65378b9f 3729:e727e3ebdf85
1 package de.intevation.flys.artifacts.model;
2
3 import java.io.Serializable;
4
5 public class QW
6 implements Serializable
7 {
8 protected double q;
9 protected double w;
10
11 public QW() {
12 }
13
14 public QW(double q, double w) {
15 this.q = q;
16 this.w = w;
17 }
18
19 public double getQ() {
20 return q;
21 }
22
23 public void setQ(double q) {
24 this.q = q;
25 }
26
27 public double getW() {
28 return w;
29 }
30
31 public void setW(double w) {
32 this.w = w;
33 }
34 }
35 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org