1<?xml version="1.0" encoding="UTF-8"?>
2<?eclipse version="3.4"?>
3<plugin>
4   <extension
5         id="com.android.ide.eclipse.monitor.Application"
6         point="org.eclipse.core.runtime.applications">
7      <application
8            cardinality="singleton-global"
9            thread="main"
10            visible="true">
11         <run
12               class="com.android.ide.eclipse.monitor.MonitorApplication">
13         </run>
14      </application>
15   </extension>
16   <extension
17         id="com.android.ide.eclipse.monitor.product"
18         point="org.eclipse.core.runtime.products">
19      <product
20            application="com.android.ide.eclipse.monitor.Application"
21            name="Android Device Monitor">
22         <property
23               name="appName"
24               value="Monitor">
25         </property>
26         <property
27               name="preferenceCustomization"
28               value="plugin_customization.ini">
29         </property>
30         <property
31               name="windowImages"
32               value="images/ddms-16.png,images/ddms-32.png,images/ddms-128.png">
33         </property>
34         <property
35               name="aboutImage"
36               value="images/ddms-128.png">
37         </property>
38         <property
39               name="aboutText"
40               value="%aboutText">
41         </property>
42
43      </product>
44   </extension>
45   <extension
46         point="com.android.ide.eclipse.ddms.toolsLocator">
47      <locator
48            class="com.android.ide.eclipse.monitor.ToolsLocator">
49      </locator>
50   </extension>
51   <extension
52         point="org.eclipse.ui.commands">
53      <command
54            defaultHandler="com.android.ide.eclipse.monitor.handlers.StaticPortConfigHandler"
55            id="com.android.monitor.commands.StaticPortConfiguration"
56            name="Static Port Configuration">
57      </command>
58   </extension>
59   <extension
60         point="org.eclipse.ui.menus">
61      <menuContribution
62            allPopups="false"
63            locationURI="menu:file?after=additions">
64         <command
65               commandId="com.android.monitor.commands.StaticPortConfiguration"
66               label="Static Port Configuration"
67               style="push"
68               tooltip="Configure static debug ports">
69         </command>
70      </menuContribution>
71      <menuContribution
72            allPopups="false"
73            locationURI="menu:window?after=additions">
74         <command
75               commandId="org.eclipse.ui.views.showView"
76               style="push">
77         </command>
78      </menuContribution>
79   </extension>
80   <extension
81         point="org.eclipse.ui.preferencePages">
82      <page
83            class="com.android.ide.eclipse.monitor.AndroidPreferencePage"
84            id="com.android.ide.eclipse.preferences.main"
85            name="Android">
86      </page>
87   </extension>
88   <extension
89         point="org.eclipse.ui.startup">
90      <startup
91            class="com.android.ide.eclipse.monitor.MonitorStartup">
92      </startup>
93   </extension>
94   <extension
95         point="org.eclipse.ui.actionSets">
96      <actionSet
97            id="monitor.actionSet.AvdSdkManager"
98            label="Android SDK and AVD Manager"
99            visible="true">
100            <action
101                class="com.android.ide.eclipse.monitor.actions.AvdManagerAction"
102                icon="images/avd_manager.png"
103                id="com.android.ide.eclipse.monitor.avdmanager"
104                label="Android Virtual Device Manager"
105                menubarPath="Window/additions"
106                style="push"
107                toolbarPath="android_project">
108            </action>
109            <action
110                class="com.android.ide.eclipse.monitor.actions.SdkManagerAction"
111                icon="images/sdk_manager.png"
112                id="com.android.ide.eclipse.monitor.sdkmanager"
113                label="Android SDK Manager"
114                menubarPath="Window/additions"
115                style="push"
116                toolbarPath="android_project">
117            </action>
118      </actionSet>
119   </extension>
120   <extension
121         id="product"
122         point="org.eclipse.core.runtime.products">
123      <product
124            application="com.android.ide.eclipse.monitor.Application"
125            name="monitor">
126         <property
127               name="appName"
128               value="monitor">
129         </property>
130      </product>
131   </extension>
132</plugin>
133