Created
October 21, 2012 11:55
-
-
Save michail-nikolaev/3926804 to your computer and use it in GitHub Desktop.
IDEA - live templates
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- put to C:\Users\${USER}\.IdeaIC11\config\templates as iterations.xml --> | |
| <templateSet group="iterations"> | |
| <!-- slf+ TAB to generate logger --> | |
| <template name="slf" value="private static final org.slf4j.Logger LOGGER = org.slf4j.LoggerFactory.getLogger($CLASS_NAME$.class);" description="Creates sfl4j logger" toReformat="true" toShortenFQNames="true" useStaticImport="true"> | |
| <variable name="CLASS_NAME" expression="className()" defaultValue="" alwaysStopAt="true" /> | |
| <context> | |
| <option name="HTML_TEXT" value="false" /> | |
| <option name="HTML" value="false" /> | |
| <option name="XSL_TEXT" value="false" /> | |
| <option name="XML" value="false" /> | |
| <option name="JAVA_CODE" value="false" /> | |
| <option name="JAVA_STATEMENT" value="false" /> | |
| <option name="JAVA_EXPRESSION" value="false" /> | |
| <option name="JAVA_DECLARATION" value="true" /> | |
| <option name="JAVA_COMMENT" value="false" /> | |
| <option name="JAVA_STRING" value="false" /> | |
| <option name="COMPLETION" value="false" /> | |
| <option name="GROOVY" value="false" /> | |
| <option name="GROOVY_EXPRESSION" value="false" /> | |
| <option name="GROOVY_STATEMENT" value="false" /> | |
| <option name="GROOVY_DECLARATION" value="false" /> | |
| <option name="MAVEN" value="false" /> | |
| <option name="SCALA" value="false" /> | |
| <option name="OTHER" value="false" /> | |
| </context> | |
| </template> | |
| </templateSet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment