Last active
September 14, 2015 06:03
-
-
Save sifue/a96706f1e3a0dcb0dacc to your computer and use it in GitHub Desktop.
IntelliJ IDEAでJavaを書く時によく使うLive Template5つ ref: http://qiita.com/sifue/items/d549bdf70b4a00328f38
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
| System.out.println("$EXPR_COPY$ = " + $EXPR$); |
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
| System.out.println("$CLASS_NAME$.$METHOD_NAME$"); |
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
| public static void main(String[] args){ | |
| $END$ | |
| } |
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
| for ($ELEMENT_TYPE$ $VAR$ : $ITERABLE_TYPE$) { | |
| $END$ | |
| } |
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
| for(int $INDEX$ = 0; $INDEX$ < $LIMIT$; $INDEX$++) { | |
| $END$ | |
| } |
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
| for(int $INDEX$ = 0; $INDEX$ < $LIMIT$; $INDEX$++) { | |
| $END$ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment