comparison gnv-artifacts/src/main/java/de/intevation/gnv/utils/Pair.java @ 465:f7038820df2e

Added support to trace rasters to JTS multi polygons and multi line strings. Write them to shape files with GeoTools. gnv-artifacts/trunk@526 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 11 Jan 2010 00:29:45 +0000
parents
children c4156275c1e1
comparison
equal deleted inserted replaced
464:70df44021a9f 465:f7038820df2e
1 package de.intevation.gnv.utils;
2
3 import java.io.Serializable;
4
5 /**
6 * @author Sascha L. Teichmann (sascha.teichmann@intevation.de)
7 */
8 public final class Pair<A, B>
9 implements Serializable
10 {
11 private A a;
12 private B b;
13
14 private Pair() {
15 }
16
17 public Pair(A a, B b) {
18 this.a = a;
19 this.b = b;
20 }
21
22 public A getA() {
23 return a;
24 }
25
26 public B getB() {
27 return b;
28 }
29 }
30 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org