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

org.webpieces.templatingdev.impl.source.UniqueIdGenerator Maven / Gradle / Ivy

There is a newer version: 2.1.109
Show newest version
package org.webpieces.templatingdev.impl.source;

public class UniqueIdGenerator {

	private int id;

	public synchronized int generateId() {
		return id++;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy