templates.properties revision 2776:aa568700edd1
1toplevel.decl=\
2    package {0};\n\
3    \n\
4    {1}\n\
5    import com.sun.tools.javac.util.JCDiagnostic.Error;\n\
6    import com.sun.tools.javac.util.JCDiagnostic.Warning;\n\
7    import com.sun.tools.javac.util.JCDiagnostic.Note;\n\
8    import com.sun.tools.javac.util.JCDiagnostic.Fragment;\n\
9    \n\
10    public class {2} '{'\n\
11    {3}\n\
12    '}'\n
13
14import.decl=\
15    import {0};
16
17nested.decl =\
18    public static class {0} '{'\n\
19    {1}\n\
20    '}'
21
22factory.decl.method=\
23    /**\n\
24    ' '* {5}\n\
25    ' '*/\n\
26    {0}public static {1} {2}({3}) '{'\n\
27    {4}\n\
28    '}'
29
30factory.decl.method.arg=\
31    arg{0}
32
33factory.decl.method.body=\
34    return new {0}({1}, {2}, {3});
35
36factory.decl.field=\
37    /**\n\
38    ' '* {4}\n\
39    ' '*/\n\
40    public static final {0} {1} = new {0}({2}, {3});
41
42wildcards.extends=\
43    {0}<? extends {1}>
44
45suppress.warnings=\
46  @SuppressWarnings("rawtypes")\n
47
48
49