vote up 1 vote down star
1

My GWT application creates text areas, each of which must have an ID in order to be useful to a third-party JavaScript library. I know how to assign an ID to a GWT widget; I'm after a good way of generating those unique ID's.

flag

43% accept rate

4 Answers

vote up 4 vote down check

For GWT, take a look at HTMLPanel.createUniqueId

String id = HTMLPanel.createUniqueId();
link|flag
vote up 2 vote down

Java has a built-in class for unique ID creation: http://java.sun.com/j2se/1.5.0/docs/api/java/util/UUID.html

Another common way is by using a timestamp, i.e. System.currentTimeMillis()

link|flag
1  
UUID is not implemented by GWT, but I found a guide for how to provide an implementation of your own: code.google.com/webtoolkit/doc/… I also found an implementation: 2ality.blogspot.com/2009/01/… Thanks for the headstart. – David Sep 23 at 5:14
No worries! Btw, it looks like Chi's answer might be even more suitable for your purposes. – harto Sep 24 at 1:00
Yes, I think you're correct: HTMLPanel.createUniqueId seems to be exactly what I'm after. – David Sep 24 at 13:43
vote up 1 vote down

I believe this would be what you need for unique identifiers ( using a timestamp and the 'widget-' namespace ).

'widget-' + (new Date).valueOf()
link|flag
vote up 1 vote down

Javascript:

var idIndex = 0;

function getNewId() {
    return "textGWT"+(idIndex++);
}

Java:

class IdMaker {

    private static int idIndex = 0;

    public static String generate() {
        return "textGWT"+(idIndex++);
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.