| Thread | Last Post | Replies |
|
| Undefined constructor for the super class. | 03 Sep 2007 15:10 GMT | 6 |
I'm using eclipse to write my java program. I am writing a class call it Node2 which extends Node1 The only difference is that Node1 has a constructor that take (double, String, double) as parameters and it works absolutely fine <-- as I
|
| Managing library project, iternationalization and errors | 03 Sep 2007 15:00 GMT | 1 |
I'm not quite happy with a current design aspect in my software. I use an own library into which I put a bunch of packages and classes for reuse in other projects. For each specific project, I created one huge centralized class
|
| How to change color in eclipse? | 03 Sep 2007 09:10 GMT | 1 |
Hiii, I want to change color for the comments in eclipse IDE. //all these comments i want to change to some other colour i tried this.
|
| Importing object at run-time | 03 Sep 2007 08:07 GMT | 4 |
"Crouchez" <blah@bllllllahblllbllahblahblahhh.com> wrote in message news:O6NCi.120110$p7.76442@fe2.news.blueyonder.co.uk...
> On Sep 1, 10:07 pm, "Crouchez" <b...@bllllllahblllbllahblahblahhh.com> > wrote: |
| dependency-detection in java | 03 Sep 2007 07:51 GMT | 28 |
Say, I've got two classes A and B, one of which (A) contains "static final" fields, the other (B) references these fields. Now the compiler doesn't use references, but includes the values from A
|
| NewsMaestro and evillest of all evil | 03 Sep 2007 04:19 GMT | 7 |
There are some evil people on this group and they are doing the evillest thing they can. Lil did they know, ALL their efforts are futile.
|
| Post not appear on group "comp.lang.java.programmer" | 03 Sep 2007 04:10 GMT | 48 |
>From last to two days i trying to post one message but after submitting post it show me "Your message will appear in comp.lang.java.programmer momentarily."
|
| PrintWriter woes | 03 Sep 2007 03:33 GMT | 12 |
I create a PrintWriter with: p = new PrintWriter( new BufferedWriter(new OutputStreamWriter( mystream,"UTF-8"),4096));
|
| File Won't Run with Runtime On Windows XP | 03 Sep 2007 03:26 GMT | 3 |
I have a program that uses OpenOffice and the associated classes. This is not an OpenOffice problem, but a strange problem of trying to run a program. For several reasons, my program uses a script to run programs. This lets me set arguments in the script (with some programs, ...
|
| transfer binary files over network | 03 Sep 2007 03:18 GMT | 10 |
I'm writing a P2P java client/server program. The clients connect to the server, send their file list, and the server broadcast the "global" file list to all clients (the list is an HashMap and I work with writeObj and readObj).
|
| Generic file name validation code? | 02 Sep 2007 21:49 GMT | 6 |
I need to validate a file name but it has to work on Windows & Unix! Does anybody know of java code that does this? thanks in advance harry
|
| Reverse engineer class diagram | 02 Sep 2007 17:30 GMT | 3 |
I just wanted to ask if anyone has a recommendation for me for a free, easy to use tool that allows me to reverse engineer java classes and outputs an uml class diagram. I seem to be unable to find one that is capable of parseing java 5 or 6
|
| Doing something when a thread finishes running | 02 Sep 2007 17:26 GMT | 6 |
I have a program that currently uses two threads - the main thread that just sets up a GUI, adds ActionListeners to buttons, etc and another thread that does some processing and updates the GUI. The processing thread reads lines from a file (amongst other things) and
|
| New to advane java help me in Java beans! | 02 Sep 2007 17:21 GMT | 2 |
Hai! I am new to ad.java.I want to do java beans programs.I have Jdk 1.6,j2eesdk 1.4,j2sdk 1.4,tomcat 6,netbeans ide 5.5. is there need any other software? And give complete details how to run beans program
|
| Importing an object at runtime | 02 Sep 2007 17:05 GMT | 8 |
Class theClass = Class.forName("Object1"); Object1 o = theClass.newInstance(); ((Object1)o).go(); I need to wrap the object as an Object1 to be able to call go(). If I am
|