00001 package cz.vutbr.fit.dudka.SGVis.Lookup;
00002
00010 public class Request {
00011 protected String[] q;
00012 protected boolean edo;
00013 protected boolean edi;
00014 protected boolean fme;
00015
00023 public Request(String[] q, boolean edo, boolean edi, boolean fme) {
00024 this.q = q;
00025 this.edo = edo;
00026 this.edi = edi;
00027 this.fme = fme;
00028 }
00029
00037 public Request(String q, boolean edo, boolean edi, boolean fme) {
00038 this(new String[]{q}, edo, edi, false);
00039 }
00040
00041 public String[] getQ() {
00042 return q;
00043 }
00044 public void setQ(String[] q) {
00045 this.q = q;
00046 }
00047 public boolean isEdo() {
00048 return edo;
00049 }
00050 public void setEdo(boolean edo) {
00051 this.edo = edo;
00052 }
00053 public boolean isEdi() {
00054 return edi;
00055 }
00056 public void setEdi(boolean edi) {
00057 this.edi = edi;
00058 }
00059 public boolean isFme() {
00060 return fme;
00061 }
00062 public void setFme(boolean fme) {
00063 this.fme = fme;
00064 }
00065 }