📄 reqfiltertype.java
字号:
throw new IndexOutOfBoundsException(); } return (String)_reqFilterValueList.get(index); } //-- java.lang.String getReqFilterValue(int) /** * Method getReqFilterValue * * * * @return String */ public java.lang.String[] getReqFilterValue() { int size = _reqFilterValueList.size(); java.lang.String[] mArray = new java.lang.String[size]; for (int index = 0; index < size; index++) { mArray[index] = (String)_reqFilterValueList.get(index); } return mArray; } //-- java.lang.String[] getReqFilterValue() /** * Method getReqFilterValueCount * * * * @return int */ public int getReqFilterValueCount() { return _reqFilterValueList.size(); } //-- int getReqFilterValueCount() /** * Returns the value of field 'tabid'. The field 'tabid' has * the following description: Used on client side * * @return String * @return the value of field 'tabid'. */ public java.lang.String getTabid() { return this._tabid; } //-- java.lang.String getTabid() /** * Returns the value of field 'usetextfield'. The field * 'usetextfield' has the following description: Takes * listfield value instead field value * * @return Boolean * @return the value of field 'usetextfield'. */ public java.lang.Boolean getUsetextfield() { return this._usetextfield; } //-- java.lang.Boolean getUsetextfield() /** * Method isValid * * * * @return boolean */ public boolean isValid() { try { validate(); } catch (org.exolab.castor.xml.ValidationException vex) { return false; } return true; } //-- boolean isValid() /** * Method marshal * * * * @param out */ public void marshal(java.io.Writer out) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { Marshaller.marshal(this, out); } //-- void marshal(java.io.Writer) /** * Method marshal * * * * @param handler */ public void marshal(org.xml.sax.ContentHandler handler) throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { Marshaller.marshal(this, handler); } //-- void marshal(org.xml.sax.ContentHandler) /** * Method removeReqFilterText * * * * @param vReqFilterText * @return boolean */ public boolean removeReqFilterText(java.lang.String vReqFilterText) { boolean removed = _reqFilterTextList.remove(vReqFilterText); return removed; } //-- boolean removeReqFilterText(java.lang.String) /** * Method removeReqFilterValue * * * * @param vReqFilterValue * @return boolean */ public boolean removeReqFilterValue(java.lang.String vReqFilterValue) { boolean removed = _reqFilterValueList.remove(vReqFilterValue); return removed; } //-- boolean removeReqFilterValue(java.lang.String) /** * Sets the value of field 'conditiontype'. The field * 'conditiontype' has the following description: How to chain * req-filter-values * * @param conditiontype the value of field 'conditiontype'. */ public void setConditiontype(com.queplix.core.modules.eqlext.jxb.gr.types.ConditionSType conditiontype) { this._conditiontype = conditiontype; } //-- void setConditiontype(com.queplix.core.modules.eqlext.jxb.gr.types.ConditionSType) /** * Sets the value of field 'entity'. The field 'entity' has the * following description: Entity name * * @param entity the value of field 'entity'. */ public void setEntity(java.lang.String entity) { this._entity = entity; } //-- void setForm(java.lang.String) /** * Sets the value of field 'formid'. The field 'formid' has the * following description: Used on client side * * @param formid the value of field 'formid'. */ public void setFormid(java.lang.String formid) { this._formid = formid; } //-- void setFormid(java.lang.String) /** * Sets the value of field 'name'. The field 'name' has the * following description: Field name * * @param name the value of field 'name'. */ public void setName(java.lang.String name) { this._name = name; } //-- void setName(java.lang.String) /** * Method setReqFilterText * * * * @param index * @param vReqFilterText */ public void setReqFilterText(int index, java.lang.String vReqFilterText) throws java.lang.IndexOutOfBoundsException { //-- check bounds for index if ((index < 0) || (index > _reqFilterTextList.size())) { throw new IndexOutOfBoundsException(); } _reqFilterTextList.set(index, vReqFilterText); } //-- void setReqFilterText(int, java.lang.String) /** * Method setReqFilterText * * * * @param reqFilterTextArray */ public void setReqFilterText(java.lang.String[] reqFilterTextArray) { //-- copy array _reqFilterTextList.clear(); for (int i = 0; i < reqFilterTextArray.length; i++) { _reqFilterTextList.add(reqFilterTextArray[i]); } } //-- void setReqFilterText(java.lang.String) /** * Method setReqFilterValue * * * * @param index * @param vReqFilterValue */ public void setReqFilterValue(int index, java.lang.String vReqFilterValue) throws java.lang.IndexOutOfBoundsException { //-- check bounds for index if ((index < 0) || (index > _reqFilterValueList.size())) { throw new IndexOutOfBoundsException(); } _reqFilterValueList.set(index, vReqFilterValue); } //-- void setReqFilterValue(int, java.lang.String) /** * Method setReqFilterValue * * * * @param reqFilterValueArray */ public void setReqFilterValue(java.lang.String[] reqFilterValueArray) { //-- copy array _reqFilterValueList.clear(); for (int i = 0; i < reqFilterValueArray.length; i++) { _reqFilterValueList.add(reqFilterValueArray[i]); } } //-- void setReqFilterValue(java.lang.String) /** * Sets the value of field 'tabid'. The field 'tabid' has the * following description: Used on client side * * @param tabid the value of field 'tabid'. */ public void setTabid(java.lang.String tabid) { this._tabid = tabid; } //-- void setTabid(java.lang.String) /** * Sets the value of field 'usetextfield'. The field * 'usetextfield' has the following description: Takes * listfield value instead field value * * @param usetextfield the value of field 'usetextfield'. */ public void setUsetextfield(java.lang.Boolean usetextfield) { this._usetextfield = usetextfield; } //-- void setUsetextfield(java.lang.Boolean) /** * Method unmarshal * * * * @param reader * @return Object */ public static java.lang.Object unmarshal(java.io.Reader reader) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { return (com.queplix.core.modules.eqlext.jxb.gr.ReqFilterType) Unmarshaller.unmarshal(com.queplix.core.modules.eqlext.jxb.gr.ReqFilterType.class, reader); } //-- java.lang.Object unmarshal(java.io.Reader) /** * Method validate * */ public void validate() throws org.exolab.castor.xml.ValidationException { org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator(); validator.validate(this); } //-- void validate() }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -