Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3b0f7a53c99435dec9547d24e147e861f416648a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<!--
    Copyright (c) 2007, 2014 IBM Corporation and others.
    All rights reserved. This program and the accompanying materials
    are made available under the terms of the Eclipse Public License v1.0
    which accompanies this distribution, and is available at
    http://www.eclipse.org/legal/epl-v10.html
   
    Contributors:
        IBM Corporation - initial API and implementation
 -->

<plugin>
   <extension-point id="authenticator" name="Authenticator" schema="schema/authenticator.exsd"/>
   <extension
         point="org.eclipse.equinox.preferences.preferences">
      <initializer
            class="org.eclipse.core.internal.net.PreferenceInitializer">
      </initializer>
      <modifier
            class="org.eclipse.core.internal.net.PreferenceModifyListener">
      </modifier>
   </extension>
   <extension
         point="org.eclipse.ui.trace.traceComponents">
      <component
            id="org.eclipse.core.net.trace"
            label="%TRACE_COMPONENT_LABEL">
         <bundle
               consumed="false"
               name="org.eclipse.core.net">
         </bundle>
      </component>
   </extension>
</plugin>

Back to the top