Stephan Herrmann | be6c0ea | 2010-04-01 21:59:30 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Stephan Herrmann | c656def | 2011-10-25 16:30:41 +0000 | [diff] [blame] | 2 | <?eclipse version="3.0"?> |
| 3 | <!-- |
Stephan Herrmann | be6c0ea | 2010-04-01 21:59:30 +0000 | [diff] [blame] | 4 | Copyright (c) 2002, 2009 IBM Corporation and others. |
Stephan Herrmann | a441c70 | 2018-10-14 17:51:04 +0200 | [diff] [blame] | 5 | |
| 6 | This program and the accompanying materials |
| 7 | are made available under the terms of the Eclipse Public License 2.0 |
Stephan Herrmann | be6c0ea | 2010-04-01 21:59:30 +0000 | [diff] [blame] | 8 | which accompanies this distribution, and is available at |
Stephan Herrmann | a441c70 | 2018-10-14 17:51:04 +0200 | [diff] [blame] | 9 | https://www.eclipse.org/legal/epl-2.0/ |
| 10 | |
| 11 | SPDX-License-Identifier: EPL-2.0 |
Stephan Herrmann | be6c0ea | 2010-04-01 21:59:30 +0000 | [diff] [blame] | 12 | |
| 13 | Contributors: |
| 14 | IBM Corporation - initial API and implementation |
| 15 | --> |
| 16 | |
| 17 | <plugin> |
| 18 | <!-- Classpath variable initializer --> |
| 19 | <extension point = "org.eclipse.jdt.core.classpathVariableInitializer"> |
| 20 | <classpathVariableInitializer |
| 21 | variable="TEST_LIB" |
| 22 | class="org.eclipse.jdt.core.tests.model.VariablesInitializer"/> |
| 23 | <classpathVariableInitializer |
| 24 | variable="TEST_SRC" |
| 25 | class="org.eclipse.jdt.core.tests.model.VariablesInitializer"/> |
| 26 | <classpathVariableInitializer |
| 27 | variable="TEST_ROOT" |
| 28 | class="org.eclipse.jdt.core.tests.model.VariablesInitializer"/> |
| 29 | <classpathVariableInitializer |
| 30 | class="org.eclipse.jdt.core.tests.model.VariablesInitializer" |
| 31 | deprecated="%classpathVariableInitializer.deprecated.0" |
| 32 | variable="TEST_DEPRECATED"> |
| 33 | </classpathVariableInitializer> |
| 34 | <classpathVariableInitializer |
| 35 | class="org.eclipse.jdt.core.tests.model.VariablesInitializer" |
| 36 | readOnly="true" |
| 37 | variable="TEST_READ_ONLY"> |
| 38 | </classpathVariableInitializer> |
| 39 | <classpathVariableInitializer |
| 40 | class="org.eclipse.jdt.core.tests.model.VariablesInitializer" |
| 41 | deprecated="%classpathVariableInitializer.deprecated.1" |
| 42 | readOnly="true" |
| 43 | variable="TEST_DEPRECATED_READ_ONLY"> |
| 44 | </classpathVariableInitializer> |
| 45 | </extension> |
| 46 | |
| 47 | <!-- Classpath container initializer --> |
| 48 | <extension point = "org.eclipse.jdt.core.classpathContainerInitializer"> |
| 49 | <classpathContainerInitializer |
| 50 | id="org.eclipse.jdt.core.tests.model.TEST_CONTAINER" |
| 51 | class="org.eclipse.jdt.core.tests.model.ContainerInitializer"/> |
| 52 | </extension> |
| 53 | |
Stephan Herrmann | ae5583a | 2010-09-26 16:41:40 +0000 | [diff] [blame] | 54 | <extension point = "org.eclipse.jdt.core.classpathContainerInitializer"> |
| 55 | <classpathContainerInitializer |
| 56 | id="org.eclipse.jdt.core.tests.model.TEST_EXTERNAL_LIB_CONTAINER" |
| 57 | class="org.eclipse.jdt.core.tests.extensions.TestExternalLibContainerInitializer"/> |
| 58 | </extension> |
| 59 | |
Stephan Herrmann | be6c0ea | 2010-04-01 21:59:30 +0000 | [diff] [blame] | 60 | <!-- Extra Java-like file extensions --> |
| 61 | <extension point="org.eclipse.core.contenttype.contentTypes"> |
| 62 | <file-association |
| 63 | content-type="org.eclipse.jdt.core.javaSource" |
| 64 | file-extensions="foo,bar"/> |
| 65 | </extension> |
| 66 | |
| 67 | <!-- Repository provider --> |
| 68 | <extension point="org.eclipse.team.core.repository"> |
| 69 | <repository |
| 70 | id="org.eclipse.jdt.core.tests.model.pessimisticnature" |
| 71 | class="org.eclipse.jdt.core.tests.model.TestPessimisticProvider"> |
| 72 | </repository>; |
| 73 | </extension> |
| 74 | |
| 75 | <!-- Compilation participant --> |
| 76 | <extension point="org.eclipse.jdt.core.compilationParticipant"> |
| 77 | <compilationParticipant |
| 78 | class="org.eclipse.jdt.core.tests.model.TestCompilationParticipant" |
| 79 | createsProblems="true" |
| 80 | id="org.eclipse.jdt.core.tests.model.compilationparticipant" |
| 81 | requiredSourceLevel="1.4" |
| 82 | modifiesEnvironment="true"> |
| 83 | <requires id="non.existing"/> |
| 84 | </compilationParticipant> |
| 85 | </extension> |
| 86 | <extension |
| 87 | point="org.eclipse.core.filesystem.filesystems"> |
| 88 | <filesystem |
| 89 | scheme="jdt.core.test"> |
| 90 | <run |
| 91 | class="org.eclipse.jdt.core.tests.model.TestFileSystem"> |
| 92 | </run> |
| 93 | </filesystem> |
| 94 | </extension> |
| 95 | |
| 96 | </plugin> |