aboutsummaryrefslogtreecommitdiff
path: root/template/java
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2012-04-13 13:11:17 +0900
committermattn <mattn.jp@gmail.com>2012-04-13 13:11:17 +0900
commit7e2c231888ded45c9c78d282efe3d9d6c4b2bd19 (patch)
tree81816ab5ea7b75a06537efe38da2d21e79b3ef59 /template/java
parenta3b1d956c4a7311469b05c32e75dc4f067e7c271 (diff)
parentcc759ac441d910f4b47a378e02301c538a05ca1e (diff)
downloadvim-sonictemplate-7e2c231888ded45c9c78d282efe3d9d6c4b2bd19.tar.gz
vim-sonictemplate-7e2c231888ded45c9c78d282efe3d9d6c4b2bd19.tar.bz2
vim-sonictemplate-7e2c231888ded45c9c78d282efe3d9d6c4b2bd19.zip
Merge branch 'master' of github.com:mattn/sonictemplate-vim
Diffstat (limited to 'template/java')
-rw-r--r--template/java/base-class.java4
-rw-r--r--template/java/snip-comment-block.java3
-rw-r--r--template/java/snip-doc-comment.java3
3 files changed, 8 insertions, 2 deletions
diff --git a/template/java/base-class.java b/template/java/base-class.java
index e87b16a..f472f63 100644
--- a/template/java/base-class.java
+++ b/template/java/base-class.java
@@ -1,11 +1,11 @@
/**
* {{_name_}}
*/
-public class {{_name_}} {
+public class {{_expr_:substitute('{{_name_}}', '\w\+', '\u\0', '')}} {
/**
* Constructor
*/
- public {{_name_}}() {
+ public {{_expr_:substitute('{{_name_}}', '\w\+', '\u\0', '')}}() {
{{_cursor_}}
}
}
diff --git a/template/java/snip-comment-block.java b/template/java/snip-comment-block.java
new file mode 100644
index 0000000..9b1229e
--- /dev/null
+++ b/template/java/snip-comment-block.java
@@ -0,0 +1,3 @@
+/*
+ * {{_cursor_}}
+ */
diff --git a/template/java/snip-doc-comment.java b/template/java/snip-doc-comment.java
new file mode 100644
index 0000000..5d93c0d
--- /dev/null
+++ b/template/java/snip-doc-comment.java
@@ -0,0 +1,3 @@
+/**
+ * {{_cursor_}}
+ */