Coverage Report - org.apache.ojb.soda.ConstraintImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
ConstraintImpl
N/A
N/A
1
 
 1  
 package org.apache.ojb.soda;
 2  
 
 3  
 /* Copyright 2002-2005 The Apache Software Foundation
 4  
  *
 5  
  * Licensed under the Apache License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  *
 9  
  *     http://www.apache.org/licenses/LICENSE-2.0
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 
 18  
 import org.odbms.Constraint;
 19  
 
 20  
 /**
 21  
  * @version         1.0
 22  
  * @author
 23  
  */
 24  
 public class ConstraintImpl implements Constraint
 25  
 {
 26  
 
 27  
     /**
 28  
      * Constructor for ConstraintImpl.
 29  
      */
 30  
     public ConstraintImpl()
 31  
     {
 32  
         super();
 33  
     }
 34  
 
 35  
     /*
 36  
      * @see Constraint#and(Constraint)
 37  
      */
 38  
     public Constraint and(Constraint andWith)
 39  
     {
 40  
         return null;
 41  
     }
 42  
 
 43  
     /*
 44  
      * @see Constraint#or(Constraint)
 45  
      */
 46  
     public Constraint or(Constraint orWith)
 47  
     {
 48  
         return null;
 49  
     }
 50  
 
 51  
     /*
 52  
      * @see Constraint#equal()
 53  
      */
 54  
     public Constraint equal()
 55  
     {
 56  
         return null;
 57  
     }
 58  
 
 59  
     /*
 60  
      * @see Constraint#greater()
 61  
      */
 62  
     public Constraint greater()
 63  
     {
 64  
         return null;
 65  
     }
 66  
 
 67  
     /*
 68  
      * @see Constraint#greaterOrEqual()
 69  
      */
 70  
     public Constraint greaterOrEqual()
 71  
     {
 72  
         return null;
 73  
     }
 74  
 
 75  
     /*
 76  
      * @see Constraint#smaller()
 77  
      */
 78  
     public Constraint smaller()
 79  
     {
 80  
         return null;
 81  
     }
 82  
 
 83  
     /*
 84  
      * @see Constraint#smallerOrEqual()
 85  
      */
 86  
     public Constraint smallerOrEqual()
 87  
     {
 88  
         return null;
 89  
     }
 90  
 
 91  
     /*
 92  
      * @see Constraint#identity()
 93  
      */
 94  
     public Constraint identity()
 95  
     {
 96  
         return null;
 97  
     }
 98  
 
 99  
     /*
 100  
      * @see Constraint#like()
 101  
      */
 102  
     public Constraint like()
 103  
     {
 104  
         return null;
 105  
     }
 106  
 
 107  
     /*
 108  
      * @see Constraint#contains()
 109  
      */
 110  
     public Constraint contains()
 111  
     {
 112  
         return null;
 113  
     }
 114  
 
 115  
     /*
 116  
      * @see Constraint#is()
 117  
      */
 118  
     public Constraint is()
 119  
     {
 120  
         return null;
 121  
     }
 122  
 
 123  
     /*
 124  
      * @see Constraint#not()
 125  
      */
 126  
     public Constraint not()
 127  
     {
 128  
         return null;
 129  
     }
 130  
 
 131  
 }