You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jaxme-dev@ws.apache.org by jo...@apache.org on 2004/12/02 21:41:13 UTC

cvs commit: ws-jaxme/src/js/org/apache/ws/jaxme/sqls BooleanConstraint.java

jochen      2004/12/02 12:41:13

  Modified:    src/js/org/apache/ws/jaxme/sqls BooleanConstraint.java
  Log:
  Eliminated warnings.
  
  Revision  Changes    Path
  1.7       +30 -10    ws-jaxme/src/js/org/apache/ws/jaxme/sqls/BooleanConstraint.java
  
  Index: BooleanConstraint.java
  ===================================================================
  RCS file: /home/cvs/ws-jaxme/src/js/org/apache/ws/jaxme/sqls/BooleanConstraint.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- BooleanConstraint.java	22 Sep 2004 10:05:53 -0000	1.6
  +++ BooleanConstraint.java	2 Dec 2004 20:41:13 -0000	1.7
  @@ -24,16 +24,36 @@
     /** <p>The type of a boolean constraint.</p>
      */
     public interface Type {
  -    public static final Type EQ = new BooleanConstraintImpl.TypeImpl("EQ");
  -    public static final Type NE = new BooleanConstraintImpl.TypeImpl("NE");
  -    public static final Type LT = new BooleanConstraintImpl.TypeImpl("LT");
  -    public static final Type GT = new BooleanConstraintImpl.TypeImpl("GT");
  -    public static final Type LE = new BooleanConstraintImpl.TypeImpl("LE");
  -    public static final Type GE = new BooleanConstraintImpl.TypeImpl("GE");
  -    public static final Type LIKE = new BooleanConstraintImpl.TypeImpl("LIKE");
  -    public static final Type ISNULL = new BooleanConstraintImpl.TypeImpl("ISNULL");
  -    public static final Type IN = new BooleanConstraintImpl.TypeImpl("IN");
  -    public static final Type EXISTS = new BooleanConstraintImpl.TypeImpl("EXISTS");
  +      /** A boolean constraint matching the "equal" condition.
  +       */
  +      public static final Type EQ = new BooleanConstraintImpl.TypeImpl("EQ");
  +      /** A boolean constraint matching the "not equal" condition.
  +       */
  +      public static final Type NE = new BooleanConstraintImpl.TypeImpl("NE");
  +      /** A boolean constraint matching the "lower than" condition.
  +       */
  +      public static final Type LT = new BooleanConstraintImpl.TypeImpl("LT");
  +      /** A boolean constraint matching the "greater than" condition.
  +       */
  +      public static final Type GT = new BooleanConstraintImpl.TypeImpl("GT");
  +      /** A boolean constraint matching the "lower or equal" condition.
  +       */
  +      public static final Type LE = new BooleanConstraintImpl.TypeImpl("LE");
  +      /** A boolean constraint matching the "greater or equal" condition.
  +       */
  +      public static final Type GE = new BooleanConstraintImpl.TypeImpl("GE");
  +      /** A boolean constraint matching the "LIKE" condition.
  +       */
  +      public static final Type LIKE = new BooleanConstraintImpl.TypeImpl("LIKE");
  +      /** A boolean constraint matching the "IS NULL" condition.
  +       */
  +      public static final Type ISNULL = new BooleanConstraintImpl.TypeImpl("ISNULL");
  +      /** A boolean constraint matching the "IN" condition.
  +       */
  +      public static final Type IN = new BooleanConstraintImpl.TypeImpl("IN");
  +      /** A boolean constraint matching the "EXISTS" condition.
  +       */
  +      public static final Type EXISTS = new BooleanConstraintImpl.TypeImpl("EXISTS");
     }
   
     /** <p>Returns the boolean constraints type.</p>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jaxme-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: jaxme-dev-help@ws.apache.org