You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/external-src/com/thoughtworks/sql/.svn/text-base/EqCriterion.java.svn-base

11 lines
247 B
Plaintext

package com.thoughtworks.sql;
public class EqCriterion extends UnaryCriterion {
private final Object value;
EqCriterion(Field field, Object value) {
super(field, Operator.eq, value);
this.value = value;
}
}