JSDT known as Javascript Development Tools is a part of the Web Tools Platform in the Eclipse IDE.
Questions tagged [jsdt]
65 questions
1
vote
1 answer
JSDT partial jQuery code assist in Eclipse
I've just figured out how to enable jQuery code assist in Eclipse (Kepler), partly thanks to this post.
So yeah I've got code assist on some of the API, but not on things like $.ajax(), or $.parseJSON(). Code assist for $('#id') does provide the…

Dormouse
- 1,617
- 1
- 23
- 33
1
vote
2 answers
Nodeclipse - org.eclipse.wst.jsdt.core not found when installing into Eclipse
Asked by Joshua Richardson as https://github.com/Nodeclipse/nodeclipse-1/issues/58
After updating eclipse (Helios) recently, I am no longer able to install nodeclipse. I get this error message:
Cannot complete the install because one or more…

Paul Verest
- 60,022
- 51
- 208
- 332
1
vote
0 answers
Code assist for closure libraries in Eclipse JSDT
I'm trying to get Eclipse to code assist the google libraries but it seems that the parser for code assist is not up to it.
Found that the DOM is code assisted using the following syntax (definition of Document):
function…

HMR
- 37,593
- 24
- 91
- 160
1
vote
2 answers
Buggy code completion in eclipse JavaScript Development Tools
I open a project with file => new => static web project. Name it MyProject and web content folder name is WebContent.
Right click the WebContent directory and add a js directory. Right click the js directory and choose new => other => JavaScript…

HMR
- 37,593
- 24
- 91
- 160
1
vote
1 answer
Build error on org.eclipse.wst.jsdt.core.feature
I cloned eclipse/webtools.jsdt.core on GitHub. (https://github.com/eclipse/webtools.jsdt.core)
Then imported it to Juno-RCP on Mac OS X 10.6, and tried to build and export it by using org.eclipse.wst.jsdt.core.feature/feature.xml .
But I got an…

Tomoyuki Inagaki
- 169
- 3
1
vote
2 answers
How do I use angular.js with jsdt-jquery?
In https://stackoverflow.com/questions/12989859/what-is-the-best-ide-for-angularjs
Tonte Pouncil mentioned that it's possible to add angular.js as a library in jsdt-jquery. How does one go about doing this? thanks!

Brian T
- 55
- 1
- 9
1
vote
0 answers
Eclipse JavaScript Development Tools have strange "Collapse All" folding behavior
There are some strange things (probably a bug) with folding in JSDT when I collapse all folds (as in key command "Collapse All" in Window > Preferences > General > Keys). If I then expand only one fold, it unfolds and leaves many folding marks…

gvlasov
- 18,638
- 21
- 74
- 110
0
votes
1 answer
Eclipse JSDT - full list of supported features?
Is there somewhere that I can get a definitive list of what is and is not supported in Eclipse's JSDT Javascript support?
The documentation supplied with Eclipse is quite sparse. I'm particularly interested in what JSDOc tags are supported and…

The Archetypal Paul
- 41,321
- 20
- 104
- 134
0
votes
2 answers
I am trying to locate eclipse's jar repositories for jsdt
To work on a project I am trying to locate a reliable repository where the jsdt core file is available.
Although the 'org.eclipse.jdt:org.eclipse.jdt.core:3.14.0' was extremely easy to locate, I am not having the same look with the jsdt for my…

Victor
- 3,520
- 3
- 38
- 58
0
votes
1 answer
Eclipse Mars JavaScript Editor not recognizing errors
Somehow i can enter anything i want in a .js file but there are no errors nor warnings (syntax highlighting works tough) recognized.
I have no exludes or something.
Also i remember having the option to convert a project into a javascript project but…

Gobliins
- 3,848
- 16
- 67
- 122
0
votes
1 answer
How to make Eclipse neon format Javascript with ES6 class definition
I try to work with eclipse Neon and JavaScript sadly JSDT seems to be broken in a few ways. I like to use the new ES6 classes like:
class MyClass {
constructor(name) {
this.name = name;
}
//...
static getClassName () {
return…

Fabian
- 11
- 4
0
votes
1 answer
Eclipse JSDT Object Literal and firefox
I'm using the Eclipse editor with JSDT to work through some Firefox add-on examples. The following code generates errors.
const {Cc, Ci} = require("chrome");
var downloadManager =…

wnderer
- 21
- 5
0
votes
2 answers
how to minify JavaScript files using Eclipse JSDT?
How to "build" *.min.js and *.min.js.map files using Eclipse JSDT (JavaScript Developement Tools)?

user2449761
- 1,169
- 13
- 25
0
votes
1 answer
Eclipse keeps rebuilding an accurate model of the universe after every keystroke
I've tried so much I'm almost breaking my laptop on my forehead. But it was an expensive piece of equipment and I need it for my job, so I will try StackOverflow first.
I've got this huge Node.JS project in Eclipse. Eclipse has always been sluggish,…

Redsandro
- 11,060
- 13
- 76
- 106
0
votes
1 answer
Writing css classes in java files
I need to format a static bit of headings that were coded within a java file as follows
public String getShortDescription() {
if (code != null) {
if (isOption1()) {
return "Option 1 heading";
…

user1400854
- 297
- 1
- 5
- 14