org.eclipse.swt.widgets.Text equivalent in Intellij

Answered

org.eclipse.swt.widgets.Text is a User Interface component for Textfield. This class has below methods.

setData( )  - Sets the application defined property of the receiver with the specified name to the given value.

getData - Returns the application defined property of the receiver with the specified name, or null if it has not been set.

Do we have any equivalent UI control in IntelliJ where I can set some properties(key/value) in that?

0
1 comment
Official comment

Swing offers a similar mechanism via javax.swing.JComponent#putClientProperty and javax.swing.JComponent#getClientProperty

Please sign in to leave a comment.