Author: michiel
Date: 2009-12-01 18:57:48 +0100 (Tue, 01 Dec 2009)
New Revision: 40071

Modified:
   mmbase/trunk/core/src/main/java/org/mmbase/datatypes/LengthDataType.java
Log:
cosmetic change only. For interfaces 'public' is default

Modified: 
mmbase/trunk/core/src/main/java/org/mmbase/datatypes/LengthDataType.java
===================================================================
--- mmbase/trunk/core/src/main/java/org/mmbase/datatypes/LengthDataType.java    
2009-12-01 17:57:16 UTC (rev 40070)
+++ mmbase/trunk/core/src/main/java/org/mmbase/datatypes/LengthDataType.java    
2009-12-01 17:57:48 UTC (rev 40071)
@@ -27,45 +27,45 @@
      * this datatype. There does not exist a generic interface for this, so 
the implementation
      * will cast to the expected type (String, byte[]..)
      */
-    public long getLength(Object value);
+    long getLength(Object value);
 
     /**
      * Returns the minimum length of values for this datatype.
      * @return the minimum length as an <code>int</code>, or 0 if there is no 
minimum length.
      */
-    public long getMinLength();
+    long getMinLength();
 
     /**
      * Returns the 'minLength' restriction, containing the value, 
errormessages, and fixed status of this attribute.
      * @return the restriction as a {...@link DataType.Restriction}
      */
-    public DataType.Restriction<Long> getMinLengthRestriction();
+    DataType.Restriction<Long> getMinLengthRestriction();
 
     /**
      * Sets the minimum length of binary values for this datatype.
      * @param value the minimum length as an <code>long</code>, or 0 if there 
is no minimum length.
      * @throws Class Identifier: java.lang.UnsupportedOperationException if 
this datatype is finished
      */
-    public void setMinLength(long value);
+    void setMinLength(long value);
 
     /**
      * Returns the maximum length of values for this datatype.
      * @return the maximum length as an <code>long</code>, or a very very big 
value
      * (<code>Long.MAX_VALUE</code>) if there is no maximum length.
      */
-    public long getMaxLength();
+    long getMaxLength();
 
     /**
      * Returns the 'maxLength' restriction, containing the value, 
errormessages, and fixed status of this attribute.
      * @return the restriction as a {...@link DataType.Restriction}
      */
-    public DataType.Restriction<Long> getMaxLengthRestriction();
+    DataType.Restriction<Long> getMaxLengthRestriction();
 
     /**
      * Sets the maximum length of values for this datatype.
      * @param value see {...@link #getMaxLength}
      * @throws Class Identifier: java.lang.UnsupportedOperationException if 
this datatype is finished
      */
-    public void setMaxLength(long value);
+    void setMaxLength(long value);
 
 }

_______________________________________________
Cvs mailing list
Cvs@lists.mmbase.org
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to