JSDT known as Javascript Development Tools is a part of the Web Tools Platform in the Eclipse IDE.
Questions tagged [jsdt]
65 questions
4
votes
2 answers
Eclipse JavaScript code formatter and JSHint anonymous function format conflict
I am using the Eclipse (version Indigo) JavaScript code formatter and using the jshint-eclipse plugin with white: true option for code convention validation.
Eclipse code formatter and JSHint plugin conflict with the anonymous function declaration…

Norbert Tamas
- 4,464
- 5
- 23
- 28
4
votes
1 answer
Seems impossible to disable JavaScript validation in eclipse
I know that there are many questions on stackoverflow regarding this issue, but none of them solve the issue at all and I need deeper insight into this problem. I have tried everything that everyone suggested and more, to no avail whatsoever.
I…

jamesblacklock
- 849
- 8
- 14
4
votes
3 answers
code completion do not work in Nodeclipse 0.4
Are there something that I messed up, when installing Nodeclipse 0.4 so I can not do code completion since my code is worked.
EDIT:
as you can see at picture,
- the red one is Node mode in Eclipse Kepler which enable after Nodeclipse installed…

Ahmad Azwar Anas
- 1,289
- 13
- 22
4
votes
2 answers
Suppress Errors in JavaScript validation
I'm currently developing an eclipse plugin. This plugin contains a project nature which depends on the javaScript nature of jsdt.
Now at a few details the JavaScripts that the projects of my nature can contain are somewhat special.
They can contain…

Chris
- 7,675
- 8
- 51
- 101
3
votes
1 answer
Type declaration/inference in Eclipse/JSDT
I would like to specify in Eclipse/JSDT the type of an instance variable as in the following example:
/**
* @constructor
*/
function A() {
/** @type Node */
this.x = document.createElement("p");
}
The IDE, however, does not recognise the…

Marc
- 4,327
- 4
- 30
- 46
3
votes
0 answers
How to add jsdoc for Eclipse jsdt to have auto-completion for anonymous function?
See example I trying to use autocompletion and document code together but @param information is ignored - how to do jsdoc correctly?
/**
* @constructor
*/
function WhiteClass() {
this._rgb = [1.0, 1.0, 1.0]
}
/**
* @constructor
*/
function…

Chameleon
- 9,722
- 16
- 65
- 127
3
votes
2 answers
Tasks view in Eclipse not showing TODOs?
I'm running Eclipse Kepler with Nodeclipse and am having trouble getting the Tasks view to show my markers.
I have defined my own FEATURE tag as "text contains FEATURE" but it's not showing up.
I can't limit my node.js tasks to my own project.…

BadIdeaException
- 2,125
- 15
- 32
3
votes
1 answer
Refactoring Javascript "extract method" in Eclipse causes a crash
I have the nodeclipse plugin installed in Eclipse Juno, and I would like to use the "extract Method" function to refactor some JavaScript, however I get the following exception in ".log" in the workspace ".metadata" directory. I have the feeling…

nwaltham
- 2,067
- 1
- 22
- 40
3
votes
0 answers
JavaScript closure functions with jsDoc missing in Eclipse outline
I have a strange issue with outlining of JavaScript files in Eclipse 4.2 using JSDT 1.4.1. I have a closure defined like this:
var myClosure = (function() {
var calcGridLocation,
detectCollision;
/**
* Calculate the grid cell…

marandus
- 1,228
- 1
- 13
- 21
3
votes
3 answers
no JavaScript auto complete in PyDev Eclipse project
I have Eclipse with PyDev and JavaScript Development Tools (JSDT).
I'm using this environment to develop web applications.
Python, HTML, and CSS editors all work fine: highlighting and auto completion works.
JavaScript highlighting works too, but…

Alex Averbuch
- 3,245
- 5
- 33
- 44
2
votes
1 answer
Difference in Javascript validation between Eclipse Helios and Eclipse Indigo
I've been experimenting with JSDT.
Under Indigo, the validation has stopped complaining about unknown fields of objects. In Helios, it does.
This is for all objects, as far as I can tell, but here's one example
I have a JSDT user library that among…

The Archetypal Paul
- 41,321
- 20
- 104
- 134
2
votes
1 answer
How can an Eclipse plugin programmatically change JSDT's default formatter template?
I'm developing a plugin that extends Eclipse JSDT and would like to change the default profile for the JavaScript Formatter (so that my plugin users don't need to do a Preferences->JavaScript->Code Style->Formatter->Import)
I couldn't find any…

Paul Beusterien
- 27,542
- 6
- 83
- 139
2
votes
2 answers
Eclipse fails after installing JBoss Tools
After installing JBoss Tools and restarting Eclipse IDE, I get following exception:
An error has occured. See the log file /home/abc/workspace/.metadata/.log
Eclipse does not start anymore. Can anybody help me, to fix this problem?
My…
user7621344
2
votes
0 answers
Eclipse JSDT autocomplete not working
I've done research and see this is a recognized issue. I guess my question will be: Is there a solution in Eclipse Mars or in Neon? Another plugin for JavaScript Content Assist?
I'm running Eclipse Mars and have a project with Java and JavaScript…

TonyG
- 1,432
- 12
- 31
2
votes
2 answers
Correctly configuring Eclipse for non-web JavaScript development
Recently I've needed to write a small utility for Acrobat in its JavaScript.
Because the editor in Acrobat is pretty limited, I've installed the latest release of Eclipse IDE for JavaScript and Web Developers (Neon). It should already include the…

Mias
- 21
- 2