You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
767 B
31 lines
767 B
15 years ago
|
import org.kde.qt.*;
|
||
|
import org.kde.koala.*;
|
||
|
|
||
|
public class Test{
|
||
|
static String description = "DCOP test application for Java";
|
||
|
|
||
|
|
||
|
/**
|
||
|
* test the DCOP stuff.
|
||
|
*
|
||
|
* This test doesn't simply construct a DCOPClient, because
|
||
|
* dcop needs the eventloop (app.exec())
|
||
|
*/
|
||
|
public static void main(String[] argv){
|
||
|
KAboutData aboutData = new KAboutData( "test", "Test",
|
||
|
"0.1", description, KAboutData.License_GPL,
|
||
|
"(C) 2002 Gert-Jan van der Heiden");
|
||
|
KCmdLineArgs.init( argv, aboutData );
|
||
|
|
||
|
KApplication app = new KApplication();
|
||
|
app.dcopClient().registerAs("JavaTest", false);
|
||
|
JavaDCOPObject object = new JavaDCOPObject();
|
||
|
app.exec();
|
||
|
}
|
||
|
|
||
|
static{
|
||
|
qtjava.initialize();
|
||
|
kdejava.initialize();
|
||
|
}
|
||
|
}
|