DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
IdGenerator In Java
// IdGenerator
public class IdGenerator {
private long maxId;
public IdGenerator(long start) {
maxId = start;
}
public long getNextId () {
return ++maxId;
}
} // IdGenerator






Comments
Torsten Krall replied on Wed, 2007/02/14 - 5:08am
Torsten Krall replied on Wed, 2007/02/14 - 5:08am
Madhav Turangi replied on Wed, 2007/02/14 - 8:33am