| Thread | Last Post | Replies |
|
| To get reference to already existing object from another object | 30 Nov 2007 23:54 GMT | 2 |
I have a class from which i need to access the already existing object. I mean there are two classes there is one class called agent class. there are methods and attributes in that class. there is another class called controller
|
| wait and spurious wakeups | 30 Nov 2007 23:46 GMT | 20 |
I have two threads, one is rcving events that cause a list to have items appended, the other is going to return the list as soon as the last item is added. A special event occurs when there are no more items to add. (please dont ask why it works this way, this is due to
|
| exception | 30 Nov 2007 16:52 GMT | 15 |
Good evening all, I'm taking a java class and as one of the final assignments, we've got to write a program that uses a gui with buttons. We've got to use a function that adds records. I've got this being handled by a button but i'm getting
|
| got a problem with jtextfiled.. | 30 Nov 2007 01:41 GMT | 14 |
let's say....i have a jtextfiled .... JTextField txtNo = new JTextField(); for( int i =0; i<100000; i++){ //Thread.sleep(100);
|
| what is the technical reason why wait() is subject to spurious wakeups? | 29 Nov 2007 18:34 GMT | 3 |
Does anyone know? -Andrew Marlow
|
| Servlet authentication question | 29 Nov 2007 17:35 GMT | 1 |
I have question about servlet authentication. Let's say if I want create a login form that checks the username-password in a file that contains username-password pairs. With what command could i achieve that?
|
| what is the point of volatile? | 29 Nov 2007 17:21 GMT | 10 |
Can anyone tell me what the value is of 'volatile' please? It seems to me to be a lazy way of protecting a private data member without having to write a synchronized getter and setter. But it only works for types that can be updated atomically. This sounds a bit tricky to me....
|
| Applet will contact website the 1 time only. | 28 Nov 2007 23:14 GMT | 1 |
I'm trying to make and applet that will contact another website, on the click of a button from a webpage. In order to do this I've created a Signed Applet below.. Where all the work of contacting the web page is done in the shift4 class.
|
| class diagram from javadoc | 28 Nov 2007 15:36 GMT | 6 |
Is there a tool available to generate a class diagram directly from javadoc or java byte code? I'd like to see the class heirarchy and the methods. One option I had considered was to use a website maping tool to crawl
|
| Very horrible applet problem | 28 Nov 2007 13:13 GMT | 5 |
I'm writing a server-client program that communicates over TCP. When a user connects, a new thread is created (yes, this is very bad, but I'm learning). The problem I'm having is when the user disconnects. If the user is
|
| Translate C expression to Java expression | 27 Nov 2007 23:57 GMT | 17 |
I'm attempting to translate a C function to a Java method, but I'm stuck on the two non-trivial return expressions shown below. Hoping someone here can help. Thanks,
|
| Help with classloader and NullPointerException | 27 Nov 2007 22:12 GMT | 2 |
I have an application which I would like to have the ability to restart itself and thus flush all singletons, cached resources etc. I thought I could do this by starting a new application instance dynamically with a new custom classloader:
|
| How to bind jtextfield to Query result or List in EL sintax into NB6? | 27 Nov 2007 12:29 GMT | 2 |
Hello, I ask for help from a kindly issue. I must connect (binding) a jtexfield directly to a resultset that returns a list of objects (List)with NetBeans 6. I tried this:
|
| jar file different from its original java project | 27 Nov 2007 05:20 GMT | 1 |
hi, dudes, I am a freshman for java! I have developed a java project, based on jbuilder7. I used jdk1.4 instead of the build in jdk1.3. when I make a jar file of that project, run the jar file, its appearence come out
|
| Highlight Constructors in Eclipse ? | 26 Nov 2007 19:09 GMT | 8 |
Is there a way that to highlight all constructors in my sourcecode in Eclipse, or any other indicator that can make it easy for me to see that the methid is a constructor ? I mean in the sourcecode, not in the outline.
|