|
1 | | -<?xml version="1.0" encoding="UTF-8"?> |
2 | | -<?eclipse version="3.0"?> |
3 | | -<plugin> |
4 | | - |
5 | | -<!-- =================================================================================== --> |
6 | | -<!-- Extension Point: Extended Compiler --> |
7 | | -<!-- =================================================================================== --> |
8 | | -<extension-point name="Extended Compiler" |
9 | | - id="extendedCompiler" |
10 | | - schema="schema/extendedCompiler.exsd"/> |
11 | | - |
12 | | -<!-- =================================================================================== --> |
13 | | -<!-- Extension Point: Extended AST Script Visitor --> |
14 | | -<!-- =================================================================================== --> |
15 | | -<extension-point name="Extended AST Script Visitor" |
16 | | - id="extendedASTScriptVisitor" |
17 | | - schema="schema/extendedASTScriptVisitor.exsd"/> |
18 | | - |
19 | | - <extension |
20 | | - id="net.sf.j2s.core.j2scompiler" |
21 | | - name="Java2Script Compiler" |
22 | | - point="net.sf.j2s.core.extendedCompiler"> |
23 | | - <extendedCompiler |
24 | | - class="net.sf.j2s.core.compiler.Java2ScriptCompiler" |
25 | | - id="net.sf.j2s.j2scompiler"/> |
26 | | - <!-- |
27 | | - <extendedCompiler |
28 | | - class="net.sf.j2s.core.compiler.J2SDependencyCompiler" |
29 | | - id="net.sf.j2s.dependencyCompiler"/> |
30 | | - --> |
31 | | - </extension> |
32 | | - |
33 | | - |
34 | | -<!-- =================================================================================== --> |
35 | | -<!-- Extension: Java Nature --> |
36 | | -<!-- =================================================================================== --> |
37 | | - |
38 | | -<extension |
39 | | - point="org.eclipse.core.resources.natures" |
40 | | - id="java2scriptnature" |
41 | | - name="Java2Script Nature"> |
42 | | - <runtime> |
43 | | - <run class="net.sf.j2s.core.Java2ScriptProjectNature"> |
44 | | - </run> |
45 | | - </runtime> |
46 | | - <builder id="net.sf.j2s.core.java2scriptbuilder"/> |
47 | | -</extension> |
48 | | - |
49 | | - |
50 | | - <!-- =================================================================================== --> |
51 | | - <!-- Extension: Java Builder --> |
52 | | - <!-- =================================================================================== --> |
53 | | - |
54 | | - <extension |
55 | | - point="org.eclipse.core.resources.builders" |
56 | | - id="java2scriptbuilder" |
57 | | - name="Java2Script Builder"> |
58 | | - <builder> |
59 | | - <run class="net.sf.j2s.core.builder.Java2ScriptBuilder"> |
60 | | - </run> |
61 | | - </builder> |
62 | | - </extension> |
63 | | - |
64 | | - <extension |
65 | | - id="InternalASTScriptVisitor" |
66 | | - name="InternalASTScriptVisitor" |
67 | | - point="net.sf.j2s.core.extendedASTScriptVisitor"> |
68 | | - <extendedASTScriptVisitor |
69 | | - class="net.sf.j2s.core.compiler.ASTExtendedVisitor" |
70 | | - id="BasicASTScriptVisitor"/> |
71 | | - <extendedASTScriptVisitor |
72 | | - class="net.sf.j2s.core.compiler.SWTExtendedVisitor" |
73 | | - id="SWTASTScriptVisitor"/> |
74 | | - </extension> |
75 | | - |
76 | | -</plugin> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<?eclipse version="3.0"?> |
| 3 | +<plugin> |
| 4 | + |
| 5 | +<!-- =================================================================================== --> |
| 6 | +<!-- Extension Point: Extended Compiler --> |
| 7 | +<!-- =================================================================================== --> |
| 8 | +<extension-point name="Extended Compiler" |
| 9 | + id="extendedCompiler" |
| 10 | + schema="schema/extendedCompiler.exsd"/> |
| 11 | + |
| 12 | +<!-- =================================================================================== --> |
| 13 | +<!-- Extension Point: Extended AST Script Visitor --> |
| 14 | +<!-- =================================================================================== --> |
| 15 | +<extension-point name="Extended AST Script Visitor" |
| 16 | + id="extendedASTScriptVisitor" |
| 17 | + schema="schema/extendedASTScriptVisitor.exsd"/> |
| 18 | + |
| 19 | + <extension |
| 20 | + id="net.sf.j2s.core.j2scompiler" |
| 21 | + name="Java2Script Compiler" |
| 22 | + point="net.sf.j2s.core.extendedCompiler"> |
| 23 | + <extendedCompiler |
| 24 | + class="net.sf.j2s.core.compiler.Java2ScriptCompiler" |
| 25 | + id="net.sf.j2s.j2scompiler"/> |
| 26 | + <!-- |
| 27 | + <extendedCompiler |
| 28 | + class="net.sf.j2s.core.compiler.J2SDependencyCompiler" |
| 29 | + id="net.sf.j2s.dependencyCompiler"/> |
| 30 | + --> |
| 31 | + </extension> |
| 32 | + |
| 33 | + |
| 34 | +<!-- =================================================================================== --> |
| 35 | +<!-- Extension: Java Nature --> |
| 36 | +<!-- =================================================================================== --> |
| 37 | + |
| 38 | +<extension |
| 39 | + point="org.eclipse.core.resources.natures" |
| 40 | + id="java2scriptnature" |
| 41 | + name="Java2Script Nature"> |
| 42 | + <runtime> |
| 43 | + <run class="net.sf.j2s.core.Java2ScriptProjectNature"> |
| 44 | + </run> |
| 45 | + </runtime> |
| 46 | + <builder id="net.sf.j2s.core.java2scriptbuilder"/> |
| 47 | +</extension> |
| 48 | + |
| 49 | + |
| 50 | + <!-- =================================================================================== --> |
| 51 | + <!-- Extension: Java Builder --> |
| 52 | + <!-- =================================================================================== --> |
| 53 | + |
| 54 | + <extension |
| 55 | + point="org.eclipse.core.resources.builders" |
| 56 | + id="java2scriptbuilder" |
| 57 | + name="Java2Script Builder"> |
| 58 | + <builder> |
| 59 | + <run class="net.sf.j2s.core.builder.Java2ScriptBuilder"> |
| 60 | + </run> |
| 61 | + </builder> |
| 62 | + </extension> |
| 63 | +<!-- no longer used BH 12/17 |
| 64 | + <extension |
| 65 | + id="InternalASTScriptVisitor" |
| 66 | + name="InternalASTScriptVisitor" |
| 67 | + point="net.sf.j2s.core.extendedASTScriptVisitor"> |
| 68 | + <extendedASTScriptVisitor |
| 69 | + class="net.sf.j2s.core.compiler.ASTExtendedVisitor" |
| 70 | + id="BasicASTScriptVisitor"/> |
| 71 | + <extendedASTScriptVisitor |
| 72 | + class="net.sf.j2s.core.compiler.SWTExtendedVisitor" |
| 73 | + id="SWTASTScriptVisitor"/> |
| 74 | + </extension> |
| 75 | +--> |
| 76 | +</plugin> |
0 commit comments