/*
* Copyright (C) 2009 codemobiles.com.
* http://www.codemobiles.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* author: Chaiyasit Tayabovorn
* email: chaiyasit.t@gmail.com
*/
package com.codemobiles.droidslator_tattoo;
public class TELexBean {
private String tsearch;
private String eentry;
private String tcat;
private String tsyn;
private String tsample;
private String tant;
public String getTsearch() {
return tsearch;
}
public void setTsearch(String tsearch) {
this.tsearch = tsearch;
}
public String getEentry() {
return eentry;
}
public void setEentry(String eentry) {
this.eentry = eentry;
}
public String getTcat() {
return tcat;
}
public void setTcat(String tcat) {
this.tcat = tcat;
}
public String getTsyn() {
return tsyn;
}
public void setTsyn(String tsyn) {
this.tsyn = tsyn;
}
public String getTsample() {
return tsample;
}
public void setTsample(String tsample) {
this.tsample = tsample;
}
public String getTant() {
return tant;
}
public void setTant(String tant) {
this.tant = tant;
}
}
|