org.webpieces.templatingdev.impl.source.UniqueIdGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-templating-dev-lib Show documentation
Show all versions of http-templating-dev-lib Show documentation
Templating library using groovy as the scripting language
package org.webpieces.templatingdev.impl.source;
public class UniqueIdGenerator {
private int id;
public synchronized int generateId() {
return id++;
}
}