All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cedarsoft.utils.id.NumberIdGenerator Maven / Gradle / Ivy

package com.cedarsoft.utils.id;

/**
 * Helper class that offers support for id number generation
 * 

* Date: 09.10.2006
* Time: 13:44:33
* * @author Johannes Schneider - * Xore Systems */ public class NumberIdGenerator { private static int lastGivenId; public static synchronized int createId() { //todo check overflow return lastGivenId++; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy