Move JavaDocs around
[cql-java-moved-to-github.git] / src / main / java / org / z3950 / zing / cql / CQLPrefix.java
index fac6503..cb3043f 100644 (file)
@@ -8,24 +8,26 @@ package org.z3950.zing.cql;
  * @version    $Id: CQLPrefix.java,v 1.5 2007-06-27 22:39:55 mike Exp $
  */
 public class CQLPrefix {
+
+    String name;
+
     /**
      * The short name of the prefix mapping.  That is, the prefix
      * itself, such as <TT>dc</TT>, as it might be used in an index
      * like <TT>dc.title</TT>.
      */
-    String name;
-
     public String getName() {
         return name;
     }
 
+    String identifier;
+
     /**
      * The full identifier name of the prefix mapping.  That is,
      * typically, a URI permanently allocated to a specific index
      * set, such as <TT>http://zthes.z3950.org/cql/1.0<TT>.
      */
-    String identifier;
-
     public String getIdentifier() {
         return identifier;
     }