- Remove the redundant and misleading etc/Grammar file.
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / CQLPrefix.java
index 9984495..fd751a7 100644 (file)
@@ -1,4 +1,4 @@
-// $Id: CQLPrefix.java,v 1.2 2002-11-15 12:02:29 mike Exp $
+// $Id: CQLPrefix.java,v 1.4 2002-11-20 09:49:29 mike Exp $
 
 package org.z3950.zing.cql;
 import java.lang.String;
@@ -6,20 +6,20 @@ import java.lang.String;
 /**
  * Represents a CQL prefix mapping from short name to long identifier.
  *
- * @version    $Id: CQLPrefix.java,v 1.2 2002-11-15 12:02:29 mike Exp $
+ * @version    $Id: CQLPrefix.java,v 1.4 2002-11-20 09:49:29 mike Exp $
  */
 public class CQLPrefix {
     /**
-     * The short name of the prefix mapping - that is, the prefix
+     * The short name of the prefix mapping.  That is, the prefix
      * itself, such as <TT>dc</TT>, as it might be used in a qualifier
      * like <TT>dc.title</TT>.
      */
     public String name;
 
     /**
-     * The full identifier name of the prefix mapping - that is, the prefix
-     * itself, such as <TT>dc</TT>, as it might be used in a qualifier
-     * like <TT>dc.title</TT>.
+     * The full identifier name of the prefix mapping.  That is,
+     * typically, a URI permanently allocated to a specific qualifier
+     * set, such as <TT>http://zthes.z3950.org/cql/1.0<TT>.
      */
     public String identifier;