Last commit before tagging and releasing

This commit is contained in:
capitaomorte
2009-08-29 17:59:02 +00:00
parent 15c7703b5b
commit b8dcf61367
640 changed files with 4360 additions and 77 deletions

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: j.b
# contributor: Translated from TextMate Snippet
# name: java.beans.
# --
java.beans.

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: j.i
# contributor: Translated from TextMate Snippet
# name: java.io.
# --
java.io.

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: j.m
# contributor: Translated from TextMate Snippet
# name: java.math.
# --
java.math.

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: j.n
# contributor: Translated from TextMate Snippet
# name: java.net.
# --
java.net.

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: j.u
# contributor: Translated from TextMate Snippet
# name: java.util.
# --
java.util.

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: cl
# contributor: Translated from TextMate Snippet
# name: class
# --
class ${1:${TM_FILENAME/(.*?)(\..+)/$1/}} ${2:extends ${3:Parent} }${4:implements ${5:Interface} }{
$0
}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: cos
# contributor: Translated from TextMate Snippet
# name: constant string
# --
static public final String ${1:var} = "$2";$0

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: co
# contributor: Translated from TextMate Snippet
# name: constant
# --
static public final ${1:String} ${2:var} = $3;$0

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: in
# contributor: Translated from TextMate Snippet
# name: interface
# --
interface ${1:${TM_FILENAME/(.*?)(\..+)/$1/}} ${2:extends ${3:Parent} }{
$0
}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: main
# contributor: Translated from TextMate Snippet
# name: method (main)
# --
public static void main(String[] args) {
$0
}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: m
# contributor: Translated from TextMate Snippet
# name: method
# --
${1:void} ${2:method}($3) ${4:throws $5 }{
$0
}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: v
# contributor: Translated from TextMate Snippet
# name: variable
# --
${1:String} ${2:var}${3: = ${0:null}};

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: br
# contributor: Translated from TextMate Snippet
# name: break
# --
break;

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: cs
# contributor: Translated from TextMate Snippet
# name: case
# --
case $1:
$2
$0

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: ca
# contributor: Translated from TextMate Snippet
# name: catch
# --
catch (${1:Exception} ${2:e}) {
$0
}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# key: de
# contributor: Translated from TextMate Snippet
# name: default
# --
default:
$0

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: elif
# contributor: Translated from TextMate Snippet
# name: else if
# --
else if ($1) {
$0
}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: el
# contributor: Translated from TextMate Snippet
# name: else
# --
else {
$0
}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: fore
# contributor: Translated from TextMate Snippet
# name: for (each)
# --
for ($1 : $2) {
$0
}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: for
# contributor: Translated from TextMate Snippet
# name: for
# --
for ($1; $2; $3) {
$0
}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: if
# contributor: Translated from TextMate Snippet
# name: if
# --
if ($1) {
$0
}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: re
# contributor: Translated from TextMate Snippet
# name: return
# --
return

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: sw
# contributor: Translated from TextMate Snippet
# name: switch
# --
switch ($1) {
$0
}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: th
# contributor: Translated from TextMate Snippet
# name: throw
# --
throw $0

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: wh
# contributor: Translated from TextMate Snippet
# name: while
# --
while ($1) {
$0
}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: as
# contributor: Translated from TextMate Snippet
# name: assert
# --
assert ${1:test}${2/(.+)/(?1: \: ")/}${2:Failure message}${2/(.+)/(?1:")/};$0

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: im
# contributor: Translated from TextMate Snippet
# name: import
# --
import

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: pa
# contributor: Translated from TextMate Snippet
# name: package
# --
package

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: sy
# contributor: Translated from TextMate Snippet
# name: synchronized
# --
synchronized

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: ab
# contributor: Translated from TextMate Snippet
# name: abstract
# --
abstract

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: fi
# contributor: Translated from TextMate Snippet
# name: final
# --
final

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: pr
# contributor: Translated from TextMate Snippet
# name: private
# --
private

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: po
# contributor: Translated from TextMate Snippet
# name: protected
# --
protected

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: pu
# contributor: Translated from TextMate Snippet
# name: public
# --
public

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: st
# contributor: Translated from TextMate Snippet
# name: static
# --
static

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# key: imt
# contributor: Translated from TextMate Snippet
# name: import junit.framework.TestCase;
# --
import junit.framework.TestCase;
$0

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: tc
# contributor: Translated from TextMate Snippet
# name: test case
# --
public class ${1:${TM_FILENAME/(.*?)(\..+)/$1/}} extends ${2:TestCase} {
$0
}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: t
# contributor: Translated from TextMate Snippet
# name: test
# --
public void test${1:Name}() throws Exception {
$0
}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: p
# contributor: Translated from TextMate Snippet
# name: print
# --
System.out.print($1);$0

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: pl
# contributor: Translated from TextMate Snippet
# name: println
# --
System.out.println($1);$0