HTTP tunneling and Servlet communication418 (5/19/2005 11:07:46 PM) comp.lang.java.programmer I am developing a J2EE app, front end is a fat client accross the internet. Until recently, I was planning to use RMI to communicate between f/end and server but after lots more reading I have decided agains... exquisitus
Tree abstract data type without SWING paraphernalia?337 (5/4/2005 5:57:42 PM) comp.lang.java.programmer I want to use a tree ADT (preferably a red black tree) would rather not have to "roll my own" - but I don't want to import the SWING stuff, I'm writing a session bean and I don't need the GUI stuff - any idea... exquisitus
Function pointers (callbacks) in Java919 (5/3/2005 2:21:40 PM) comp.lang.java.programmer I have legacy code in C that I am porting to java. The code makes extensive use of function pointers (callbacks). An example is as follows: typedef double (*PFUNC)(PricingParam const *) ; typedef struct { ... exquisitus
modulus operator "%" versus fmod334 (4/24/2005 2:37:55 PM) comp.lang.c I'm trying to decide which of these two to use to calculate the remainder between two floating point numbers. My gut instinct says to go for the % operator - but I'm not sure if I am right. Which is the corr... exquisitus
Function pointers (Callback functions) in Java ?2321 (2/27/2005 9:08:23 PM) comp.lang.java.programmer Any one knows how I can implement callback functions in Java ( I am implementing an Observer design pattern and I need to register the 'update' functions of the "Observables". Easy in C++ - don't know how in... nebulla(41)
Java compilation error: "cannot resolve symbol"213 (4/17/2005 5:44:58 PM) comp.lang.java.programmer I have a simple test package that I am using to learn Java. I have two files, both of which belong to the same package (mypackage). One of the files uses a class defined in the other file. Both files are in t... nebulla(41)
~Destructor equivalent in java?2024 (4/23/2005 7:50:54 PM) comp.lang.java.programmer Hi , After I am done using an object, can I do the ff: myObj = null ; to flag it for collection of the heap by the GC?. Or (in this case) since it is a local variable, do I assume that it will be trashed as... nebulla(41)
public class1821 (4/24/2005 10:32:55 AM) comp.lang.java.programmer 1) Why a public class whould be stored in a file have the same name as that of class? Is there any reason for doing this? ex -- Test.java ... rajesh.shiggaon(24)
modulus operator "%" versus fmod334 (4/24/2005 2:37:55 PM) comp.lang.c I'm trying to decide which of these two to use to calculate the remainder between two floating point numbers. My gut instinct says to go for the % operator - but I'm not sure if I am right. Which is the corr... nebulla(41)
Function pointers (callbacks) in Java919 (5/3/2005 2:21:40 PM) comp.lang.java.programmer I have legacy code in C that I am porting to java. The code makes extensive use of function pointers (callbacks). An example is as follows: typedef double (*PFUNC)(PricingParam const *) ; typedef struct { ... nebulla(41)
HTTP tunneling and Servlet communication418 (5/19/2005 11:07:46 PM) comp.lang.java.programmer I am developing a J2EE app, front end is a fat client accross the internet. Until recently, I was planning to use RMI to communicate between f/end and server but after lots more reading I have decided agains... nebulla(41)