source: java/FramclipsePlugin/plugin.xml @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain
File size: 4.2 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<?eclipse version="3.2"?>
3<plugin>
4   <extension
5         point="org.eclipse.ui.editors">
6      <editor
7            name="Framclipse Framscript Editor"
8            extensions="script"
9            icon="src/main/resources/frams.gif"
10            contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
11            class="com.framsticks.framclipse.editors.FramscriptEditor"
12            id="com.framsticks.framclipse.editors.FramscriptEditor">
13      </editor>
14   </extension>
15   
16   <extension
17         point="org.eclipse.ui.editors">
18      <editor
19            name="Framclipse Neuro Editor"
20            extensions="neuro"
21            icon="src/main/resources/frams.gif"
22            contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
23            class="com.framsticks.framclipse.editors.NeuroEditor"
24            id="com.framsticks.framclipse.editors.NeuroEditor">
25      </editor>
26   </extension>
27   
28   <extension
29         point="org.eclipse.ui.editors">
30      <editor
31            name="Framclipse Expdef Editor"
32            extensions="expdef"
33            icon="src/main/resources/frams.gif"
34            contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
35            class="com.framsticks.framclipse.editors.ExpdefEditor"
36            id="com.framsticks.framclipse.editors.ExpdefEditor">
37      </editor>
38   </extension>
39   
40   <extension
41         point="org.eclipse.ui.editors">
42      <editor
43            name="Framclipse Style Editor"
44            extensions="style"
45            icon="src/main/resources/frams.gif"
46            contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
47            class="com.framsticks.framclipse.editors.StyleEditor"
48            id="com.framsticks.framclipse.editors.StyleEditor">
49      </editor>
50   </extension>
51   
52   <extension
53         point="org.eclipse.ui.editors">
54      <editor
55            name="Framclipse Show Editor"
56            extensions="show"
57            icon="src/main/resources/frams.gif"
58            contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
59            class="com.framsticks.framclipse.editors.ShowEditor"
60            id="com.framsticks.framclipse.editors.ShowEditor">
61      </editor>
62   </extension>
63   
64   <!-- partitioning -->
65   
66   <extension
67         id="com.framsticks.framclipse.editors.ExpdefDocumentSetupParticipant"
68         name="Expdef Document Setup"
69         point="org.eclipse.core.filebuffers.documentSetup">
70      <participant
71            extensions="expdef"
72            class="com.framsticks.framclipse.editors.configuration.ExpdefDocumentSetupParticipant">
73      </participant>
74   </extension>
75   
76   <extension
77         id="com.framsticks.framclipse.editors.FramscriptDocumentSetupParticipant"
78         name="Framscript Document Setup"
79         point="org.eclipse.core.filebuffers.documentSetup">
80      <participant
81            extensions="script"
82            class="com.framsticks.framclipse.editors.configuration.FramscriptDocumentSetupParticipant">
83      </participant>
84   </extension>
85   
86   <extension
87         id="com.framsticks.framclipse.editors.NeuroDocumentSetupParticipant"
88         name="Neuro Document Setup"
89         point="org.eclipse.core.filebuffers.documentSetup">
90      <participant
91            extensions="neuro"
92            class="com.framsticks.framclipse.editors.configuration.NeuroDocumentSetupParticipant">
93      </participant>
94   </extension>
95   
96   <extension
97         id="com.framsticks.framclipse.editors.ShowDocumentSetupParticipant"
98         name="Show Document Setup"
99         point="org.eclipse.core.filebuffers.documentSetup">
100      <participant
101            extensions="show"
102            class="com.framsticks.framclipse.editors.configuration.ShowDocumentSetupParticipant">
103      </participant>
104   </extension>
105   
106   <extension
107         id="com.framsticks.framclipse.editors.StyleDocumentSetupParticipant"
108         name="Style Document Setup"
109         point="org.eclipse.core.filebuffers.documentSetup">
110      <participant
111            extensions="style"
112            class="com.framsticks.framclipse.editors.configuration.StyleDocumentSetupParticipant">
113      </participant>
114   </extension>
115</plugin>
Note: See TracBrowser for help on using the repository browser.