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
import org.kde.koala.*;
|
|
import org.kde.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";
|
|
}
|
|
|
|
}
|