Swing のコンポーネントにツールティップを付けるには、各種コンポーネントの親クラスである JComponent の以下のメソッドを使用します。
void javax.swing.JComponent#setToolTipText(String text)
JButton button = new JButton("Send"); button.setToolTipText("Send the message");