
fr.lteconsulting.hexa.client.tools.HTMLSniper Maven / Gradle / Ivy
The newest version!
package fr.lteconsulting.hexa.client.tools;
import java.util.HashMap;
import com.google.gwt.user.client.DOM;
public class HTMLSniper
{
HashMap elementIds = new HashMap();
String getId( String name )
{
String res = elementIds.get( name );
if( res == null )
{
res = DOM.createUniqueId();
elementIds.put( name, res );
}
return res;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy