Skip to content

Instantly share code, notes, and snippets.

@rubenrangel
Created October 31, 2012 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rubenrangel/3988488 to your computer and use it in GitHub Desktop.
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.
<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