summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/test/dcop/Test.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/test/dcop/Test.java')
-rw-r--r--tdejava/koala/test/dcop/Test.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/tdejava/koala/test/dcop/Test.java b/tdejava/koala/test/dcop/Test.java
new file mode 100644
index 00000000..c54a5878
--- /dev/null
+++ b/tdejava/koala/test/dcop/Test.java
@@ -0,0 +1,30 @@
+import org.trinitydesktop.qt.*;
+import org.trinitydesktop.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){
+ TDEAboutData aboutData = new TDEAboutData( "test", "Test",
+ "0.1", description, TDEAboutData.License_GPL,
+ "(C) 2002 Gert-Jan van der Heiden");
+ TDECmdLineArgs.init( argv, aboutData );
+
+ TDEApplication app = new TDEApplication();
+ app.dcopClient().registerAs("JavaTest", false);
+ JavaDCOPObject object = new JavaDCOPObject();
+ app.exec();
+ }
+
+ static{
+ qtjava.initialize();
+ tdejava.initialize();
+ }
+}