| java.lang.Object com.salmonllc.sql.AutoRetrieveCriteria
AutoRetrieveCriteria | public class AutoRetrieveCriteria implements Serializable(Code) | | This class is used to store information used to decide how to autoretrieve a datastore created inside a JSP page.
The class is populated by datasource selection criteria tags and passed to the datastore providing enough information to build a where clause.
Generally this class is used by the framework and does not need to be created directly in an application.
|
_haveParmsChanged | boolean _haveParmsChanged(Code) | | |
AutoRetrieveCriteria | public AutoRetrieveCriteria()(Code) | | Creates an new AutoRetrieveCriteria object
|
getColumn | public String getColumn(int index)(Code) | | Returns the column for a particular item. The index must be between 0 and getCriteriaCount() - 1;
|
getConnector | public String getConnector(int index)(Code) | | Returns the connector for a particular item. The index must be between 0 and getCriteriaCount() - 1;
|
getCriteriaCount | public int getCriteriaCount()(Code) | | Returns the number of selection criteria items
|
getOperator | public String getOperator(int index)(Code) | | Returns the operator for a particular item. The index must be between 0 and getCriteriaCount() - 1;
|
getPrefix | public String getPrefix(int index)(Code) | | Returns the prefix for a particular item. The index must be between 0 and getCriteriaCount() - 1;
|
getSuffix | public String getSuffix(int index)(Code) | | Returns the suffix for a particular item. The index must be between 0 and getCriteriaCount() - 1;
|
getValue | public String getValue(int index)(Code) | | Returns the value for a particular item. The index must be between 0 and getCriteriaCount() - 1;
|
haveParmsChanged | public boolean haveParmsChanged()(Code) | | Returns true if any of the parameter values have changed in the last call to the setParms method.
|
setColumn | public void setColumn(int index, String column)(Code) | | Sets the column for a particular item. The index must be between 0 and getCriteriaCount() - 1;
|
setParms | public void setParms(HttpServletRequest req)(Code) | | Sets the values of the parms from the servlet request line and sets the "changed" flag.
|
|
|