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.
tdebindings/kdejava/koala/org/kde/koala/DCOPAnswer.java

29 lines
530 B

package org.kde.koala;
import java.util.*;
public class DCOPAnswer{
private byte[] replyData;
private String replyType;
private boolean succes;
public void setReplyData(byte[] data){
this.replyData = data;
}
public byte[] getReplyData(){
return this.replyData;
}
public void setReplyType(String type){
this.replyType = type;
}
public String getType(){
return this.replyType;
}
public void setSucces(boolean succes){
this.succes = succes;
}
public boolean getSucces(){
return this.succes;
}
}