JVM Languages
jqa600.txt
Associated article: Can You Implement COM Components Using Java?
Tags: JVM Languages
Published source code accompanying the article by Jacob Gsoedl in which he shows how you can implement COM components using Java.
Java Q&A
by Jacob Gsoedl
Listing One
(a)
// Source Code Start
import java.util.Date;
class ADispatchSample{
public String SayHi(){
return("Hi Dr.Dobb's reader!");
}
public Date curDate = (Date)new Date();
}
(b)
import java.util.Date;
...


