public class TestTag extends Model
Modifier and Type | Field and Description |
---|---|
private static org.ksoap2.serialization.PropertyInfo |
PI_id |
private static org.ksoap2.serialization.PropertyInfo[] |
PI_PROP_ARRAY |
private static org.ksoap2.serialization.PropertyInfo |
PI_tagInd |
private static org.ksoap2.serialization.PropertyInfo |
PI_tagText |
private List<Integer> |
qstCodList
Question codes;
|
private int |
tagInd
Tag index
|
private String |
tagTxt
Tag text
|
Constructor and Description |
---|
TestTag(long id,
List<Integer> qstCodList,
String tagTxt,
int tagInd)
Constructor
|
TestTag(long id,
String tagTxt,
int tagInd)
Constructor
|
Modifier and Type | Method and Description |
---|---|
void |
addQstCod(Integer qstCod)
Adds a question code to the list
|
boolean |
equals(Object obj) |
Object |
getProperty(int param) |
int |
getPropertyCount() |
void |
getPropertyInfo(int param,
Hashtable arg1,
org.ksoap2.serialization.PropertyInfo propertyInfo) |
Integer |
getQstCod(int i)
Gets the question code in position i
|
List<Integer> |
getQstCodList()
Gets question codes
|
int |
getTagInd()
Gets tag index
|
String |
getTagTxt()
Gets tag text
|
void |
setProperty(int param,
Object obj) |
void |
setQstCodList(List<Integer> qstCodList)
Sets question codes
|
void |
setTagInd(int tagInd)
Sets tag index
|
void |
setTagTxt(String tagTxt)
Sets tag text
|
String |
toString() |
private String tagTxt
private int tagInd
private static final org.ksoap2.serialization.PropertyInfo PI_id
private static final org.ksoap2.serialization.PropertyInfo PI_tagText
private static final org.ksoap2.serialization.PropertyInfo PI_tagInd
private static org.ksoap2.serialization.PropertyInfo[] PI_PROP_ARRAY
public TestTag(long id, String tagTxt, int tagInd)
id
- tag idtagTxt
- Tag texttagInd
- Tag indexpublic String getTagTxt()
public void setTagTxt(String tagTxt)
tagTxt
- Tag textpublic int getTagInd()
public void setTagInd(int tagInd)
tagInd
- Tag indexpublic Object getProperty(int param)
public int getPropertyCount()
public void getPropertyInfo(int param, Hashtable arg1, org.ksoap2.serialization.PropertyInfo propertyInfo)
public void setProperty(int param, Object obj)
public void setQstCodList(List<Integer> qstCodList)
qstCodList
- Question codespublic Integer getQstCod(int i)
i
- Position of question codepublic void addQstCod(Integer qstCod)
qstCod
- Question code to be added