blob: 1c0d48547f9453ae7dae4a630453fcdffe4090f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
import org.trinitydesktop.koala.*;
import org.trinitydesktop.qt.*;
import java.util.*;
import java.io.*;
public class JavaDCOPObject extends DCOPObject{
public JavaDCOPObject(){
super("JavaDCOPObject");
}
public ArrayList functions(){
ArrayList operations = new ArrayList();
operations.add("TQString myOperation()");
return operations;
}
public ArrayList interfaces(){
ArrayList list = new ArrayList();
list.add("JavaDCOPObject");
return list;
}
public DCOPAnswer javaProcess( String fun, byte[] data){
DCOPAnswer answer = new DCOPAnswer();
try{
if("myOperation()".equals(fun)){
answer.setReplyType("TQString");
answer.setSucces(true);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
DataOutputStream os = new DataOutputStream(stream);
Marchaller.write_QString(os, this.myOperation());
answer.setReplyData(stream.toByteArray());
return answer;
} else{
return answer;
}
}catch(IOException ioe){
ioe.printStackTrace();
return answer;
}
}
public String myOperation(){
return "test from Java";
}
}
|