You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by br...@apache.org on 2003/03/20 21:52:09 UTC

cvs commit: db-ojb/src/java/org/apache/ojb/broker/query FieldCriteria.java

brj         2003/03/20 12:52:09

  Modified:    src/java/org/apache/ojb/broker/query FieldCriteria.java
  Log:
  javadoc
  
  Revision  Changes    Path
  1.5       +13 -13    db-ojb/src/java/org/apache/ojb/broker/query/FieldCriteria.java
  
  Index: FieldCriteria.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/broker/query/FieldCriteria.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- FieldCriteria.java	20 Mar 2003 20:48:20 -0000	1.4
  +++ FieldCriteria.java	20 Mar 2003 20:52:09 -0000	1.5
  @@ -59,27 +59,27 @@
    * 
    * @author <a href="mailto:jbraeuchi@hotmail.com">Jakob Braeuchi</a>
    * @version $Id$
  - */ 
  + */
   public abstract class FieldCriteria extends SelectionCriteria
   {
  -    // BRJ: indicate whether field name should be translated into column name
  -    private boolean m_translateField = true;
  +	// BRJ: indicate whether field name should be translated into column name
  +	private boolean m_translateField = true;
   
  -    /**
  -     * Constructor declaration
  -     *
  -     * @param anAttribute  column- or fieldName
  -     * @param aValue  the value to compare with
  -     * @param negative  criteria is negated (ie NOT LIKE instead of LIKE)
  -     * @param alias  use alias to link anAttribute to
  -     */
  +	/**
  +	 * Constructor declaration
  +	 *
  +	 * @param anAttribute  column- or fieldName
  +	 * @param aValue  the value to compare with
  +	 * @param negative  criteria is negated (ie NOT LIKE instead of LIKE)
  +	 * @param alias  use alias to link anAttribute to
  +	 */
   	FieldCriteria(String anAttribute, Object aValue, boolean negative, String alias)
   	{
   		super(anAttribute, aValue, negative, alias);
   	}
   
   	/**
  -	 * @return
  +	 * @return true if field name should be translated into column name
   	 */
   	public boolean isTranslateField()
   	{