Created
April 28, 2012 02:17
-
-
Save johnstosh/2515150 to your computer and use it in GitHub Desktop.
Java NetBeans - (Jackpot) refactoring -- Change show() and hide() into setVisible()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!description="Change .show() and .hide() calls | |
on Dialog and JDialog | |
into .setVisible(true) and .setVisible(false) calls, respectively."> | |
$s.show() :: $s instanceof java.awt.Dialog | |
=> $s.setVisible(true) | |
;; | |
$s.hide() :: $s instanceof java.awt.Dialog | |
=> $s.setVisible(false) | |
;; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment