Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/math/AttributedPoint2ds.java @ 483:c8089cd7d777
Added explicit index scheme to palette classes to allow external references.
gnv-artifacts/trunk@558 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Mon, 18 Jan 2010 10:56:41 +0000 |
parents | 211cad2fb5ba |
children | 823e4f808418 |
line wrap: on
line source
package de.intevation.gnv.math; import java.util.Map; import java.util.HashMap; import java.util.List; import java.io.Serializable; /** * @author Sascha L. Teichmann (sascha.teichmann@intevation.de) */ public class AttributedPoint2ds implements Serializable { protected List<? extends Point2d> points; protected Map attributes; public AttributedPoint2ds() { } public AttributedPoint2ds(List<? extends Point2d> points) { this.points = points; } public Object getAttribute(Object key) { return attributes != null ? attributes.get(key) : null; } public void setAttribute(Object key, Object value) { if (attributes == null) { attributes = new HashMap(); } attributes.put(key, value); } public List<? extends Point2d> getPoints() { return points; } public void setPoints(List<? extends Point2d> points) { this.points = points; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :