vote up 1 vote down star

Does anyone know of an existing Java component that implements a TokenField, similar to Cocoa's NSTokenField?

An overview of the Cocoa control is at: http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/TokenField%5FGuide/Introduction/Introduction.html

Suggestions for implementation?

Thanks!

flag

2 Answers

vote up 0 vote down

Although it does not seems to be implemented yet, you should take a look at macwidgets, and eventually ask for implementation of your widget.

link|flag
vote up 0 vote down

Erm maybe you can try StringTokenizer? This will break your string into individual tokens. StringTokenizer(String text, delimiter);

For example:

String text="Hello World";

Stringtokenizer stText= new StringTokenizer(text, " ");

link|flag

Your Answer

Get an OpenID
or

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