Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/utils/IdGenerator.java @ 5498:d459a885c51f
Schema change: make sq_relation_value.qmax NOT NULL and more informative messages in parser
author | Tom Gottfried <tom.gottfried@intevation.de> |
---|---|
date | Thu, 28 Mar 2013 14:02:52 +0100 |
parents | e0e9a2629d7d |
children |
line wrap: on
line source
package de.intevation.flys.utils; public class IdGenerator { protected int id; public IdGenerator() { } public IdGenerator(int id) { this.id = id; } public int next() { return id++; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :