Coverage Report - javax.faces.component.html.HtmlCommandButton
 
Classes in this File Line Coverage Branch Coverage Complexity
HtmlCommandButton
0%
0/88
N/A
0
HtmlCommandButton$PropertyKeys
0%
0/28
N/A
0
 
 1  
 /*
 2  
  *  Licensed to the Apache Software Foundation (ASF) under one
 3  
  *  or more contributor license agreements.  See the NOTICE file
 4  
  *  distributed with this work for additional information
 5  
  *  regarding copyright ownership.  The ASF licenses this file
 6  
  *  to you under the Apache License, Version 2.0 (the
 7  
  *  "License"); you may not use this file except in compliance
 8  
  *  with the License.  You may obtain a copy of the License at
 9  
  * 
 10  
  *  http://www.apache.org/licenses/LICENSE-2.0
 11  
  * 
 12  
  *  Unless required by applicable law or agreed to in writing,
 13  
  *  software distributed under the License is distributed on an
 14  
  *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 15  
  *  KIND, either express or implied.  See the License for the
 16  
  *  specific language governing permissions and limitations
 17  
  *  under the License.
 18  
  */
 19  
 package javax.faces.component.html;
 20  
 
 21  
 import javax.el.ValueExpression;
 22  
 import javax.faces.context.FacesContext;
 23  
 import javax.faces.component.UIComponent;
 24  
 import javax.el.MethodExpression;
 25  
 import javax.faces.el.MethodBinding;
 26  
 
 27  
 
 28  
 // Generated from class javax.faces.component.html._HtmlCommandButton.
 29  
 //
 30  
 // WARNING: This file was automatically generated. Do not edit it directly,
 31  
 //          or you will lose your changes.
 32  
 public class HtmlCommandButton extends javax.faces.component.UICommand
 33  
     implements javax.faces.component.behavior.ClientBehaviorHolder
 34  
 {
 35  
 
 36  
     static public final String COMPONENT_FAMILY =
 37  
         "javax.faces.Command";
 38  
     static public final String COMPONENT_TYPE =
 39  
         "javax.faces.HtmlCommandButton";
 40  
 
 41  
 
 42  
     public HtmlCommandButton()
 43  0
     {
 44  0
         setRendererType("javax.faces.Button");
 45  0
     }
 46  
 
 47  
     @Override    
 48  
     public String getFamily()
 49  
     {
 50  0
         return COMPONENT_FAMILY;
 51  
     }
 52  
 
 53  
 
 54  0
     static private final java.util.Collection<String> CLIENT_EVENTS_LIST = 
 55  
         java.util.Collections.unmodifiableCollection(
 56  
             java.util.Arrays.asList(
 57  
              "blur"
 58  
             , "focus"
 59  
             , "change"
 60  
             , "select"
 61  
             , "click"
 62  
             , "dblclick"
 63  
             , "keydown"
 64  
             , "keypress"
 65  
             , "keyup"
 66  
             , "mousedown"
 67  
             , "mousemove"
 68  
             , "mouseout"
 69  
             , "mouseover"
 70  
             , "mouseup"
 71  
             , "action"
 72  
         ));
 73  
 
 74  
     public java.util.Collection<String> getEventNames()
 75  
     {
 76  0
         return CLIENT_EVENTS_LIST;
 77  
     }
 78  
 
 79  
     //ClientBehaviorHolder default: action
 80  
     public String getDefaultEventName()
 81  
     {
 82  0
         return "action";
 83  
     }
 84  
 
 85  
     
 86  
     // Property: image
 87  
 
 88  
     public String getImage()
 89  
     {
 90  0
         return (String) getStateHelper().eval(PropertyKeys.image);
 91  
     }
 92  
     
 93  
     public void setImage(String image)
 94  
     {
 95  0
         getStateHelper().put(PropertyKeys.image, image ); 
 96  0
     }    
 97  
     // Property: type
 98  
 
 99  
     public String getType()
 100  
     {
 101  0
         return (String) getStateHelper().eval(PropertyKeys.type, "submit");
 102  
     }
 103  
     
 104  
     public void setType(String type)
 105  
     {
 106  0
         getStateHelper().put(PropertyKeys.type, type ); 
 107  0
     }    
 108  
     // Property: label
 109  
 
 110  
     public String getLabel()
 111  
     {
 112  0
         return (String) getStateHelper().eval(PropertyKeys.label);
 113  
     }
 114  
     
 115  
     public void setLabel(String label)
 116  
     {
 117  0
         getStateHelper().put(PropertyKeys.label, label ); 
 118  0
     }    
 119  
     // Property: style
 120  
 
 121  
     public String getStyle()
 122  
     {
 123  0
         return (String) getStateHelper().eval(PropertyKeys.style);
 124  
     }
 125  
     
 126  
     public void setStyle(String style)
 127  
     {
 128  0
         getStateHelper().put(PropertyKeys.style, style ); 
 129  0
     }    
 130  
     // Property: styleClass
 131  
 
 132  
     public String getStyleClass()
 133  
     {
 134  0
         return (String) getStateHelper().eval(PropertyKeys.styleClass);
 135  
     }
 136  
     
 137  
     public void setStyleClass(String styleClass)
 138  
     {
 139  0
         getStateHelper().put(PropertyKeys.styleClass, styleClass ); 
 140  0
     }    
 141  
     // Property: alt
 142  
 
 143  
     public String getAlt()
 144  
     {
 145  0
         return (String) getStateHelper().eval(PropertyKeys.alt);
 146  
     }
 147  
     
 148  
     public void setAlt(String alt)
 149  
     {
 150  0
         getStateHelper().put(PropertyKeys.alt, alt ); 
 151  0
     }    
 152  
     // Property: tabindex
 153  
 
 154  
     public String getTabindex()
 155  
     {
 156  0
         return (String) getStateHelper().eval(PropertyKeys.tabindex);
 157  
     }
 158  
     
 159  
     public void setTabindex(String tabindex)
 160  
     {
 161  0
         getStateHelper().put(PropertyKeys.tabindex, tabindex ); 
 162  0
     }    
 163  
     // Property: onblur
 164  
 
 165  
     public String getOnblur()
 166  
     {
 167  0
         return (String) getStateHelper().eval(PropertyKeys.onblur);
 168  
     }
 169  
     
 170  
     public void setOnblur(String onblur)
 171  
     {
 172  0
         getStateHelper().put(PropertyKeys.onblur, onblur ); 
 173  0
     }    
 174  
     // Property: onfocus
 175  
 
 176  
     public String getOnfocus()
 177  
     {
 178  0
         return (String) getStateHelper().eval(PropertyKeys.onfocus);
 179  
     }
 180  
     
 181  
     public void setOnfocus(String onfocus)
 182  
     {
 183  0
         getStateHelper().put(PropertyKeys.onfocus, onfocus ); 
 184  0
     }    
 185  
     // Property: accesskey
 186  
 
 187  
     public String getAccesskey()
 188  
     {
 189  0
         return (String) getStateHelper().eval(PropertyKeys.accesskey);
 190  
     }
 191  
     
 192  
     public void setAccesskey(String accesskey)
 193  
     {
 194  0
         getStateHelper().put(PropertyKeys.accesskey, accesskey ); 
 195  0
     }    
 196  
     // Property: onchange
 197  
 
 198  
     public String getOnchange()
 199  
     {
 200  0
         return (String) getStateHelper().eval(PropertyKeys.onchange);
 201  
     }
 202  
     
 203  
     public void setOnchange(String onchange)
 204  
     {
 205  0
         getStateHelper().put(PropertyKeys.onchange, onchange ); 
 206  0
     }    
 207  
     // Property: onselect
 208  
 
 209  
     public String getOnselect()
 210  
     {
 211  0
         return (String) getStateHelper().eval(PropertyKeys.onselect);
 212  
     }
 213  
     
 214  
     public void setOnselect(String onselect)
 215  
     {
 216  0
         getStateHelper().put(PropertyKeys.onselect, onselect ); 
 217  0
     }    
 218  
     // Property: onclick
 219  
 
 220  
     public String getOnclick()
 221  
     {
 222  0
         return (String) getStateHelper().eval(PropertyKeys.onclick);
 223  
     }
 224  
     
 225  
     public void setOnclick(String onclick)
 226  
     {
 227  0
         getStateHelper().put(PropertyKeys.onclick, onclick ); 
 228  0
     }    
 229  
     // Property: ondblclick
 230  
 
 231  
     public String getOndblclick()
 232  
     {
 233  0
         return (String) getStateHelper().eval(PropertyKeys.ondblclick);
 234  
     }
 235  
     
 236  
     public void setOndblclick(String ondblclick)
 237  
     {
 238  0
         getStateHelper().put(PropertyKeys.ondblclick, ondblclick ); 
 239  0
     }    
 240  
     // Property: onkeydown
 241  
 
 242  
     public String getOnkeydown()
 243  
     {
 244  0
         return (String) getStateHelper().eval(PropertyKeys.onkeydown);
 245  
     }
 246  
     
 247  
     public void setOnkeydown(String onkeydown)
 248  
     {
 249  0
         getStateHelper().put(PropertyKeys.onkeydown, onkeydown ); 
 250  0
     }    
 251  
     // Property: onkeypress
 252  
 
 253  
     public String getOnkeypress()
 254  
     {
 255  0
         return (String) getStateHelper().eval(PropertyKeys.onkeypress);
 256  
     }
 257  
     
 258  
     public void setOnkeypress(String onkeypress)
 259  
     {
 260  0
         getStateHelper().put(PropertyKeys.onkeypress, onkeypress ); 
 261  0
     }    
 262  
     // Property: onkeyup
 263  
 
 264  
     public String getOnkeyup()
 265  
     {
 266  0
         return (String) getStateHelper().eval(PropertyKeys.onkeyup);
 267  
     }
 268  
     
 269  
     public void setOnkeyup(String onkeyup)
 270  
     {
 271  0
         getStateHelper().put(PropertyKeys.onkeyup, onkeyup ); 
 272  0
     }    
 273  
     // Property: onmousedown
 274  
 
 275  
     public String getOnmousedown()
 276  
     {
 277  0
         return (String) getStateHelper().eval(PropertyKeys.onmousedown);
 278  
     }
 279  
     
 280  
     public void setOnmousedown(String onmousedown)
 281  
     {
 282  0
         getStateHelper().put(PropertyKeys.onmousedown, onmousedown ); 
 283  0
     }    
 284  
     // Property: onmousemove
 285  
 
 286  
     public String getOnmousemove()
 287  
     {
 288  0
         return (String) getStateHelper().eval(PropertyKeys.onmousemove);
 289  
     }
 290  
     
 291  
     public void setOnmousemove(String onmousemove)
 292  
     {
 293  0
         getStateHelper().put(PropertyKeys.onmousemove, onmousemove ); 
 294  0
     }    
 295  
     // Property: onmouseout
 296  
 
 297  
     public String getOnmouseout()
 298  
     {
 299  0
         return (String) getStateHelper().eval(PropertyKeys.onmouseout);
 300  
     }
 301  
     
 302  
     public void setOnmouseout(String onmouseout)
 303  
     {
 304  0
         getStateHelper().put(PropertyKeys.onmouseout, onmouseout ); 
 305  0
     }    
 306  
     // Property: onmouseover
 307  
 
 308  
     public String getOnmouseover()
 309  
     {
 310  0
         return (String) getStateHelper().eval(PropertyKeys.onmouseover);
 311  
     }
 312  
     
 313  
     public void setOnmouseover(String onmouseover)
 314  
     {
 315  0
         getStateHelper().put(PropertyKeys.onmouseover, onmouseover ); 
 316  0
     }    
 317  
     // Property: onmouseup
 318  
 
 319  
     public String getOnmouseup()
 320  
     {
 321  0
         return (String) getStateHelper().eval(PropertyKeys.onmouseup);
 322  
     }
 323  
     
 324  
     public void setOnmouseup(String onmouseup)
 325  
     {
 326  0
         getStateHelper().put(PropertyKeys.onmouseup, onmouseup ); 
 327  0
     }    
 328  
     // Property: dir
 329  
 
 330  
     public String getDir()
 331  
     {
 332  0
         return (String) getStateHelper().eval(PropertyKeys.dir);
 333  
     }
 334  
     
 335  
     public void setDir(String dir)
 336  
     {
 337  0
         getStateHelper().put(PropertyKeys.dir, dir ); 
 338  0
     }    
 339  
     // Property: lang
 340  
 
 341  
     public String getLang()
 342  
     {
 343  0
         return (String) getStateHelper().eval(PropertyKeys.lang);
 344  
     }
 345  
     
 346  
     public void setLang(String lang)
 347  
     {
 348  0
         getStateHelper().put(PropertyKeys.lang, lang ); 
 349  0
     }    
 350  
     // Property: title
 351  
 
 352  
     public String getTitle()
 353  
     {
 354  0
         return (String) getStateHelper().eval(PropertyKeys.title);
 355  
     }
 356  
     
 357  
     public void setTitle(String title)
 358  
     {
 359  0
         getStateHelper().put(PropertyKeys.title, title ); 
 360  0
     }    
 361  
     // Property: disabled
 362  
 
 363  
     public boolean isDisabled()
 364  
     {
 365  0
         return (Boolean) getStateHelper().eval(PropertyKeys.disabled, false);
 366  
     }
 367  
     
 368  
     public void setDisabled(boolean disabled)
 369  
     {
 370  0
         getStateHelper().put(PropertyKeys.disabled, disabled ); 
 371  0
     }    
 372  
     // Property: readonly
 373  
 
 374  
     public boolean isReadonly()
 375  
     {
 376  0
         return (Boolean) getStateHelper().eval(PropertyKeys.readonly, false);
 377  
     }
 378  
     
 379  
     public void setReadonly(boolean readonly)
 380  
     {
 381  0
         getStateHelper().put(PropertyKeys.readonly, readonly ); 
 382  0
     }    
 383  
 
 384  0
     protected enum PropertyKeys
 385  
     {
 386  0
          image
 387  0
         , type
 388  0
         , label
 389  0
         , style
 390  0
         , styleClass
 391  0
         , alt
 392  0
         , tabindex
 393  0
         , onblur
 394  0
         , onfocus
 395  0
         , accesskey
 396  0
         , onchange
 397  0
         , onselect
 398  0
         , onclick
 399  0
         , ondblclick
 400  0
         , onkeydown
 401  0
         , onkeypress
 402  0
         , onkeyup
 403  0
         , onmousedown
 404  0
         , onmousemove
 405  0
         , onmouseout
 406  0
         , onmouseover
 407  0
         , onmouseup
 408  0
         , dir
 409  0
         , lang
 410  0
         , title
 411  0
         , disabled
 412  0
         , readonly
 413  
     }
 414  
 
 415  
  }