Initial commit
This commit is contained in:
@@ -0,0 +1 @@
|
||||
org.eclipse.jdt.debug/debug=true
|
||||
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>About</title>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
|
||||
</head>
|
||||
<body lang="EN-US">
|
||||
<h2>About This Content</h2>
|
||||
|
||||
<p>20th June, 2002</p>
|
||||
<h3>License</h3>
|
||||
<p>Eclipse.org makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the
|
||||
Common Public License Version 1.0 ("CPL"). A copy of the CPL is available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>.
|
||||
For purposes of the CPL, "Program" will mean the Content.</p>
|
||||
|
||||
<h3>Contributions</h3>
|
||||
|
||||
<p>If this Content is licensed to you under the terms and conditions of the CPL, any Contributions, as defined in the CPL, uploaded, submitted, or otherwise
|
||||
made available to Eclipse.org, members of Eclipse.org and/or the host of Eclipse.org web site, by you that relate to such
|
||||
Content are provided under the terms and conditions of the CPL and can be made available to others under the terms of the CPL.</p>
|
||||
|
||||
<p>If this Content is licensed to you under license terms and conditions other than the CPL ("Other License"), any modifications, enhancements and/or
|
||||
other code and/or documentation ("Modifications") uploaded, submitted, or otherwise made available to Eclipse.org, members of Eclipse.org and/or the
|
||||
host of Eclipse.org, by you that relate to such Content are provided under terms and conditions of the Other License and can be made available
|
||||
to others under the terms of the Other License. In addition, with regard to Modifications for which you are the copyright holder, you are also
|
||||
providing the Modifications under the terms and conditions of the CPL and such Modifications can be made available to others under the terms of
|
||||
the CPL.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
BIN
TBE/Eclipse/eclipse/plugins/org.eclipse.jdt.debug_3.0.1/jdi.jar
Normal file
BIN
TBE/Eclipse/eclipse/plugins/org.eclipse.jdt.debug_3.0.1/jdi.jar
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,19 @@
|
||||
###############################################################################
|
||||
# Copyright (c) 2000, 2003 IBM Corporation and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Common Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/cpl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# IBM Corporation - initial API and implementation
|
||||
###############################################################################
|
||||
|
||||
|
||||
pluginName=JDI Debug Model
|
||||
providerName=Eclipse.org
|
||||
|
||||
descriptionCollection=Array
|
||||
descriptionMap=Map Entries
|
||||
descriptionMapEntry=Key and Value
|
||||
descriptionSWTComposite=Children
|
||||
@@ -0,0 +1,293 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.0"?>
|
||||
<plugin
|
||||
id="org.eclipse.jdt.debug"
|
||||
name="%pluginName"
|
||||
version="3.0.1"
|
||||
provider-name="%providerName"
|
||||
class="org.eclipse.jdt.internal.debug.core.JDIDebugPlugin">
|
||||
|
||||
<runtime>
|
||||
<library name="jdi.jar">
|
||||
<export name="*"/>
|
||||
</library>
|
||||
<library name="jdimodel.jar">
|
||||
<export name="*"/>
|
||||
</library>
|
||||
<library name="tools.jar">
|
||||
<export name="*"/>
|
||||
</library>
|
||||
</runtime>
|
||||
<requires>
|
||||
<import plugin="org.eclipse.core.resources"/>
|
||||
<import plugin="org.eclipse.debug.core"/>
|
||||
<import plugin="org.eclipse.jdt.core"/>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
</requires>
|
||||
|
||||
|
||||
<!-- Not to be extended com.sun.tools.jdi.VirtualMachineManagerImpl or org.eclipse.jdi.internal.VirtualMachineManagerImpl -->
|
||||
<extension-point id="jdiclient" name="org.eclipse.jdi.internal.VirtualMachineManagerImpl" schema="schema/jdiclient.exsd"/>
|
||||
|
||||
<!-- Extensions -->
|
||||
<extension
|
||||
point="org.eclipse.debug.core.breakpoints">
|
||||
<breakpoint
|
||||
markerType="org.eclipse.jdt.debug.javaLineBreakpointMarker"
|
||||
class="org.eclipse.jdt.internal.debug.core.breakpoints.JavaLineBreakpoint"
|
||||
id="javaLineBreakpoint">
|
||||
</breakpoint>
|
||||
<breakpoint
|
||||
markerType="org.eclipse.jdt.debug.javaClassPrepareBreakpointMarker"
|
||||
class="org.eclipse.jdt.internal.debug.core.breakpoints.JavaClassPrepareBreakpoint"
|
||||
id="javaClassPrepareBreakpoint">
|
||||
</breakpoint>
|
||||
<breakpoint
|
||||
markerType="org.eclipse.jdt.debug.javaPatternBreakpointMarker"
|
||||
class="org.eclipse.jdt.internal.debug.core.breakpoints.JavaPatternBreakpoint"
|
||||
id="javaPatternBreakpoint">
|
||||
</breakpoint>
|
||||
<breakpoint
|
||||
markerType="org.eclipse.jdt.debug.javaTargetPatternBreakpointMarker"
|
||||
class="org.eclipse.jdt.internal.debug.core.breakpoints.JavaTargetPatternBreakpoint"
|
||||
id="javaTargetPatternBreakpoint">
|
||||
</breakpoint>
|
||||
<breakpoint
|
||||
markerType="org.eclipse.jdt.debug.javaExceptionBreakpointMarker"
|
||||
class="org.eclipse.jdt.internal.debug.core.breakpoints.JavaExceptionBreakpoint"
|
||||
id="javaExceptionBreakpoint">
|
||||
</breakpoint>
|
||||
<breakpoint
|
||||
markerType="org.eclipse.jdt.debug.javaWatchpointMarker"
|
||||
class="org.eclipse.jdt.internal.debug.core.breakpoints.JavaWatchpoint"
|
||||
id="javaWatchpoint">
|
||||
</breakpoint>
|
||||
<breakpoint
|
||||
markerType="org.eclipse.jdt.debug.javaMethodBreakpointMarker"
|
||||
class="org.eclipse.jdt.internal.debug.core.breakpoints.JavaMethodBreakpoint"
|
||||
id="javaMethodBreakpoint">
|
||||
</breakpoint>
|
||||
<breakpoint
|
||||
markerType="org.eclipse.jdt.debug.javaMethodEntryBreakpointMarker"
|
||||
class="org.eclipse.jdt.internal.debug.core.breakpoints.JavaMethodEntryBreakpoint"
|
||||
id="javaMethodEntryBreakpoint">
|
||||
</breakpoint>
|
||||
<breakpoint
|
||||
markerType="org.eclipse.jdt.debug.javaStratumLineBreakpointMarker"
|
||||
class="org.eclipse.jdt.internal.debug.core.breakpoints.JavaStratumLineBreakpoint"
|
||||
id="javaStratumLineBreakpointMarker">
|
||||
</breakpoint>
|
||||
</extension>
|
||||
<extension
|
||||
id="javaBreakpointMarker"
|
||||
point="org.eclipse.core.resources.markers">
|
||||
<super
|
||||
type="org.eclipse.debug.core.breakpointMarker">
|
||||
</super>
|
||||
</extension>
|
||||
<extension
|
||||
id="javaClassPrepareBreakpointMarker"
|
||||
point="org.eclipse.core.resources.markers">
|
||||
<super
|
||||
type="org.eclipse.jdt.debug.javaBreakpointMarker">
|
||||
</super>
|
||||
<persistent
|
||||
value="true">
|
||||
</persistent>
|
||||
</extension>
|
||||
<extension
|
||||
id="commonJavaLineBreakpointMarker"
|
||||
point="org.eclipse.core.resources.markers">
|
||||
<super
|
||||
type="org.eclipse.jdt.debug.javaBreakpointMarker">
|
||||
</super>
|
||||
<super
|
||||
type="org.eclipse.debug.core.lineBreakpointMarker">
|
||||
</super>
|
||||
<persistent
|
||||
value="true">
|
||||
</persistent>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.typeName">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.installCount">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.hitCount">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.expired">
|
||||
</attribute>
|
||||
</extension>
|
||||
<extension
|
||||
id="javaLineBreakpointMarker"
|
||||
point="org.eclipse.core.resources.markers">
|
||||
<super
|
||||
type="org.eclipse.jdt.debug.commonJavaLineBreakpointMarker">
|
||||
</super>
|
||||
<persistent
|
||||
value="true">
|
||||
</persistent>
|
||||
</extension>
|
||||
<extension
|
||||
id="javaPatternBreakpointMarker"
|
||||
point="org.eclipse.core.resources.markers">
|
||||
<super
|
||||
type="org.eclipse.jdt.debug.commonJavaLineBreakpointMarker">
|
||||
</super>
|
||||
<persistent
|
||||
value="true">
|
||||
</persistent>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.pattern">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.sourceName">
|
||||
</attribute>
|
||||
</extension>
|
||||
<extension
|
||||
id="javaTargetPatternBreakpointMarker"
|
||||
point="org.eclipse.core.resources.markers">
|
||||
<super
|
||||
type="org.eclipse.jdt.debug.commonJavaLineBreakpointMarker">
|
||||
</super>
|
||||
<persistent
|
||||
value="true">
|
||||
</persistent>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.sourceName">
|
||||
</attribute>
|
||||
</extension>
|
||||
<extension
|
||||
id="javaExceptionBreakpointMarker"
|
||||
point="org.eclipse.core.resources.markers">
|
||||
<super
|
||||
type="org.eclipse.jdt.debug.javaBreakpointMarker">
|
||||
</super>
|
||||
<persistent
|
||||
value="true">
|
||||
</persistent>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.caught">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.uncaught">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.checked">
|
||||
</attribute>
|
||||
</extension>
|
||||
<extension
|
||||
id="javaWatchpointMarker"
|
||||
point="org.eclipse.core.resources.markers">
|
||||
<super
|
||||
type="org.eclipse.jdt.debug.javaLineBreakpointMarker">
|
||||
</super>
|
||||
<persistent
|
||||
value="true">
|
||||
</persistent>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.fieldName">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.access">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.modification">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.auto_disabled">
|
||||
</attribute>
|
||||
</extension>
|
||||
<extension
|
||||
id="javaMethodBreakpointMarker"
|
||||
point="org.eclipse.core.resources.markers">
|
||||
<super
|
||||
type="org.eclipse.jdt.debug.javaLineBreakpointMarker">
|
||||
</super>
|
||||
<persistent
|
||||
value="true">
|
||||
</persistent>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.methodName">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.methodSignature">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.entry">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.exit">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.native">
|
||||
</attribute>
|
||||
</extension>
|
||||
<extension
|
||||
id="javaMethodEntryBreakpointMarker"
|
||||
point="org.eclipse.core.resources.markers">
|
||||
<super
|
||||
type="org.eclipse.jdt.debug.javaLineBreakpointMarker">
|
||||
</super>
|
||||
<persistent
|
||||
value="true">
|
||||
</persistent>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.methodName">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.methodSignature">
|
||||
</attribute>
|
||||
</extension>
|
||||
<extension
|
||||
id="javaStratumLineBreakpointMarker"
|
||||
point="org.eclipse.core.resources.markers">
|
||||
<super
|
||||
type="org.eclipse.jdt.debug.commonJavaLineBreakpointMarker">
|
||||
</super>
|
||||
<persistent
|
||||
value="true">
|
||||
</persistent>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.stratum">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.sourceName">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.sourcePath">
|
||||
</attribute>
|
||||
<attribute
|
||||
name="org.eclipse.jdt.debug.core.pattern">
|
||||
</attribute>
|
||||
</extension>
|
||||
|
||||
<extension point="org.eclipse.debug.core.logicalStructureTypes">
|
||||
<logicalStructureType
|
||||
modelIdentifier="org.eclipse.jdt.debug"
|
||||
description="%descriptionMap"
|
||||
class="org.eclipse.jdt.internal.debug.core.logicalstructures.MapStructureType"
|
||||
id="java.util.Map">
|
||||
</logicalStructureType>
|
||||
<logicalStructureType
|
||||
modelIdentifier="org.eclipse.jdt.debug"
|
||||
description="%descriptionCollection"
|
||||
class="org.eclipse.jdt.internal.debug.core.logicalstructures.CollectionStructureType"
|
||||
id="java.util.Collection">
|
||||
</logicalStructureType>
|
||||
<logicalStructureType
|
||||
modelIdentifier="org.eclipse.jdt.debug"
|
||||
description="%descriptionMapEntry"
|
||||
class="org.eclipse.jdt.internal.debug.core.logicalstructures.MapEntryStructureType"
|
||||
id="java.util.MapEntry">
|
||||
</logicalStructureType>
|
||||
<logicalStructureType
|
||||
modelIdentifier="org.eclipse.jdt.debug"
|
||||
description="%descriptionSWTComposite"
|
||||
class="org.eclipse.jdt.internal.debug.core.logicalstructures.CompositeStructureType"
|
||||
id="org.eclipse.swt.widgets.Composite">
|
||||
</logicalStructureType>
|
||||
</extension>
|
||||
</plugin>
|
||||
Reference in New Issue
Block a user