Initial commit
This commit is contained in:
@@ -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>
|
||||
@@ -0,0 +1,7 @@
|
||||
/* AUTOMATICALLY GENERATED ON Tue Apr 16 17:20:59 EDT 2002*/
|
||||
/* DO NOT EDIT */
|
||||
|
||||
grant {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,34 @@
|
||||
###############################################################################
|
||||
# Copyright (c) 2000, 2004 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
|
||||
###############################################################################
|
||||
|
||||
localJavaApplication = Java Application
|
||||
pluginName = Java Development Tools Launching Support
|
||||
remoteJavaApplication = Remote Java Application
|
||||
vmConnectors = VM Connectors
|
||||
vmInstallTypes = VM Install Types
|
||||
runtimeClasspathEntryResolvers = Runtime Classpath Entry Resolvers
|
||||
runtimeClasspathEntries = Runtime Classpath Entries
|
||||
classpathProviders = Runtime Classpath Providers
|
||||
javaSourceLocatorName = Basic Java Source Locator
|
||||
|
||||
providerName=Eclipse.org
|
||||
appletLabel= Java Applet
|
||||
|
||||
javaSourceLookupDirector.name= Java Source Locator
|
||||
|
||||
javaProjectSourceContainerType.name= Java Project
|
||||
javaProjectSourceContainerType.description = Source folders in a Java Project
|
||||
packageFragmentRootSourceContainerType.name= Package Fragment Root
|
||||
packageFragmentRootSourceContainerType.description= Java source folder or source attached to an archive
|
||||
classpathVariableSourceContainerType.name= Java Classpath Variable
|
||||
classpathVariableSourceContainerType.description= Workspace folder, local directory, or archive referenced by a variable path
|
||||
classpathContainerSourceContainerType.name= Java Library
|
||||
classpathContainerSourceContainerType.description= A collection of binary archives with attached source
|
||||
@@ -0,0 +1,187 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.0"?>
|
||||
<plugin
|
||||
id="org.eclipse.jdt.launching"
|
||||
name="%pluginName"
|
||||
version="3.0.1"
|
||||
provider-name="%providerName"
|
||||
class="org.eclipse.jdt.internal.launching.LaunchingPlugin">
|
||||
|
||||
<runtime>
|
||||
<library name="launching.jar">
|
||||
<export name="*"/>
|
||||
</library>
|
||||
</runtime>
|
||||
<requires>
|
||||
<import plugin="org.eclipse.core.resources"/>
|
||||
<import plugin="org.eclipse.jdt.core"/>
|
||||
<import plugin="org.eclipse.debug.core"/>
|
||||
<import plugin="org.eclipse.jdt.debug"/>
|
||||
<import plugin="org.eclipse.core.variables"/>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
</requires>
|
||||
|
||||
|
||||
<!-- Extension point definitions -->
|
||||
<extension-point id="classpathProviders" name="%classpathProviders" schema="schema/classpathProviders.exsd"/>
|
||||
<extension-point id="runtimeClasspathEntryResolvers" name="%runtimeClasspathEntryResolvers" schema="schema/runtimeClasspathEntryResolvers.exsd"/>
|
||||
<extension-point id="runtimeClasspathEntries" name="%runtimeClasspathEntries" schema="schema/runtimeClasspathEntries.exsd"/>
|
||||
<extension-point id="vmConnectors" name="%vmConnectors" schema="schema/vmConnectors.exsd"/>
|
||||
<extension-point id="vmInstallTypes" name="%vmInstallTypes" schema="schema/vmInstallTypes.exsd"/>
|
||||
|
||||
<!-- Extensions -->
|
||||
<extension
|
||||
point="org.eclipse.jdt.launching.vmInstallTypes">
|
||||
<vmInstallType
|
||||
class="org.eclipse.jdt.internal.launching.StandardVMType"
|
||||
id="org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType">
|
||||
</vmInstallType>
|
||||
<vmInstallType
|
||||
class="org.eclipse.jdt.internal.launching.Standard11xVMType"
|
||||
id="org.eclipse.jdt.launching.Standard11xVMType">
|
||||
</vmInstallType>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.debug.core.launchConfigurationTypes">
|
||||
<launchConfigurationType
|
||||
name="%localJavaApplication"
|
||||
delegate="org.eclipse.jdt.internal.launching.JavaLocalApplicationLaunchConfigurationDelegate"
|
||||
modes="run, debug"
|
||||
id="org.eclipse.jdt.launching.localJavaApplication"
|
||||
sourceLocatorId="org.eclipse.jdt.launching.sourceLocator.JavaSourceLookupDirector"
|
||||
sourcePathComputerId="org.eclipse.jdt.launching.sourceLookup.javaSourcePathComputer">
|
||||
</launchConfigurationType>
|
||||
<launchConfigurationType
|
||||
name="%remoteJavaApplication"
|
||||
delegate="org.eclipse.jdt.internal.launching.JavaRemoteApplicationLaunchConfigurationDelegate"
|
||||
modes="debug"
|
||||
id="org.eclipse.jdt.launching.remoteJavaApplication"
|
||||
sourceLocatorId="org.eclipse.jdt.launching.sourceLocator.JavaSourceLookupDirector"
|
||||
sourcePathComputerId="org.eclipse.jdt.launching.sourceLookup.javaSourcePathComputer">
|
||||
</launchConfigurationType>
|
||||
<launchConfigurationType
|
||||
name="%appletLabel"
|
||||
delegate="org.eclipse.jdt.internal.launching.JavaAppletLaunchConfigurationDelegate"
|
||||
modes="run, debug"
|
||||
id="org.eclipse.jdt.launching.javaApplet"
|
||||
sourceLocatorId="org.eclipse.jdt.launching.sourceLocator.JavaSourceLookupDirector"
|
||||
sourcePathComputerId="org.eclipse.jdt.launching.sourceLookup.javaSourcePathComputer">
|
||||
</launchConfigurationType>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.debug.core.sourceLocators">
|
||||
<sourceLocator
|
||||
name="%javaSourceLocatorName"
|
||||
class="org.eclipse.jdt.launching.sourcelookup.JavaSourceLocator"
|
||||
id="org.eclipse.jdt.launching.javaSourceLocator">
|
||||
</sourceLocator>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.jdt.launching.vmConnectors">
|
||||
<vmConnector
|
||||
class="org.eclipse.jdt.internal.launching.SocketAttachConnector"
|
||||
id="org.eclipse.jdt.launching.socketAttachConnector">
|
||||
</vmConnector>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.jdt.core.classpathVariableInitializer">
|
||||
<classpathVariableInitializer
|
||||
variable="JRE_LIB"
|
||||
class="org.eclipse.jdt.internal.launching.JavaClasspathVariablesInitializer">
|
||||
</classpathVariableInitializer>
|
||||
<classpathVariableInitializer
|
||||
variable="JRE_SRC"
|
||||
class="org.eclipse.jdt.internal.launching.JavaClasspathVariablesInitializer">
|
||||
</classpathVariableInitializer>
|
||||
<classpathVariableInitializer
|
||||
variable="JRE_SRCROOT"
|
||||
class="org.eclipse.jdt.internal.launching.JavaClasspathVariablesInitializer">
|
||||
</classpathVariableInitializer>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.jdt.core.classpathContainerInitializer">
|
||||
<classpathContainerInitializer
|
||||
class="org.eclipse.jdt.internal.launching.JREContainerInitializer"
|
||||
id="org.eclipse.jdt.launching.JRE_CONTAINER">
|
||||
</classpathContainerInitializer>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.jdt.launching.runtimeClasspathEntryResolvers">
|
||||
<runtimeClasspathEntryResolver
|
||||
container="org.eclipse.jdt.launching.JRE_CONTAINER"
|
||||
variable="JRE_LIB"
|
||||
class="org.eclipse.jdt.internal.launching.JRERuntimeClasspathEntryResolver"
|
||||
id="org.eclipse.jdt.launching.JRE_RESOLVER">
|
||||
</runtimeClasspathEntryResolver>
|
||||
<runtimeClasspathEntryResolver
|
||||
runtimeClasspathEntryId="org.eclipse.jdt.launching.classpathentry.variableClasspathEntry"
|
||||
class="org.eclipse.jdt.internal.launching.VariableClasspathResolver"
|
||||
id="org.eclipse.jdt.launching.variableClasspathResolver">
|
||||
</runtimeClasspathEntryResolver>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.jdt.launching.runtimeClasspathEntries">
|
||||
<runtimeClasspathEntry
|
||||
id="org.eclipse.jdt.launching.classpathentry.defaultClasspath"
|
||||
class="org.eclipse.jdt.internal.launching.DefaultProjectClasspathEntry">
|
||||
</runtimeClasspathEntry>
|
||||
<runtimeClasspathEntry
|
||||
id="org.eclipse.jdt.launching.classpathentry.variableClasspathEntry"
|
||||
class="org.eclipse.jdt.internal.launching.VariableClasspathEntry">
|
||||
</runtimeClasspathEntry>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.debug.core.launchConfigurationComparators">
|
||||
<launchConfigurationComparator
|
||||
attribute="org.eclipse.jdt.launching.CLASSPATH"
|
||||
class="org.eclipse.jdt.internal.launching.RuntimeClasspathEntryListComparator"
|
||||
id="org.eclipse.jdt.launching.classpathComparator">
|
||||
</launchConfigurationComparator>
|
||||
<launchConfigurationComparator
|
||||
attribute="org.eclipse.jdt.launching.SOURCE_PATH"
|
||||
class="org.eclipse.jdt.internal.launching.RuntimeClasspathEntryListComparator"
|
||||
id="org.eclipse.jdt.launching.sourcepathComparator">
|
||||
</launchConfigurationComparator>
|
||||
</extension>
|
||||
|
||||
<!-- Source Lookup -->
|
||||
<extension point="org.eclipse.debug.core.sourceContainerTypes">
|
||||
<sourceContainerType
|
||||
id="org.eclipse.jdt.launching.sourceContainer.javaProject"
|
||||
name="%javaProjectSourceContainerType.name"
|
||||
description="%javaProjectSourceContainerType.description"
|
||||
class="org.eclipse.jdt.internal.launching.JavaProjectSourceContainerTypeDelegate">
|
||||
</sourceContainerType>
|
||||
<sourceContainerType
|
||||
id="org.eclipse.jdt.launching.sourceContainer.packageFragmentRoot"
|
||||
name="%packageFragmentRootSourceContainerType.name"
|
||||
description="%packageFragmentRootSourceContainerType.description"
|
||||
class="org.eclipse.jdt.internal.launching.PackageFragmentRootSourceContainerTypeDelegate">
|
||||
</sourceContainerType>
|
||||
<sourceContainerType
|
||||
id="org.eclipse.jdt.launching.sourceContainer.classpathVariable"
|
||||
name="%classpathVariableSourceContainerType.name"
|
||||
description="%classpathVariableSourceContainerType.description"
|
||||
class="org.eclipse.jdt.internal.launching.ClasspathVariableSourceContainerTypeDelegate">
|
||||
</sourceContainerType>
|
||||
<sourceContainerType
|
||||
id="org.eclipse.jdt.launching.sourceContainer.classpathContainer"
|
||||
name="%classpathContainerSourceContainerType.name"
|
||||
description="%classpathContainerSourceContainerType.description"
|
||||
class="org.eclipse.jdt.internal.launching.ClasspathContainerSourceContainerTypeDelegate">
|
||||
</sourceContainerType>
|
||||
</extension>
|
||||
<extension point="org.eclipse.debug.core.sourcePathComputers">
|
||||
<sourcePathComputer
|
||||
id="org.eclipse.jdt.launching.sourceLookup.javaSourcePathComputer"
|
||||
class="org.eclipse.jdt.launching.sourcelookup.containers.JavaSourcePathComputer">
|
||||
</sourcePathComputer>
|
||||
</extension>
|
||||
<extension point="org.eclipse.debug.core.sourceLocators">
|
||||
<sourceLocator
|
||||
id="org.eclipse.jdt.launching.sourceLocator.JavaSourceLookupDirector"
|
||||
class="org.eclipse.jdt.internal.launching.JavaSourceLookupDirector"
|
||||
name="%javaSourceLookupDirector.name">
|
||||
</sourceLocator>
|
||||
</extension>
|
||||
</plugin>
|
||||
Reference in New Issue
Block a user