Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "JSDT/Usage"

Line 1: Line 1:
<css>
+
{{JSDT-slim}}
#menu-nav {
+
  margin-bottom: 2em;
+
}
+
#menu-nav ul {
+
  padding: 3px 0 1px 1em;
+
  margin:0;
+
  border-bottom: 1px solid #aaa;
+
}
+
#menu-nav li {
+
  list-style: none;
+
  margin: 0;
+
  display: inline;
+
}
+
#menu-nav li a {
+
  padding: 3px 0.5em;
+
  margin-left: 3px;
+
  border: 1px solid #aaa;
+
  border-bottom: none;
+
  background: #eef;
+
  text-decoration: none;
+
}
+
#menu-nav li a:link { color: #448; }
+
#menu-nav li a:visited { color: #667; }
+
#menu-nav li a:hover {
+
  color: #000;
+
  background: #ccf;
+
  border-color: #227;
+
}
+
#menu-nav li span#current a
+
{
+
  background: #fff;
+
  border-bottom: 1px solid #fff;
+
}
+
#menu-nav li .selflink {
+
  padding: 3px 0.5em;
+
  margin-left: 3px;
+
  border: 1px solid #aaa;
+
  background: #fff;
+
  border-bottom: 1px solid #fff;
+
}
+
.tocnumber { display: none; }
+
</css>
+
 
+
  
 
<div id="menu-nav">
 
<div id="menu-nav">

Revision as of 06:06, 13 July 2016


Getting started with JSDT

This page explains how to install and use JSDT
Javascript.png

Install JSDT

You can download the JSDT package from the Eclipse Packages Download Site. Here is the link to the latest released version JSDT Neon R

To contribute to JSDT, please, Setup the Dev Env as explained in the contribution guide, or in this video, and get in touch with us.

Using JSDT

Below you find the material needed to learn how to use JSDT. If you find some issue, please, file a bug report against JSDT.

Videos

Here you can watch two youtube videos about JSDT 2.0 and its usage:

Articles

Read more about JSDT in these articles:

Back to the top