first bits for #3097 (disable editors if a user has insufficient grants for a taxon...
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / IMultiPageTaxonEditorPage.java
index b243adfdd15642037e7f8ff6c622882796f153d7..5f7e9d6f6e165ad13fb6a0ca4eccaf4dc66d46f5 100644 (file)
@@ -45,14 +45,23 @@ public interface IMultiPageTaxonEditorPage extends IEditorPart {
        public boolean isRedrawing();
 
        /**
+        * Sets the editor page into enabled or disabled state depending on the 
+        * value of the supplied parameter <code>enabled</code>.
         * 
         * @param enabled
         */
        public void setEnabled(boolean enabled);
 
        /**
-        * 
+        * Sets the editor page into disabled state and changes the 
+        * appearance accordingly. 
         */
        void setDisabled();
        
+       /**
+        * Sets the editor page into disabled state and changes the 
+        * appearance in order to indicate that an error has occurred.  
+        */
+       public void setOnError();
+       
 }