Never been to DZone Snippets before?

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

About this user

Oliver Haag www.ohcon.de

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

IdGenerator in java

// IdGenerator

   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
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS