pberkland | 26dfbcf | 2007-02-27 17:13:30 +0000 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <?eclipse version="3.0"?> |
| 3 | <plugin> |
| 4 | <!-- Classpath variable initializer --> |
| 5 | <extension point = "org.eclipse.wst.jsdt.core.classpathVariableInitializer"> |
| 6 | <classpathVariableInitializer |
| 7 | variable="TEST_LIB" |
| 8 | class="org.eclipse.wst.jsdt.core.tests.model.VariablesInitializer"/> |
| 9 | <classpathVariableInitializer |
| 10 | variable="TEST_SRC" |
| 11 | class="org.eclipse.wst.jsdt.core.tests.model.VariablesInitializer"/> |
| 12 | <classpathVariableInitializer |
| 13 | variable="TEST_ROOT" |
| 14 | class="org.eclipse.wst.jsdt.core.tests.model.VariablesInitializer"/> |
| 15 | <classpathVariableInitializer |
| 16 | class="org.eclipse.wst.jsdt.core.tests.model.VariablesInitializer" |
| 17 | deprecated="Test deprecated flag" |
| 18 | variable="TEST_DEPRECATED"> |
| 19 | </classpathVariableInitializer> |
| 20 | <classpathVariableInitializer |
| 21 | class="org.eclipse.wst.jsdt.core.tests.model.VariablesInitializer" |
| 22 | readOnly="true" |
| 23 | variable="TEST_READ_ONLY"> |
| 24 | </classpathVariableInitializer> |
| 25 | <classpathVariableInitializer |
| 26 | class="org.eclipse.wst.jsdt.core.tests.model.VariablesInitializer" |
| 27 | deprecated="A deprecated and read-only initializer" |
| 28 | readOnly="true" |
| 29 | variable="TEST_DEPRECATED_READ_ONLY"> |
| 30 | </classpathVariableInitializer> |
| 31 | </extension> |
| 32 | |
| 33 | <!-- Classpath container initializer --> |
| 34 | <extension point = "org.eclipse.wst.jsdt.core.classpathContainerInitializer"> |
| 35 | <classpathContainerInitializer |
| 36 | id="org.eclipse.wst.jsdt.core.tests.model.TEST_CONTAINER" |
| 37 | class="org.eclipse.wst.jsdt.core.tests.model.ContainerInitializer"/> |
| 38 | </extension> |
| 39 | |
| 40 | <!-- Extra Java-like file extensions --> |
| 41 | <extension point="org.eclipse.core.runtime.contentTypes"> |
| 42 | <file-association |
| 43 | content-type="org.eclipse.wst.jsdt.core.javaSource" |
| 44 | file-extensions="foo,bar"/> |
| 45 | </extension> |
| 46 | |
| 47 | <!-- Repository provider --> |
| 48 | <extension point="org.eclipse.team.core.repository"> |
| 49 | <repository |
| 50 | id="org.eclipse.wst.jsdt.core.tests.model.pessimisticnature" |
| 51 | class="org.eclipse.wst.jsdt.core.tests.model.TestPessimisticProvider"> |
| 52 | </repository>; |
| 53 | </extension> |
| 54 | |
| 55 | <!-- Compilation participant --> |
| 56 | <extension point="org.eclipse.wst.jsdt.core.compilationParticipant"> |
| 57 | <compilationParticipant |
| 58 | class="org.eclipse.wst.jsdt.core.tests.model.TestCompilationParticipant" |
| 59 | createsProblems="true" |
| 60 | id="org.eclipse.wst.jsdt.core.tests.model.compilationparticipant" |
| 61 | requiredSourceLevel="1.4" |
| 62 | modifiesEnvironment="true"> |
| 63 | <requires id="non.existing"/> |
| 64 | </compilationParticipant> |
| 65 | </extension> |
| 66 | |
| 67 | </plugin> |