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