]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.debug.graphical/plugin.xml
Remove unnecessary System.out print from DynamicExperimentThread
[simantics/platform.git] / bundles / org.simantics.debug.graphical / plugin.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <?eclipse version="3.4"?>
3 <plugin>
4    <extension
5          point="org.eclipse.ui.menus">
6       <menuContribution
7             locationURI="menu:org.eclipse.ui.main.menu?after=edit">
8          <menu
9                id="org.simantics.debug"
10                label="Debug">
11             <command
12                   commandId="org.simantics.debug.new"
13                   icon="icons/bug-icon4.png"
14                   label="New graph debugger"
15                   style="push">
16             </command>
17             <visibleWhen
18                   checkEnabled="false">
19                <systemTest
20                      property="org.simantics.debug.graphical"
21                      value="true">
22                </systemTest>
23             </visibleWhen>
24          </menu>
25       </menuContribution>
26    </extension>
27    <extension
28          point="org.eclipse.ui.commands">
29       <command
30             id="org.simantics.debug.new"
31             name="New Graph Debugger">
32       </command>
33    </extension>
34    <extension
35          point="org.eclipse.ui.handlers">
36       <handler
37             class="org.simantics.debug.graphical.NewGraphDebugger"
38             commandId="org.simantics.debug.new">
39       </handler>
40    </extension>
41
42 </plugin>