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.
46 lines
1.1 KiB
46 lines
1.1 KiB
11 years ago
|
import org.trinitydesktop.koala.*;
|
||
|
import org.trinitydesktop.qt.*;
|
||
15 years ago
|
import java.util.*;
|
||
|
import java.io.*;
|
||
|
|
||
|
public class JavaDCOPObject extends DCOPObject{
|
||
|
public JavaDCOPObject(){
|
||
|
super("JavaDCOPObject");
|
||
|
}
|
||
|
public ArrayList functions(){
|
||
|
ArrayList operations = new ArrayList();
|
||
13 years ago
|
operations.add("TQString myOperation()");
|
||
15 years ago
|
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)){
|
||
13 years ago
|
answer.setReplyType("TQString");
|
||
15 years ago
|
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;
|
||
|
}
|
||
|
}
|
||
11 years ago
|
|
||
15 years ago
|
public String myOperation(){
|
||
11 years ago
|
return "test from Java";
|
||
15 years ago
|
}
|
||
11 years ago
|
|
||
15 years ago
|
}
|