## ============================================================================ ## Filename : FWJavaBeanSearchCriteriaDataTemplate.vm ## Note(s) : This template is used to generate the base class for all ## Java Bean DAO classes. It is intended to be used along with ## the JavaBeanDAOTemplate.vm file. ## ## Copyright (c) 2008 ThinkUI Software Inc. All rights reserved. ## ============================================================================ ## ## **************************************************************************** ## The following variables are available in this template. For more ## information on any of the following variable, please refer to the user guide. ## **************************************************************************** ## $projectName ## $authorName ## $headerText ## $className ## $packageName ## $subPackageName ## $prjPkgName ## $prjClassPrefix ## $superClassName ## $date ## $codeGen ## #if ($packageName) package $packageName; #end #parse( "ClassHeaderInclude.vm" ) /** * This interface is implemented by search criteria data objects. */ public interface ${className} { /** * @return the SQL expression for the search criteria data. */ public String getSQLExpr(); }