Skip to content

Instantly share code, notes, and snippets.

@ejknapp
Created February 10, 2014 01:34
Show Gist options
  • Save ejknapp/8908835 to your computer and use it in GitHub Desktop.
Save ejknapp/8908835 to your computer and use it in GitHub Desktop.
This is a SuperAbbrevs snippet I will be using in my java classes.
package java112.$3;
/**
* @author <#=AUTHOR#>
* class $1
*/
public class ${1:name} {
public void run() {
$end
}
public static void main(String[] args) {
$1 demo = new $1();
demo.run();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment