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>
 +
#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;
 +
}
 +
#me nu-nav li .selflink {
 +
  padding: 3px 0.5em;
 +
  margin-left: 3px;
 +
  border: 1px solid #aaa;
 +
  background: #fff;
 +
  border-bottom: 1px solid #fff;
 +
}
 +
 +
table.menu-table, .menu-table table {
 +
  border: 1px solid #aaa;
 +
  border-collapse: collapse;
 +
}
 +
.menu-table td {
 +
  border: 1px solid #aaa;
 +
  padding: 0.5em 1em;
 +
}
 +
.menu-table th {
 +
  border: 1px solid #aaa;
 +
  background-color: #eef;
 +
}
 +
.menu-table caption {
 +
  border: 1px #aaa solid;
 +
  margin: 1em 0 0.2em 0;
 +
  background-color: #ccf;
 +
  font-weight: bold;
 +
  font-size: 1.1em;
 +
}
 +
 +
#content dl  {
 +
  border-left: 1px #aaa solid;
 +
  border-bottom: 1px #aaa solid;
 +
}
 +
#content dl dt {
 +
  float: left;
 +
  border-top: 1px solid #aaa;
 +
  padding: 0.5em 0 0 0.5em;
 +
}
 +
#content dl dd {
 +
  border: 1px solid #aaa;
 +
  border-bottom: none;
 +
}
 +
 +
#content .narrow-list dl  {
 +
  width: 40em;
 +
}
 +
#content .narrow-list dl dt {
 +
  width: 14em;
 +
  line-height: 1em;
 +
}
 +
#content .narrow-list dl dd {
 +
  margin: 0 0 0 15em;
 +
  padding: 0.5em 1em;
 +
}
 +
 +
#content .wide-list dl, #content dl {
 +
  width: 80em;
 +
}
 +
#content .wide-list dl dt, #content dl dt {
 +
  padding: 0.5em 1em;
 +
  width: 15em;
 +
}
 +
#content .wide-list dl dd, #content dl dd {
 +
  padding: 1em 1em 2em 2em;
 +
  margin: 0 0 0 17em;
 +
}
 +
 +
#content .unbounded-list dl, #content .unbounded-list dl dd, #content .unbounded-list dl dt {
 +
  border: 0 none;
 +
  width: auto;
 +
  padding: 0 0 0 1em;
 +
 +
}
 +
#content .unbounded-list dl dt {
 +
  line-height: 1.2em;
 +
}
 +
 +
.infobox {
 +
  padding: 0.5em 1em;
 +
  background-color: #fff;
 +
  float: right;
 +
  margin: 0.5em;
 +
}
 +
</css>
 +
 +
 +
<div id="menu-nav">
 +
* [[JSDT| Overview]]
 +
* [[JSDT/Usage|Usage]]
 +
* [[JSDT/Development|How to Contribute]]
 +
* [[JSDT/Architecture|Architecture]]
 +
* [[JSDT/Design|Design]]
 +
</div>
 +
 
= Install and Use JSDT =
 
= Install and Use JSDT =
  

Revision as of 13:03, 5 July 2016


Install and Use JSDT

This page explains how to install and use JSDT

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.

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 see two youtube videos about JSDT 2.0 and its usage:

Articles

Read more about JSDT in these articles:

Back to the top