IdGenerator in java
1 2 public class IdGenerator { 3 4 private long maxId; 5 6 public IdGenerator(long start) { 7 maxId = start; 8 } 9 10 public long getNextId () { 11 return ++maxId; 12 } 13 14 } // IdGenerator
DZone Snippets > ovhaag > id
12722 users tagging and storing useful source code snippets
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
Oliver Haag www.ohcon.de
1 2 public class IdGenerator { 3 4 private long maxId; 5 6 public IdGenerator(long start) { 7 maxId = start; 8 } 9 10 public long getNextId () { 11 return ++maxId; 12 } 13 14 } // IdGenerator