1 package mobisnap.mobile_trx; 2 3 /*** 4 * Represents a condition over database columns - used in reservations 5 */ 6 public abstract class ColumnCondition 7 implements java.io.Serializable 8 { 9 public abstract void sourceCode( StringBuffer buffer); 10 11 /*** 12 * Returns true if this condition is the same that is represented by the 13 * given node 14 */ 15 public abstract boolean sameCondition( SimpleNode node); 16 17 /*** 18 * Returns true if this condition intersected with the given node equals 19 * the given condition, resulting int the fact that the given node "belongs" to this condition 20 */ 21 public abstract boolean belongsTo( RelopCondition cond); 22 23 }

This page was automatically generated by Maven