summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/DCOPAnswer.java
blob: 87c93fed0051a6cccd26d3c60bda32ef6d66e0c1 (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
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;
	}
}