H A D | SDBCReportDataFactory.java | 82 final String filter; field in SDBCReportDataFactory.RowSetProperties 84 …apeProcessing, final int commandType, final String command, final String filter, final Integer max… in RowSetProperties() argument 89 this.filter = filter; in RowSetProperties() 120 if ((this.filter == null) ? (other.filter != null) : !this.filter.equals(other.filter)) in equals() 134 hash = 59 * hash + (this.filter != null ? this.filter.hashCode() : 0); in hashCode() 203 final String filter = (String) parameters.get(UNO_FILTER); in queryData() local 205 …erties rowSetProps = new RowSetProperties(escapeProcessing, commandType, command, filter, maxRows); in queryData() 400 if (rowSetProps.filter != null) in createRowSet() 402 rowSetProp.setPropertyValue("Filter", rowSetProps.filter); in createRowSet() 403 … rowSetProp.setPropertyValue(APPLY_FILTER, Boolean.valueOf(rowSetProps.filter.length() != 0)); in createRowSet()
|