Tagged Questions

1
vote
3answers
865 views

How can I change the font size of annotations in iTextPdf?

I'm programming a system that generates a PDF file containing user-submitted comments. I want to reduce the size of the comments, i.e. the font size of each annotation. I'm using the Java version of ...
0
votes
2answers
596 views

Graph View Libraries Help?

I need to incorporate a graph into my android application but I am having trouble doing this because i am confused on the whole library section of the project. Here is the tutorial: ...
0
votes
2answers
236 views

Multiple File Downloader using checkboxes?

any leads or links to implement it in java would be appreciated..... Similar to the functioanlity of multiple attachments in gmail. Download the file which is checked or the files by compressing(zip ...
1
vote
1answer
78 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 ...
1
vote
1answer
98 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 ...
1
vote
1answer
386 views

How can I run an app's source code that I got from the Android source code?

For all of you android devs out there that have the Android simulator running on your comp, you know that there are a few built in apps that are already installed on your 'phone'. I had an idea for an ...
0
votes
1answer
160 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
1answer
88 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
109 views

How to manage source code in CVS based on different version of a codebase?

I am doing a Java program based on the codebase provided by PTC. Now that codebase has a new version in which the API has been slightly changed, therefore I have to change my code accordingly. Now my ...
0
votes
1answer
133 views

Getting objects used as method parameters from Java source code

I'd like to create a java code parser to statically get the objects used as method parameters in a test suite. Do you have any suggestion on how can I do that?
0
votes
1answer
266 views

j2ee : AuthenticationFilter and RequestContext : how do you do Auth

We're building a GWT+hibernate+spring web app that's deployed to tomcat and postgres. Looking at http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ and ...
0
votes
1answer
76 views

Where can I find JSF 1.0 sources?

Only JSF 1.1_01+ and 1.2 sources seems to be available. Links are dead for 1.1 and 1.0 sources at javaserverfaces.java.net.
-1
votes
1answer
86 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 ...