001: package org.apache.ojb.soda;
002:
003: /* Copyright 2002-2005 The Apache Software Foundation
004: *
005: * Licensed under the Apache License, Version 2.0 (the "License");
006: * you may not use this file except in compliance with the License.
007: * You may obtain a copy of the License at
008: *
009: * http://www.apache.org/licenses/LICENSE-2.0
010: *
011: * Unless required by applicable law or agreed to in writing, software
012: * distributed under the License is distributed on an "AS IS" BASIS,
013: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014: * See the License for the specific language governing permissions and
015: * limitations under the License.
016: */
017:
018: import org.odbms.Constraint;
019:
020: /**
021: * @version 1.0
022: * @author
023: */
024: public class ConstraintImpl implements Constraint {
025:
026: /**
027: * Constructor for ConstraintImpl.
028: */
029: public ConstraintImpl() {
030: super ();
031: }
032:
033: /*
034: * @see Constraint#and(Constraint)
035: */
036: public Constraint and(Constraint andWith) {
037: return null;
038: }
039:
040: /*
041: * @see Constraint#or(Constraint)
042: */
043: public Constraint or(Constraint orWith) {
044: return null;
045: }
046:
047: /*
048: * @see Constraint#equal()
049: */
050: public Constraint equal() {
051: return null;
052: }
053:
054: /*
055: * @see Constraint#greater()
056: */
057: public Constraint greater() {
058: return null;
059: }
060:
061: /*
062: * @see Constraint#greaterOrEqual()
063: */
064: public Constraint greaterOrEqual() {
065: return null;
066: }
067:
068: /*
069: * @see Constraint#smaller()
070: */
071: public Constraint smaller() {
072: return null;
073: }
074:
075: /*
076: * @see Constraint#smallerOrEqual()
077: */
078: public Constraint smallerOrEqual() {
079: return null;
080: }
081:
082: /*
083: * @see Constraint#identity()
084: */
085: public Constraint identity() {
086: return null;
087: }
088:
089: /*
090: * @see Constraint#like()
091: */
092: public Constraint like() {
093: return null;
094: }
095:
096: /*
097: * @see Constraint#contains()
098: */
099: public Constraint contains() {
100: return null;
101: }
102:
103: /*
104: * @see Constraint#is()
105: */
106: public Constraint is() {
107: return null;
108: }
109:
110: /*
111: * @see Constraint#not()
112: */
113: public Constraint not() {
114: return null;
115: }
116:
117: }
|