X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Forg%2Fz3950%2Fzing%2Fcql%2FCQLRelation.java;h=cb2dfb649b7dbbaaee4f6aa0ee7e957d32aee48f;hb=f3c88fe15ee06a671407a0368e449db991526802;hp=c2ae57c7fea7cf5f26b2c10846b034a76db85c47;hpb=1691df1a44932a9e93caf5cb6005e70ee8869c72;p=cql-java-moved-to-github.git diff --git a/src/org/z3950/zing/cql/CQLRelation.java b/src/org/z3950/zing/cql/CQLRelation.java index c2ae57c..cb2dfb6 100644 --- a/src/org/z3950/zing/cql/CQLRelation.java +++ b/src/org/z3950/zing/cql/CQLRelation.java @@ -1,4 +1,4 @@ -// $Id: CQLRelation.java,v 1.9 2002-12-06 12:34:45 mike Exp $ +// $Id: CQLRelation.java,v 1.11 2003-09-04 21:56:46 mike Exp $ package org.z3950.zing.cql; import java.util.Vector; @@ -8,7 +8,7 @@ import java.lang.StringBuffer; /** * Represents a relation between a CQL qualifier and term. * - * @version $Id: CQLRelation.java,v 1.9 2002-12-06 12:34:45 mike Exp $ + * @version $Id: CQLRelation.java,v 1.11 2003-09-04 21:56:46 mike Exp $ */ public class CQLRelation extends CQLNode { ModifierSet ms; @@ -17,8 +17,9 @@ public class CQLRelation extends CQLNode { * Creates a new CQLRelation with the specified base relation. * Typical base relations include the usual six ordering relations * (<=, >, etc.), the text - * relations any, all and exact and the - * server-choice relation scr. + * relations any, all and exact, the + * server-choice relation scr and profiled relations of + * the form prefix.name. */ public CQLRelation(String base) { ms = new ModifierSet(base); @@ -71,7 +72,7 @@ public class CQLRelation extends CQLNode { throw new Error("CQLRelation.toPQF() can never be called"); } - public byte[] toType1(Properties config) { - throw new Error("CQLRelation.toType1() can never be called"); + public byte[] toType1BER(Properties config) { + throw new Error("CQLRelation.toType1BER() can never be called"); } }