Created
October 31, 2012 17:28
-
-
Save rubenrangel/3988488 to your computer and use it in GitHub Desktop.
A Sublime Text code snippet that creates a header for Java files. Includes Javadoc tags for author and version, as well as variables for filename, programmer's full name, and email.
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
<snippet> | |
<content><![CDATA[ | |
/** | |
* $TM_FILENAME | |
* | |
* @author $TM_FULLNAME | |
* email $TM_EMAIL | |
* @version 1.0 | |
* Purpose ${1:Purpose of program} | |
* Usage ${2:How to use it} | |
*********************************************************/ | |
]]></content> | |
<tabTrigger>/***</tabTrigger> | |
<scope>source.java</scope> | |
<description>Standard Java file header template</description> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment