From f8722e8bef9c0b9d9a553989220e9e1d88dd9e98 Mon Sep 17 00:00:00 2001 From: mike Date: Fri, 29 Jun 2007 11:56:06 +0000 Subject: [PATCH] Pass-through constructor. --- src/org/z3950/zing/cql/CQLProxNode.java | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/org/z3950/zing/cql/CQLProxNode.java b/src/org/z3950/zing/cql/CQLProxNode.java index 23eab22..0c0044d 100644 --- a/src/org/z3950/zing/cql/CQLProxNode.java +++ b/src/org/z3950/zing/cql/CQLProxNode.java @@ -1,4 +1,4 @@ -// $Id: CQLProxNode.java,v 1.10 2007-06-29 10:24:03 mike Exp $ +// $Id: CQLProxNode.java,v 1.11 2007-06-29 11:56:06 mike Exp $ package org.z3950.zing.cql; import java.util.Vector; @@ -10,10 +10,17 @@ import java.util.Vector; * candidate records which are sufficiently close to each other, as * specified by a set of proximity parameters. * - * @version $Id: CQLProxNode.java,v 1.10 2007-06-29 10:24:03 mike Exp $ + * @version $Id: CQLProxNode.java,v 1.11 2007-06-29 11:56:06 mike Exp $ */ public class CQLProxNode extends CQLBooleanNode { /** + * Creates a new PROX node with the specified left- and right-hand + * sides and modifiers. + */ + public CQLProxNode(CQLNode left, CQLNode right, ModifierSet ms) { + super(left, right, ms); + } + /** * Creates a new, incomplete, proximity node with the * specified left-hand side. No right-hand side is specified at * this stage: that must be specified later, using the -- 1.7.10.4