Java TokenField like Cocoa's?

257 Views Asked by At

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_Guide/Introduction/Introduction.html

Suggestions for implementation?

Thanks!

2

There are 2 best solutions below

0
On

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

0
On

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, " ");