Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0179c9a7b9a5b26ea04aaf346e992369a1b292fa (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
<!-- Register IDocumentSetupParticipants against names and extensions that won't interfere with normal operation. -->

<!-- IDocumentSetupParticipant -->
   <extension point="org.eclipse.core.filebuffers.documentSetup">
      <participant
            class="org.eclipse.core.filebuffers.tests.MockDocumentSetupParticipants$TestDSP1"
            extensions="111foo">
      </participant>
   </extension>
   <extension point="org.eclipse.core.filebuffers.documentSetup">
      <participant
            class="org.eclipse.core.filebuffers.tests.MockDocumentSetupParticipants$TestDSP2"
            fileNames="111fooname,111fooname.111foo">
      </participant>
   </extension>  
   <extension point="org.eclipse.core.filebuffers.documentSetup">
      <participant
            class="org.eclipse.core.filebuffers.tests.MockDocumentSetupParticipants$TestDSP3"
            extensions="111foo"
            fileNames="111fooname,111fooname.111foo">
      </participant>
   </extension>
   
   <!-- IDocumentSetupParticipantExtension ignoring hint -->
   <extension point="org.eclipse.core.filebuffers.documentSetup">
      <participant
            class="org.eclipse.core.filebuffers.tests.MockDocumentSetupParticipants$TestDSP4"
            extensions="222foo">
      </participant>
   </extension>
   <extension point="org.eclipse.core.filebuffers.documentSetup">
      <participant
            class="org.eclipse.core.filebuffers.tests.MockDocumentSetupParticipants$TestDSP5"
            fileNames="222fooname,222fooname.222foo">
      </participant>
   </extension>
   <extension point="org.eclipse.core.filebuffers.documentSetup">
      <participant
            class="org.eclipse.core.filebuffers.tests.MockDocumentSetupParticipants$TestDSP6"
            extensions="222foo"
            fileNames="222fooname,222fooname.222foo">
      </participant>
   </extension>
   
   <!-- IDocumentSetupPartcipantExtension selectively picking up hint -->
   <extension point="org.eclipse.core.filebuffers.documentSetup">
      <participant
            class="org.eclipse.core.filebuffers.tests.MockDocumentSetupParticipants$TestDSP7"
            extensions="333foo"
            fileNames="333fooname,333fooname.333foo">
      </participant>
   </extension>
   <extension point="org.eclipse.core.filebuffers.documentSetup">
      <participant
            class="org.eclipse.core.filebuffers.tests.MockDocumentSetupParticipants$TestDSP8"
            extensions="444foo"
            fileNames="444fooname,444fooname.444foo">
      </participant>
   </extension>
   <extension point="org.eclipse.core.filebuffers.documentSetup">
      <participant
            class="org.eclipse.core.filebuffers.tests.MockDocumentSetupParticipants$TestDSP9"
            extensions="555foo"
            fileNames="555fooname,555fooname.555foo">
      </participant>
   </extension>
</plugin>

Back to the top