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