Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d765219773c5ff7fda0543fefb214810635bb13a (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.3"?>
<!--
	<copyright>
	
	Copyright (c) 2004 - 2007 Eike Stepper, Germany.
	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:
	  Eike Stepper - Initial API and implementation
	
	</copyright>
-->

<plugin>

   <extension
         point="org.eclipse.ui.views">
      <category
            id="org.eclipse.debug.ui"
            name="Debug">
      </category>
      <view
            name="Remote Traces"
            icon="icons/text.gif"
            category="org.eclipse.debug.ui"
            class="org.eclipse.net4j.internal.debug.views.RemoteTraceView"
            id="org.eclipse.net4j.debug.RemoteTraceView">
      </view>
   </extension>
   
</plugin>

Back to the top