Tagged Questions
0
votes
0answers
12 views
Eclipse Source Format in the case of empty function/class/array
I'm using Eclipse source formatter to format my code to suit my style.
In the Braces section of Source formatting, I pretty much add a new line for all of them except Array Initializer
One thing I ...
0
votes
1answer
14 views
Eclipse - Compare Editor Source Code
I'm looking for the source code of the "Compare Editor" of Eclipse. Does anyone know how this class is called and where to find the right source code? Currently I'm using Eclipse 3.7. I know that the ...
0
votes
0answers
138 views
Eclipse JavaScript UML tool
I am looking for Eclipse plugins for JavaScript UML. Are there good in year 2013?
Attention: The main thread for Java is Recommended Eclipse plugins to generate UML from Java code, but I need for ...
1
vote
1answer
105 views
Android on Eclipse Follow the right Android source code version while debugging
I am debugging an application with target android-17 (min version android-11).
The emulator I use has android 4.0.4, which is android-14 or android-15.
When I trace into android source methods, the ...
0
votes
1answer
47 views
How can i extract a variable with eclipse and convert it into a class?
I have the problem that I defined a HashMap as a variable, where I should have used a class for better extendability.
I would like eclipse to refactor the
HashMap<String, Integer> result
...
-1
votes
1answer
56 views
Getting started with Eclipse source code [closed]
I want to contribute to the Eclipse project (eclipse.jdt.core). People say the best way to start is to get a good grasp of the Eclipse source. But I'm not sure where to start, as all files are ...
6
votes
2answers
87 views
In quest of source code: where is the clone() method of arrays implemented?
new String[] { "foo", "bar" }.clone();
With my favorite IDE (i.e. Eclipse), I wanted to see the source code of the above clone() method by Ctrl-clicking on it (as usual), but it brought me to the ...
1
vote
1answer
66 views
Eclipse PMD automatic reparse once source file is updated?
I am using PMD plugin under Eclipse.
How can one force PMD plugin to reparse a source file once it is updated to eliminate fixed warnings?
After right click on a project name in Package Explorer, I ...
1
vote
1answer
79 views
Import source code folder from a existing program into Eclipse
I just wanted to edit a existing program (or project) where I have the source code folder (which has already java files, not class files... so I don't have to decompile that) of that. But how do I ...
1
vote
1answer
244 views
How to attach source code of Java EE in Eclipse? [duplicate]
Possible Duplicate:
Where can I find JavaEE packages' sources?
I downloaded the Java EE 6 with Glassfish server from Oracle's website. Then I created a Java EE project in Eclipse. But I ...
1
vote
0answers
79 views
What is the trick when attaching source to android.jar when working with android-16 in Eclipse on Windows
I am trying to add the sources from the Android SDK to the android.jar in Eclipse but am not successful.
I have looked around and did some research, some suggested solutions on Stackoverflow were (1) ...
1
vote
0answers
24 views
Source path dependency in eclipse
In eclipse one can have a project depend on another. How it is possible to do for Source paths? The test classes depend on the main classes but not the other way around.
1
vote
1answer
184 views
Where can I download the Javadocs for the Eclipse plugin developement SDK
I am working on an Eclipse plugin development. Where can I download the Javadocs for the Eclipse plugin development API? I am able to refer them online here, but I want to download them for offline ...
0
votes
1answer
88 views
Way to avoid errors in the source code of game engine [closed]
I am developing a game based on this tutorial. In that it is mentioned to include the jar file in the libs folder and click on the 'addtoexternalarchive'. Everything is working fine on PC. But when I ...
0
votes
1answer
176 views
CDT AST traversal
I am writing a C code analyzer from Java in Eclipse.
I need to traverse AST generated in Eclipse CDT to find the methods, variables, user defined types, etc in a C souce code.
Can someone please give ...
0
votes
3answers
168 views
Downloading Eclipse Source Code [closed]
Before this question is blocked for duplication, I would like to mention is that this is an extension of a previous question here: Downloading Eclipse's Source Code
Here's what I need: I am ...
0
votes
3answers
526 views
How to navigate through Android class files (with source code attached) in eclipse?
Usually, I use F3 shortcut to navigate to a variable/method's definition in a project.
For an Android project, sometimes I want to navigate to a class defined in Android sdk, say Activity, the ...
0
votes
1answer
42 views
Why can Eclipse not “see” the structure of a class?
I am debugging my program with apache mina 2.0.2. The specific library is irrelevant.
The problem is that Eclipse can see internal structure of some classes and cannot see one of the others. No ...
0
votes
0answers
132 views
IWindowSession$Stub$Proxy source code download
I am developing an app that uses a WindowManager. Before I added this method, my app was working perfectly. So I believe the problem is that I have these source codes missing:
...
1
vote
1answer
2k views
Download android source code for 2.3.3 & open it as an eclipse project
I found this http://source.android.com/source/downloading.html but it seems to have so many steps has to be done.
Is there another way of downloading android source version we need from a zip file ...
0
votes
2answers
606 views
Java Source Code Analyzer Open-Source [closed]
I'm looking for Java Source Code Analyzer Open-Source tool in eclipse. Anybody know one? Thanks!
0
votes
2answers
428 views
adding src/main/aspect as a source folder to an eclipse maven project
I would like to be able to configure the pom.xml so that when I import it into eclipse it specifies src/main/aspect as an eclipse source folder.
At the moment, importing creates the default source ...
0
votes
1answer
77 views
How can I find source code for a “Plug-in Project” wizard?
Using instructions in Eclipse Source Code - Tutorial, I can get the source code for all plugins. But how can I find in this enormous heap of text the code for one concrete wizard I really need? ...
1
vote
1answer
66 views
update eclipse workspace with ant-errors
I have LaTeX project that is hosted in the eclipse environment. To compile the LaTeX code I'm using an ant script that calls pdflatex.exe from a local MiKTeX installation. This works fine for me so ...
1
vote
1answer
106 views
// Formatting java source comments --------------------------------
I use, and have seen used, a separater-comment in java and C code along the lines of:
// fields used in configuration ---------------------------
int a = 0;
etc
// fields used for authentication ...
0
votes
1answer
409 views
Convert Tabs-as-spaces width
I have many source code files which are idented with 8 space characters, I want to convert these to 4 character indents. What is the best way of doing this? A technique using eclipse would be ...
0
votes
1answer
56 views
What is JedaiLib-0.2.swc?
I found that Eclipse IDE for red5 generates sample client SWF code which is using JedaiLib-0.2.swc as a library. All actual code is hidden inside this file.
Where did this file come from? Who wrote ...
1
vote
1answer
280 views
How do I organize the source code of a CUDA C project using subfolders?
I develop some parallel computing code using CUDA C. The system is running a Ubuntu based Linux, the IDE of choise is Eclipse Indigo.
I set up the project using the template which is delivered with ...
17
votes
5answers
13k views
Android Support Library (v4). Getting the source and attaching it to the library/jar in Eclipse
Having the source code attached to external libraries is awesome. Where to find the source code for the v4 support package? Preferably it would be a zip file which could be easily attached to the ...
0
votes
2answers
378 views
How to include Java Source code within Eclipse?
In Netbeans, I can see the built-in sourse code of Java by clicking on LeftClick + Ctrl, and the .java file is shown:
But when I do the same thing in Eclipse, the following is shown:
How can ...
0
votes
2answers
2k views
How can I browse the source code in a jar file containing source code in Eclipse?
I have a jar file that contains source code. How can I browse this source code in Eclipse?
At the moment, my Eclipse opens the jar file in a Text Editor, and it isn't that helpful.
When I look in ...
3
votes
2answers
266 views
Eclipse doesn't automatically wire sources when debugging on JBoss
When I'm debugging in a Maven dependency, which source I've downloaded and I can view in the Eclipse Java perspective, the source doesn't get displayed.
Shouldn't Eclipse wire the sources ...
0
votes
3answers
155 views
How to modify source android when I attach the source
I want to change some functionality in the WebView control, is there any way to change the source of the sdk. knowing that I got the source code android.jar and I attach it to eclipse for debugin but ...
2
votes
3answers
145 views
Finding Java source code
I'm trying to find the sources for javax.servlet.jsp.* to do a bit of debugging however I'm having a lot of trouble finding the source in a single package which I can include in Eclipse. I can find ...
1
vote
3answers
487 views
How to see source code of particular class in eclipse?
I want to see source for particular class. For example, now I work with JUnit and in code have this line:
Result result = JUnitCore.runClasses(MyClassTest.class);
I want to see how is implemented ...
0
votes
1answer
266 views
Cannot import eclipse source code
I've followed this tutorial (Step 2) to a tee on how to import the eclipse source code so that I can explore the various packages in order to assimilate some certain aspects of the code. I can import ...
0
votes
3answers
1k views
Eclipse doesn't find source attachements
When opening a class included through a Maven dependency, Eclipse tells me that the containing .jar file has got no source attachment.
But in the directory in which the .jar file resides, there is ...
8
votes
2answers
1k views
mark long lines in eclipse
In some editors, overlong lines are marked. e.g. by a vertical bar after column 80, or by shading everything after column 80.
Can I do this in eclipse?
0
votes
2answers
216 views
Where is source code in Eclipse classic package
I'm looking for Eclipse source code and I just wondering where it is in Eclipse classic package. On download page is written "...including source and both user and programmer documentation...". But ...
0
votes
3answers
1k views
How to attach source to a Web App Libraries in eclipse?
Is there a way to attach source to a web app library in eclipse 3.5/3.6?
What I have tried:
Till eclipse 3.3, I could attach source to jars inside the web app library, though individually.
Now ...
3
votes
3answers
1k views
java code analysis and structure by tool or pluggin
Is there any tool that helps analyse code structure in a java project, either as an eclipse pluggin or as a standalone?
I guess something similar to what Structure101 seems to do, but I am looking ...
8
votes
4answers
5k views
javax.persistence.* sources, where?
I might be missing something really obvious here, but i couldn't find the sources for a few classes from the javax.persistence package.
I'm using EclipseLink as a JPA provider. When i tried Ctrl+left ...
3
votes
1answer
539 views
What Eclipse CDT (C++) plugins do you use to annotate source code?
I'm trying to understand some C++ source code and hope to annotate the source files as I browse through them. Found some good standalone tools like Kelp, Pork and collaborative ones like CodeStriker ...
3
votes
2answers
902 views
Java source code generation tools
I want to auto-generate some java source code for my application. Basically I would like to:
Define one java interface (I'm using eclipse)
Annotate methods in my Inferface with custom annotations
...
0
votes
1answer
468 views
How to improve eclipse code completion
Eclipse does not find the correct variable for code completion as shown below.
int i = 0;
f(xyz); // f takes an int but eclipse won't fill it with i.
3
votes
6answers
3k views
Add header(copyright) information to existing source files
I want to add our company's copyright information to all of our EXISTING source code files.
The project is developed in Eclipse. so, for new files I can modify the settings as suggested here. But ...
1
vote
2answers
606 views
How to compile eclipse?
This is probably a question that has been asked before, but I couldn't find it, so here we go...
I'd like to add a small change to org.eclipse.jdt. As part of this (and since this is my first time ...
4
votes
6answers
694 views
Search for commented-out code across files in Eclipse
Is there a quick way to find all the commented-out code across Java files in Eclipse?
Any option in Search, perhaps, or any add-on that can do this?
It should be able to find only code which is ...
33
votes
11answers
14k views
Java/Eclipse on MacOSX: where is the src.zip?
With the latest Java update on MacOSX 10.6, Eclipse does not find the Java sources anymore.
I am not exactly sure (i.e. don't remember anymore) if I have downloaded the sources manually in the past ...
1
vote
1answer
81 views
What broke my Android Development Environment?
Things had been going swimmingly, but as of last night, when I hit a breakpoint in my own code (not Android code--I've found plenty of people looking for answers to that question, and I get why that's ...
