]> source.dussan.org Git - vaadin-framework.git/commitdiff
booleanValue should be public
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>
Fri, 4 Jul 2008 07:08:46 +0000 (07:08 +0000)
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>
Fri, 4 Jul 2008 07:08:46 +0000 (07:08 +0000)
svn changeset:5053/svn branch:trunk

src/com/itmill/toolkit/ui/Button.java

index 3184ec554dbec217e8bc3806e9ac3301c5a6c0be..f24a9ee63c9d9be81d18747211fda8e3569272ec 100644 (file)
@@ -214,7 +214,7 @@ public class Button extends AbstractField {
      * 
      * @return True iff the button is pressed down or checked.
      */
-    boolean booleanValue() {
+    public boolean booleanValue() {
         return ((Boolean) getValue()).booleanValue();
     }