]> Dogcows Code - chaz/vimcoder/commitdiff
basic java template
authorCharles McGarvey <chazmcgarvey@brokenzipper.com>
Fri, 12 Nov 2010 04:44:31 +0000 (21:44 -0700)
committerCharles McGarvey <chazmcgarvey@brokenzipper.com>
Fri, 12 Nov 2010 04:44:31 +0000 (21:44 -0700)
closes #2

src/com/dogcows/resources/JavaTemplate [new file with mode: 0644]

diff --git a/src/com/dogcows/resources/JavaTemplate b/src/com/dogcows/resources/JavaTemplate
new file mode 100644 (file)
index 0000000..a026a4e
--- /dev/null
@@ -0,0 +1,15 @@
+
+import static java.lang.Math.*;
+import static java.math.BigInteger.*;
+import static java.util.Arrays.*;
+import static java.util.Collections.*;
+import java.math.*;
+import java.util.*;
+
+public class $CLASSNAME$
+{
+       public $RETURNTYPE$ $METHODNAME$($METHODPARAMS$)
+       {
+       }
+}
+
This page took 0.019457 seconds and 4 git commands to generate.