performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / editor / Page.java
index 57014a69beb9c5a458347c3efaa8f67608a970a9..282685e5edaffb774888b6f7fa6e7b1d39be2101 100644 (file)
@@ -13,6 +13,8 @@ package eu.etaxonomy.taxeditor.editor;
 import eu.etaxonomy.taxeditor.editor.name.TaxonNameEditor;
 
 /**
+ * <p>Page class.</p>
+ *
  * @author n.hoffmann
  * @created 30.04.2009
  * @version 1.0
@@ -30,14 +32,29 @@ public enum Page {
                this.index = index;
        }
        
+       /**
+        * <p>Getter for the field <code>title</code>.</p>
+        *
+        * @return a {@link java.lang.String} object.
+        */
        public String getTitle(){
                return this.title;
        }
        
+       /**
+        * <p>Getter for the field <code>clazz</code>.</p>
+        *
+        * @return a {@link java.lang.Class} object.
+        */
        public Class<?> getClazz(){
                return this.clazz;
        }
        
+       /**
+        * <p>Getter for the field <code>index</code>.</p>
+        *
+        * @return a int.
+        */
        public int getIndex(){
                return this.index;
        }