Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
メソッドクリックのコードをjtreeで書いているが、左クリックだけでアクションが欲しい
class SelectionListener extends DefaultMutableTreeNode implements TreeSelectionListener { public void valueChanged(TreeSelectionEvent se) {...}
をキャプチャしている場合はMouseEvent、次の方法を使用して、クリックが左クリックであったかどうかを確認できます。
MouseEvent
SwingUtilities.isLeftMouseButton(mouseEvent)