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,24 @@
|
||||
###############################################################################
|
||||
# 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
|
||||
###############################################################################
|
||||
# about.properties
|
||||
# contains externalized strings for about.ini
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# fill-ins are supplied by about.mappings
|
||||
# This file should be translated.
|
||||
|
||||
blurb=Eclipse Java Development Tooling Plug-in Developers Guide\n\
|
||||
\n\
|
||||
Version: {featureVersion}\n\
|
||||
Build id: {0}\n\
|
||||
\n\
|
||||
(c) Copyright IBM Corp. and others 2000, 2004. All rights reserved.\n\
|
||||
Visit http://www.eclipse.org/jdt
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
P.Code {
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,19 @@
|
||||
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<LINK REL="STYLESHEET" HREF="book.css" CHARSET="ISO-8859-1" TYPE="text/css">
|
||||
<title>Legal Notices</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h3>
|
||||
<a NAME="Notices"></a>Notices</h3>
|
||||
<p>
|
||||
The material in this guide is Copyright (c) IBM Corporation and others 2000, 2004.
|
||||
</p>
|
||||
<p>
|
||||
<a href="about.html">Terms and conditions regarding the use of this guide.</a>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,12 @@
|
||||
###############################################################################
|
||||
# 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
|
||||
###############################################################################
|
||||
pluginName=Eclipse JDT Plug-in Developer Guide
|
||||
providerName=Eclipse.org
|
||||
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.0"?>
|
||||
|
||||
<!-- ===================================================== -->
|
||||
<!-- Declare the documentation for the JDT ISV Guide -->
|
||||
<!-- We will declare only one infoset (book) -->
|
||||
<!-- ===================================================== -->
|
||||
|
||||
<plugin
|
||||
name = "%pluginName"
|
||||
id = "org.eclipse.jdt.doc.isv"
|
||||
version = "3.0.1"
|
||||
provider-name = "%providerName">
|
||||
|
||||
|
||||
<!-- ============================================================================= -->
|
||||
<!-- Define primary TOC -->
|
||||
<!-- ============================================================================= -->
|
||||
|
||||
<extension point="org.eclipse.help.toc">
|
||||
<toc file="toc.xml" primary="true" />
|
||||
</extension>
|
||||
|
||||
<!-- ============================================================================= -->
|
||||
<!-- Define TOCs -->
|
||||
<!-- ============================================================================= -->
|
||||
|
||||
<extension point="org.eclipse.help.toc">
|
||||
<toc file="topics_Guide.xml" />
|
||||
<toc file="topics_Reference.xml" />
|
||||
<toc file="topics_Questions.xml" />
|
||||
<toc file="topics_Samples.xml" />
|
||||
</extension>
|
||||
|
||||
</plugin>
|
||||
@@ -0,0 +1,66 @@
|
||||
H6.CaptionFigColumn#header {
|
||||
font-size:16px;
|
||||
display:inline
|
||||
}
|
||||
|
||||
P.Note#copyright {
|
||||
font-size: smaller;
|
||||
font-style: normal;
|
||||
color: #336699;
|
||||
display:inline;
|
||||
margin-top: 3.000000pt;
|
||||
margin-bottom: 11.000000pt;
|
||||
margin-right: 0.000000pt;
|
||||
margin-left: 0.000000pt;
|
||||
}
|
||||
|
||||
P.Code#dtd {
|
||||
color: #800000;
|
||||
margin-top: 0.000000pt;
|
||||
margin-bottom: 0.000000pt;
|
||||
margin-right: 0.000000pt;
|
||||
margin-left: 10.000000pt;
|
||||
}
|
||||
|
||||
P.Code#dtdAttlist {
|
||||
color: #800000;
|
||||
margin-top: 0.000000pt;
|
||||
margin-bottom: 0.000000pt;
|
||||
margin-right: 0.000000pt;
|
||||
margin-left: 20.000000pt;
|
||||
}
|
||||
|
||||
P.Code#tag {
|
||||
color: #000080;
|
||||
display:inline;
|
||||
margin-top: 0.000000pt;
|
||||
margin-bottom: 0.000000pt;
|
||||
margin-right: 0.000000pt;
|
||||
margin-left: 0.000000pt;
|
||||
}
|
||||
|
||||
P.Code#cstring {
|
||||
color: #008000;
|
||||
display:inline;
|
||||
margin-top: 0.000000pt;
|
||||
margin-bottom: 0.000000pt;
|
||||
margin-right: 0.000000pt;
|
||||
margin-left: 0.000000pt;
|
||||
}
|
||||
|
||||
.ConfigMarkup#elementDesc {
|
||||
color: black;
|
||||
margin-top: 0.000000pt;
|
||||
margin-bottom: 0.000000pt;
|
||||
margin-right: 0.000000pt;
|
||||
margin-left: 10.000000pt;
|
||||
}
|
||||
|
||||
.ConfigMarkup#attlistDesc {
|
||||
color: black;
|
||||
margin-top: 0.000000pt;
|
||||
margin-bottom: 0.000000pt;
|
||||
margin-right: 0.000000pt;
|
||||
margin-left: 32.000000pt;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?NLS TYPE="org.eclipse.help.toc"?>
|
||||
<!-- ============================================================================= -->
|
||||
<!-- Define the top level topics -->
|
||||
<!-- ============================================================================= -->
|
||||
|
||||
<toc label="JDT Plug-in Developer Guide">
|
||||
<topic label="Programmer's Guide" href="guide/jdt_int.htm">
|
||||
<link toc="topics_Guide.xml" />
|
||||
</topic>
|
||||
<topic label="Reference">
|
||||
<link toc="topics_Reference.xml" />
|
||||
</topic>
|
||||
<topic label="Examples Guide">
|
||||
<link toc="topics_Samples.xml" />
|
||||
</topic>
|
||||
<topic label="Questions Index" href="questions/index.html">
|
||||
<link toc="topics_Questions.xml" />
|
||||
</topic>
|
||||
<topic label="Legal" href="notices.html"/>
|
||||
</toc>
|
||||
@@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?NLS TYPE="org.eclipse.help.toc"?>
|
||||
<!-- ============================================================================= -->
|
||||
<!-- Define topics for the main guide -->
|
||||
<!-- ============================================================================= -->
|
||||
<toc label="Guide">
|
||||
<topic label="JDT Core" href="guide/jdt_int_core.htm">
|
||||
<topic label="Java model" href="guide/jdt_int_model.htm" />
|
||||
<topic label="Manipulating Java code" href="guide/jdt_api_manip.htm" />
|
||||
<topic label="Setting the Java build path" href="guide/jdt_api_classpath.htm" />
|
||||
<topic label="Compiling Java code" href="guide/jdt_api_compile.htm" />
|
||||
<topic label="Using the Java search engine" href="guide/jdt_api_search.htm" />
|
||||
<topic label="Performing code assist on Java code" href="guide/jdt_api_codeassist.htm" />
|
||||
<topic label="JDT Core options" href="guide/jdt_api_options.htm" />
|
||||
</topic>
|
||||
<topic label="JDT UI" href="guide/jdt_int_ui.htm">
|
||||
<topic label="JavaUI utilities" href="guide/jdt_api_utility.htm">
|
||||
<topic label="Opening a Java editor" href="guide/jdt_api_open_editor.htm" />
|
||||
<topic label="Creating Java specific prompter dialogs" href="guide/jdt_api_prompter.htm" />
|
||||
</topic>
|
||||
<topic label="Presenting Java elements in a JFace viewer" href="guide/jdt_api_render.htm" />
|
||||
<topic label="Java wizard pages" href="guide/jdt_api_wizards.htm" />
|
||||
<topic label="Customizing Java editors" href="guide/jdt_api_editors.htm" />
|
||||
<topic label="Writing Jar files" href="guide/jdt_api_write_jar_file.htm" />
|
||||
</topic>
|
||||
<topic label="JDT Debug" href="guide/jdt_int_debug.htm">
|
||||
<topic label="Running Java code" href="guide/jdt_api_run.htm" />
|
||||
</topic>
|
||||
<topic label="JDT JUnit integration" href="guide/jdt_int_junit.htm">
|
||||
<topic label="Observing JUnit test runs" href="guide/jdt_api_junit.htm" />
|
||||
</topic>
|
||||
</toc>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?NLS TYPE="org.eclipse.help.toc"?>
|
||||
<!-- ============================================================================= -->
|
||||
<!-- Define topics for the questions index -->
|
||||
<!-- ============================================================================= -->
|
||||
<toc label="Questions">
|
||||
</toc>
|
||||
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?NLS TYPE="org.eclipse.help.toc"?>
|
||||
<!-- ============================================================================= -->
|
||||
<!-- Define topics for the references -->
|
||||
<!-- ============================================================================= -->
|
||||
<toc label="Reference">
|
||||
<topic label="API Reference" href="reference/api/overview-summary.html">
|
||||
<topic label="org.eclipse.jdt.core" href="reference/api/org/eclipse/jdt/core/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.core.compiler" href="reference/api/org/eclipse/jdt/core/compiler/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.core.dom" href="reference/api/org/eclipse/jdt/core/dom/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.core.dom.rewrite" href="reference/api/org/eclipse/jdt/core/dom/rewrite/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.core.eval" href="reference/api/org/eclipse/jdt/core/eval/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.core.formatter" href="reference/api/org/eclipse/jdt/core/formatter/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.core.jdom" href="reference/api/org/eclipse/jdt/core/jdom/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.core.util" href="reference/api/org/eclipse/jdt/core/util/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.core.search" href="reference/api/org/eclipse/jdt/core/search/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.debug.core" href="reference/api/org/eclipse/jdt/debug/core/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.debug.eval" href="reference/api/org/eclipse/jdt/debug/eval/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.debug.ui" href="reference/api/org/eclipse/jdt/debug/ui/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.debug.ui.launchConfigurations" href="reference/api/org/eclipse/jdt/debug/ui/launchConfigurations/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.launching" href="reference/api/org/eclipse/jdt/launching/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.launching.sourcelookup" href="reference/api/org/eclipse/jdt/launching/sourcelookup/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.launching.sourcelookup.containers" href="reference/api/org/eclipse/jdt/launching/sourcelookup/containers/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.ui" href="reference/api/org/eclipse/jdt/ui/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.actions" href="reference/api/org/eclipse/jdt/ui/actions/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.jarpackager" href="reference/api/org/eclipse/jdt/ui/jarpackager/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.refactoring" href="reference/api/org/eclipse/jdt/ui/refactoring/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.text" href="reference/api/org/eclipse/jdt/ui/text/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.text.folding" href="reference/api/org/eclipse/jdt/ui/text/folding/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.text.java" href="reference/api/org/eclipse/jdt/ui/text/java/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.text.java.hover" href="reference/api/org/eclipse/jdt/ui/text/java/hover/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.wizards" href="reference/api/org/eclipse/jdt/ui/wizards/package-summary.html"/>
|
||||
<topic label="org.eclipse.jdt.junit" href="reference/api/org/eclipse/jdt/junit/package-summary.html"/>
|
||||
<topic label="org.eclipse.ltk.core.refactoring" href="reference/api/org/eclipse/ltk/core/refactoring/package-summary.html"/>
|
||||
<topic label="org.eclipse.ltk.core.refactoring.participants" href="reference/api/org/eclipse/ltk/core/refactoring/participants/package-summary.html"/>
|
||||
<topic label="org.eclipse.ltk.ui.refactoring" href="reference/api/org/eclipse/ltk/ui/refactoring/package-summary.html"/>
|
||||
</topic>
|
||||
<topic label="Extension Points Reference" href="reference/extension-points/index.html">
|
||||
<topic label="org.eclipse.jdt.core.classpathVariableInitializer" href="reference/extension-points/org_eclipse_jdt_core_classpathVariableInitializer.html"/>
|
||||
<topic label="org.eclipse.jdt.core.classpathContainerInitializer" href="reference/extension-points/org_eclipse_jdt_core_classpathContainerInitializer.html"/>
|
||||
<topic label="org.eclipse.jdt.core.codeFormatter" href="reference/extension-points/org_eclipse_jdt_core_codeFormatter.html"/>
|
||||
<topic label="org.eclipse.jdt.debug.ui.vmInstallTypePage" href="reference/extension-points/org_eclipse_jdt_debug_ui_vmInstallTypePage.html"/>
|
||||
<topic label="org.eclipse.jdt.junit.junitLaunchConfigs" href="reference/extension-points/org_eclipse_jdt_junit_junitLaunchConfigs.html"/>
|
||||
<topic label="org.eclipse.jdt.junit.testRunListeners" href="reference/extension-points/org_eclipse_jdt_junit_testRunListeners.html"/>
|
||||
<topic label="org.eclipse.jdt.launching.classpathProviders" href="reference/extension-points/org_eclipse_jdt_launching_classpathProviders.html"/>
|
||||
<topic label="org.eclipse.jdt.launching.runtimeClasspathEntries" href="reference/extension-points/org_eclipse_jdt_launching_runtimeClasspathEntries.html"/>
|
||||
<topic label="org.eclipse.jdt.launching.runtimeClasspathEntryResolvers" href="reference/extension-points/org_eclipse_jdt_launching_runtimeClasspathEntryResolvers.html"/>
|
||||
<topic label="org.eclipse.jdt.launching.vmConnectors" href="reference/extension-points/org_eclipse_jdt_launching_vmConnectors.html"/>
|
||||
<topic label="org.eclipse.jdt.launching.vmInstallTypes" href="reference/extension-points/org_eclipse_jdt_launching_vmInstallTypes.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.classpathContainerPage" href="reference/extension-points/org_eclipse_jdt_ui_classpathContainerPage.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.foldingStructureProviders" href="reference/extension-points/org_eclipse_jdt_ui_foldingStructureProviders.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.javadocCompletionProcessor" href="reference/extension-points/org_eclipse_jdt_ui_javadocCompletionProcessor.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.javaEditorTextHovers" href="reference/extension-points/org_eclipse_jdt_ui_javaEditorTextHovers.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.javaElementFilters" href="reference/extension-points/org_eclipse_jdt_ui_javaElementFilters.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.queryParticipants" href="reference/extension-points/org_eclipse_jdt_ui_queryParticipants.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.quickAssistProcessors" href="reference/extension-points/org_eclipse_jdt_ui_quickAssistProcessors.html"/>
|
||||
<topic label="org.eclipse.jdt.ui.quickFixProcessors" href="reference/extension-points/org_eclipse_jdt_ui_quickFixProcessors.html"/>
|
||||
<topic label="org.eclipse.ltk.core.refactoring.createParticipants" href="reference/extension-points/org_eclipse_ltk_core_refactoring_createParticipants.html"/>
|
||||
<topic label="org.eclipse.ltk.core.refactoring.deleteParticipants" href="reference/extension-points/org_eclipse_ltk_core_refactoring_deleteParticipants.html"/>
|
||||
<topic label="org.eclipse.ltk.core.refactoring.moveParticipants" href="reference/extension-points/org_eclipse_ltk_core_refactoring_moveParticipants.html"/>
|
||||
<topic label="org.eclipse.ltk.core.refactoring.renameParticipants" href="reference/extension-points/org_eclipse_ltk_core_refactoring_renameParticipants.html"/>
|
||||
<topic label="org.eclipse.ltk.ui.refactoring.changePreviewViewers" href="reference/extension-points/org_eclipse_ltk_ui_refactoring_changePreviewViewers.html"/>
|
||||
<topic label="org.eclipse.ltk.ui.refactoring.statusContextViewers" href="reference/extension-points/org_eclipse_ltk_ui_refactoring_statusContextViewers.html"/>
|
||||
</topic>
|
||||
<topic label="Other Reference Information" href="reference/misc/index.html">
|
||||
<topic label="JDT Plug-ins Map" href="reference/misc/overview-jdt.html"/>
|
||||
</topic>
|
||||
</toc>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?NLS TYPE="org.eclipse.help.toc"?>
|
||||
<!-- ============================================================================= -->
|
||||
<!-- Define topics for the samples -->
|
||||
<!-- ============================================================================= -->
|
||||
<toc label="Examples" >
|
||||
<topic label="Installing the Examples" href="samples/samples.html" />
|
||||
<topic label="Java Example Projects" href="samples/org.eclipse.jdt.ui.examples.projects/doc-html/jdt_projects_ex.html" />
|
||||
|
||||
</toc>
|
||||
Reference in New Issue
Block a user