Tagged Questions
0
votes
1answer
93 views
Java- Source code dynamic analysis
I have a requirement to develop a java program to analyze the dynamic behavior of a source code of a simple java program. According to my requirement, when i give the source as the input, the program ...
0
votes
1answer
63 views
Where is Thread class's yield() method's code?
So I am reviewing the code in the Thread class, and for the yield() method all it has is the method declaration, with no implementation details.
/**
* Causes the currently executing thread object to ...
0
votes
1answer
180 views
Java - convert HTML source code of String type (by “show source code”) to source code of String type as I see when I show webpage in Firebug
I need to convert HTML source code of String type (original source code as you can get in in firefox or every other browser by right mouse click and then "show source code") to HTML source code of ...
0
votes
1answer
48 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
vote
1answer
121 views
Is there an implementation of Pohlig-Hellman algorithm in Java?
I am looking for implementation of Pohlig-Hellman algorithm in Java, but I can't find any source code I can download. The closes I have gotten was a description of someone's library, but the code is ...
1
vote
1answer
74 views
What means “HD” in the source code for java classes Integer and Long?
Inside the source code of Integer.java and Long.java, in most of the bit twiddling methods, there is a commented reference to something called "HD". Each method points to a particular section of said ...
-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 ...
0
votes
2answers
126 views
Open Source Java Based Source Code Viewer
I am searching for a Java-based, open source diff viewer like
http://www.redmine.org/projects/redmine/repository/annotate/branches/0.7-stable/config/database.yml.example
Could you recommend (if any) ...
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
4answers
132 views
Hiding the source code
One can easily extract the .jar file and see the source code. I have searched google to find a way to protect the source code from being viewed. The answer is to password protect the file like we do ...
0
votes
2answers
97 views
Android Force close dialogue box in android os
I am seraching the GrepCode and other android repository to find the layout of android ForceCloseError dialogue box.
But I cant find any. I want to know from where it comes. I want to get its layout ...
0
votes
1answer
121 views
Programmatically modify annotation in java source code
I am looking for a way to analyze the java code and programmatically modify them,
for example:
the code may be like this:
@FindBy(id = "login")
WebElement btnLogin;
@FindBy(xpath = "//div/a") ...
1
vote
1answer
80 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 ...
-2
votes
2answers
155 views
Modify Java Source Code File and add some lines of code [closed]
I have a java source file (For Example)
public class JTest{
public static void main (String arg[])
{ . . . . . }
public mytestmethod()
{
for(i=0;i<10;i++)
...
0
votes
2answers
70 views
How to get the source code of Eclipse [duplicate]
Possible Duplicate:
Downloading Eclipse’s Source Code
I have known that I can get the eclipse SDK. But how can I watch the real code in the SDK. Can someone tell me the detail to watch ...
1
vote
1answer
247 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 ...
0
votes
1answer
73 views
how can we decode Libraries of android project? [closed]
I have implemented reverse engineering to get source code from .apk file. and i got the source code and all layout files with drawables. the thing i didnt get is AndroidManifest.xml file after certain ...
0
votes
1answer
47 views
JavDoc-like Tool for Crossreferencing Callers of Methods in Java?
Is there a tool like JavaDoc that would also list, for each method, from where that method is called (if it can be known for sure) or from where it could potentially be called?
Obviously this cannot ...
-1
votes
1answer
206 views
How to extract java source code from a .rar [closed]
I want to use the source code from this link for learning purposes to better understand java game development.
Link: http://www.ludumdare.com/compo/ludum-dare-23/?action=preview&uid=11981
...
0
votes
1answer
151 views
Good source code with multiple classes and good design, JAVA [closed]
So, I asked a few questions here and realize that I lack some fundamentals in JAVA programming. Especially considering a code design. Is there a page where I can download a full application and import ...
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 ...
1
vote
1answer
129 views
Building either a Swing and Android app from the same code base using Ant
Based on suggestions from my previous question on programmers.SE, I have split my current project into three subdirectories (swing, common, and android) and created separate Ant scripts in each one. ...
0
votes
2answers
626 views
Java native method source code
Could you please kindly tell me where I can download the java native method source code? for example,I wanna know the source code of System.arraycopy(),but I can't find.
Thanks in advance
2
votes
3answers
265 views
SWT source code editor widget
Is there any source code editor widget for SWT? I looked for a long time and nothing found... I saw that question: SWT Syntax highlighting widget, but I don't want to use raw StyledText widget - I ...
1
vote
1answer
269 views
Get methods bodies from java 7 source files, parsed or not
I am looking for the simplest way to get the full content of methods from Java source files, either parsed (as AST) or text. I've been using the Java parser from Google code and I was happy with it, ...
1
vote
2answers
131 views
Can we reveal the source code of a software from its setup file?
I found that we can read the software source code of a JAR file by using de-compiling software. I downloaded such a software and read lot of such codes.
My questions are...
How can we prevent ...
2
votes
1answer
49 views
expandCapacity method in AbstractStringBuilder class
I was looking through the source code of this class and I start from append method that is called by StringBUffer.append();
public AbstractStringBuilder append(String str) {
if (str == null) str ...
0
votes
3answers
528 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 ...
1
vote
2answers
146 views
How programs are written in Unicode?
From the Java Specification SE 7 Edition
§3.1 Unicode
Programs are written using the Unicode character set.
§3.2 Lexical Translations
A raw Unicode character stream is translated into a ...
0
votes
2answers
1k views
NoClassDefFoundError org/eclipse/swt/SWTError
I m trying to compile an open source software . The build works fine and results into a jar file "five-server.jar". When I try to run this file from cmd , I get these errors.
...
1
vote
1answer
229 views
Where can I find downloadable sources for com.sun.tools package?
I'm especially interested in com.sun.tools.javac.processing.JavacProcessingEnvironment. I first thought that it's not open source but then I found this page. Is there any downloadable official version ...
0
votes
1answer
233 views
Use Maven to pre-process source code that is going to be built with Maven
I have the following example source code:
public interface SomeInterface {
void method1();
@Support
void method2();
@Support(ENVIRONMENT_A)
void method3();
@Support({ ENVIRONMENT_A, ...
0
votes
2answers
610 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!
2
votes
1answer
109 views
where is the source code repository for VisualGC?
I cant'find source code repository for VisualGC
in the VisualVM plug center.
I use google to search ,but also find any .
anybody can tell me where is the source code repository for VisualGC
1
vote
1answer
86 views
Historical Source Code Analysis
I have a shared library (java package) used by many teams. Parts of the library are stable and shared. Parts of the library are not shared and not stable. We want to refactor to lower the collision ...
0
votes
1answer
74 views
eXist db bibliographic demo source code [closed]
Does anyone know if the eXist db provides the source code for the bibliographic demo ( the one at ...
0
votes
1answer
146 views
Checking code against the web
Is there a way with which I can check the code (javascript, jquery or java) I've written for an assignment against the Web?
I've looked around and most tools just check between files submitted to the ...
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? ...
7
votes
2answers
242 views
How to analyse a Java source code that has errors
I'm currently writing a program to analyse Java source code for constructs such as a function/method of a certain name, return type and parameters, eg. I could test to see if there is a function with ...
1
vote
1answer
107 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
2answers
364 views
Export java source as HTML
I want to export my java source code (entire java project) into html format like this http://javasourcecode.org/html/open-source/ant/ant-1.8.2/org/apache/tools/ant/BuildListener.java.html.
The point ...
0
votes
1answer
103 views
Is there any free software which can export java source code to be displayed in html format?
I am finding a free software which can convert whole java project into html format, so that I can jump around between classes and methods definition by a web browser. Of course I can do the same thing ...
6
votes
2answers
879 views
Why does java.lang.Cloneable not override the clone() method in java.lang.Object?
The Java specification for the java.lang.Cloneable interface defines itself as signifying that any object that extends it also has implemented the clone() method that rests dormant within ...
0
votes
3answers
74 views
Where can I find decompiled java source files?
I once found a great website which had all the JDK decompiled online with syntax highlighting etc. DOes anyone know any good souce for that?
Thanks.
2
votes
2answers
244 views
Can I generate both Java bytecode AND source code using the same “generator” with ASM?
My Google foo is failing me. If I have some framework that can do code generation based on annotations, and I would like to support both build-time source code generation, so that the developer can ...
0
votes
2answers
239 views
Java compile-time class resolution
How can I get a class reference/TypeElement of a specific identifier at compile time in Java?
Say I have the following source file, and I want to get a reference to the Pixel class so I can get a ...
1
vote
3answers
120 views
How to view native implementations of Java classes?
there are several sites out providing Java source code.
Unluckily, these does not refer to the Java native binaries.
In short: The source code of native functions is not shown.
An example is ...
-2
votes
2answers
680 views
Android email client source code?
I keep seeing links to download the Android email client source code, from something like "git hub" which I've never used. Everytime I click them there is this very long page of information about how ...
1
vote
2answers
103 views
Java Source Code Package Descriptions
I found the source code file to all the libraries inside the JDK\src folder. The only problem is that I don't know which package contains which libraries.
The src folder has 6 other folders in it: ...




