Coverage Report - javax.faces.component.html.HtmlInputSecret
 
Classes in this File Line Coverage Branch Coverage Complexity
HtmlInputSecret
0%
0/315
0%
0/116
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.faces.convert.Converter;
 25  
 import javax.faces.el.MethodBinding;
 26  
 
 27  
 
 28  
 // Generated from class javax.faces.component.html._HtmlInputSecret.
 29  
 //
 30  
 // WARNING: This file was automatically generated. Do not edit it directly,
 31  
 //          or you will lose your changes.
 32  
 public class HtmlInputSecret extends javax.faces.component.UIInput
 33  
 {
 34  
 
 35  
     static public final String COMPONENT_FAMILY =
 36  
         "javax.faces.Input";
 37  
     static public final String COMPONENT_TYPE =
 38  
         "javax.faces.HtmlInputSecret";
 39  
 
 40  
 
 41  
     public HtmlInputSecret()
 42  0
     {
 43  0
         setRendererType("javax.faces.Secret");
 44  0
     }
 45  
 
 46  
     @Override    
 47  
     public String getFamily()
 48  
     {
 49  0
         return COMPONENT_FAMILY;
 50  
     }
 51  
     
 52  
 
 53  
     // Property: maxlength
 54  
     private int _maxlength;
 55  
     
 56  
     private boolean _maxlengthSet;
 57  
     
 58  
     public int getMaxlength()
 59  
     {
 60  0
         if (_maxlengthSet)
 61  
         {
 62  0
             return _maxlength;
 63  
         }
 64  0
         ValueExpression vb = getValueExpression("maxlength");
 65  0
         if (vb != null)
 66  
         {
 67  0
             return ((Integer) vb.getValue(getFacesContext().getELContext())).intValue();
 68  
         }
 69  0
         return Integer.MIN_VALUE; 
 70  
     }
 71  
 
 72  
     public void setMaxlength(int maxlength)
 73  
     {
 74  0
         this._maxlength = maxlength;
 75  0
         this._maxlengthSet = true;        
 76  0
     }
 77  
     // Property: redisplay
 78  
     private boolean _redisplay;
 79  
     
 80  
     private boolean _redisplaySet;
 81  
     
 82  
     public boolean isRedisplay()
 83  
     {
 84  0
         if (_redisplaySet)
 85  
         {
 86  0
             return _redisplay;
 87  
         }
 88  0
         ValueExpression vb = getValueExpression("redisplay");
 89  0
         if (vb != null)
 90  
         {
 91  0
             return ((Boolean) vb.getValue(getFacesContext().getELContext())).booleanValue();
 92  
         }
 93  0
         return false; 
 94  
     }
 95  
 
 96  
     public void setRedisplay(boolean redisplay)
 97  
     {
 98  0
         this._redisplay = redisplay;
 99  0
         this._redisplaySet = true;        
 100  0
     }
 101  
     // Property: size
 102  
     private int _size;
 103  
     
 104  
     private boolean _sizeSet;
 105  
     
 106  
     public int getSize()
 107  
     {
 108  0
         if (_sizeSet)
 109  
         {
 110  0
             return _size;
 111  
         }
 112  0
         ValueExpression vb = getValueExpression("size");
 113  0
         if (vb != null)
 114  
         {
 115  0
             return ((Integer) vb.getValue(getFacesContext().getELContext())).intValue();
 116  
         }
 117  0
         return Integer.MIN_VALUE; 
 118  
     }
 119  
 
 120  
     public void setSize(int size)
 121  
     {
 122  0
         this._size = size;
 123  0
         this._sizeSet = true;        
 124  0
     }
 125  
     // Property: autocomplete
 126  
     private String _autocomplete;
 127  
     
 128  
     public String getAutocomplete()
 129  
     {
 130  0
         if (_autocomplete != null)
 131  
         {
 132  0
             return _autocomplete;
 133  
         }
 134  0
         ValueExpression vb = getValueExpression("autocomplete");
 135  0
         if (vb != null)
 136  
         {
 137  0
             return (String) vb.getValue(getFacesContext().getELContext());
 138  
         }
 139  0
         return null;
 140  
     }
 141  
 
 142  
     public void setAutocomplete(String autocomplete)
 143  
     {
 144  0
         this._autocomplete = autocomplete;
 145  0
     }
 146  
     // Property: label
 147  
     private String _label;
 148  
     
 149  
     public String getLabel()
 150  
     {
 151  0
         if (_label != null)
 152  
         {
 153  0
             return _label;
 154  
         }
 155  0
         ValueExpression vb = getValueExpression("label");
 156  0
         if (vb != null)
 157  
         {
 158  0
             return (String) vb.getValue(getFacesContext().getELContext());
 159  
         }
 160  0
         return null;
 161  
     }
 162  
 
 163  
     public void setLabel(String label)
 164  
     {
 165  0
         this._label = label;
 166  0
     }
 167  
     // Property: style
 168  
     private String _style;
 169  
     
 170  
     public String getStyle()
 171  
     {
 172  0
         if (_style != null)
 173  
         {
 174  0
             return _style;
 175  
         }
 176  0
         ValueExpression vb = getValueExpression("style");
 177  0
         if (vb != null)
 178  
         {
 179  0
             return (String) vb.getValue(getFacesContext().getELContext());
 180  
         }
 181  0
         return null;
 182  
     }
 183  
 
 184  
     public void setStyle(String style)
 185  
     {
 186  0
         this._style = style;
 187  0
     }
 188  
     // Property: styleClass
 189  
     private String _styleClass;
 190  
     
 191  
     public String getStyleClass()
 192  
     {
 193  0
         if (_styleClass != null)
 194  
         {
 195  0
             return _styleClass;
 196  
         }
 197  0
         ValueExpression vb = getValueExpression("styleClass");
 198  0
         if (vb != null)
 199  
         {
 200  0
             return (String) vb.getValue(getFacesContext().getELContext());
 201  
         }
 202  0
         return null;
 203  
     }
 204  
 
 205  
     public void setStyleClass(String styleClass)
 206  
     {
 207  0
         this._styleClass = styleClass;
 208  0
     }
 209  
     // Property: alt
 210  
     private String _alt;
 211  
     
 212  
     public String getAlt()
 213  
     {
 214  0
         if (_alt != null)
 215  
         {
 216  0
             return _alt;
 217  
         }
 218  0
         ValueExpression vb = getValueExpression("alt");
 219  0
         if (vb != null)
 220  
         {
 221  0
             return (String) vb.getValue(getFacesContext().getELContext());
 222  
         }
 223  0
         return null;
 224  
     }
 225  
 
 226  
     public void setAlt(String alt)
 227  
     {
 228  0
         this._alt = alt;
 229  0
     }
 230  
     // Property: tabindex
 231  
     private String _tabindex;
 232  
     
 233  
     public String getTabindex()
 234  
     {
 235  0
         if (_tabindex != null)
 236  
         {
 237  0
             return _tabindex;
 238  
         }
 239  0
         ValueExpression vb = getValueExpression("tabindex");
 240  0
         if (vb != null)
 241  
         {
 242  0
             return (String) vb.getValue(getFacesContext().getELContext());
 243  
         }
 244  0
         return null;
 245  
     }
 246  
 
 247  
     public void setTabindex(String tabindex)
 248  
     {
 249  0
         this._tabindex = tabindex;
 250  0
     }
 251  
     // Property: onblur
 252  
     private String _onblur;
 253  
     
 254  
     public String getOnblur()
 255  
     {
 256  0
         if (_onblur != null)
 257  
         {
 258  0
             return _onblur;
 259  
         }
 260  0
         ValueExpression vb = getValueExpression("onblur");
 261  0
         if (vb != null)
 262  
         {
 263  0
             return (String) vb.getValue(getFacesContext().getELContext());
 264  
         }
 265  0
         return null;
 266  
     }
 267  
 
 268  
     public void setOnblur(String onblur)
 269  
     {
 270  0
         this._onblur = onblur;
 271  0
     }
 272  
     // Property: onfocus
 273  
     private String _onfocus;
 274  
     
 275  
     public String getOnfocus()
 276  
     {
 277  0
         if (_onfocus != null)
 278  
         {
 279  0
             return _onfocus;
 280  
         }
 281  0
         ValueExpression vb = getValueExpression("onfocus");
 282  0
         if (vb != null)
 283  
         {
 284  0
             return (String) vb.getValue(getFacesContext().getELContext());
 285  
         }
 286  0
         return null;
 287  
     }
 288  
 
 289  
     public void setOnfocus(String onfocus)
 290  
     {
 291  0
         this._onfocus = onfocus;
 292  0
     }
 293  
     // Property: accesskey
 294  
     private String _accesskey;
 295  
     
 296  
     public String getAccesskey()
 297  
     {
 298  0
         if (_accesskey != null)
 299  
         {
 300  0
             return _accesskey;
 301  
         }
 302  0
         ValueExpression vb = getValueExpression("accesskey");
 303  0
         if (vb != null)
 304  
         {
 305  0
             return (String) vb.getValue(getFacesContext().getELContext());
 306  
         }
 307  0
         return null;
 308  
     }
 309  
 
 310  
     public void setAccesskey(String accesskey)
 311  
     {
 312  0
         this._accesskey = accesskey;
 313  0
     }
 314  
     // Property: onchange
 315  
     private String _onchange;
 316  
     
 317  
     public String getOnchange()
 318  
     {
 319  0
         if (_onchange != null)
 320  
         {
 321  0
             return _onchange;
 322  
         }
 323  0
         ValueExpression vb = getValueExpression("onchange");
 324  0
         if (vb != null)
 325  
         {
 326  0
             return (String) vb.getValue(getFacesContext().getELContext());
 327  
         }
 328  0
         return null;
 329  
     }
 330  
 
 331  
     public void setOnchange(String onchange)
 332  
     {
 333  0
         this._onchange = onchange;
 334  0
     }
 335  
     // Property: onselect
 336  
     private String _onselect;
 337  
     
 338  
     public String getOnselect()
 339  
     {
 340  0
         if (_onselect != null)
 341  
         {
 342  0
             return _onselect;
 343  
         }
 344  0
         ValueExpression vb = getValueExpression("onselect");
 345  0
         if (vb != null)
 346  
         {
 347  0
             return (String) vb.getValue(getFacesContext().getELContext());
 348  
         }
 349  0
         return null;
 350  
     }
 351  
 
 352  
     public void setOnselect(String onselect)
 353  
     {
 354  0
         this._onselect = onselect;
 355  0
     }
 356  
     // Property: onclick
 357  
     private String _onclick;
 358  
     
 359  
     public String getOnclick()
 360  
     {
 361  0
         if (_onclick != null)
 362  
         {
 363  0
             return _onclick;
 364  
         }
 365  0
         ValueExpression vb = getValueExpression("onclick");
 366  0
         if (vb != null)
 367  
         {
 368  0
             return (String) vb.getValue(getFacesContext().getELContext());
 369  
         }
 370  0
         return null;
 371  
     }
 372  
 
 373  
     public void setOnclick(String onclick)
 374  
     {
 375  0
         this._onclick = onclick;
 376  0
     }
 377  
     // Property: ondblclick
 378  
     private String _ondblclick;
 379  
     
 380  
     public String getOndblclick()
 381  
     {
 382  0
         if (_ondblclick != null)
 383  
         {
 384  0
             return _ondblclick;
 385  
         }
 386  0
         ValueExpression vb = getValueExpression("ondblclick");
 387  0
         if (vb != null)
 388  
         {
 389  0
             return (String) vb.getValue(getFacesContext().getELContext());
 390  
         }
 391  0
         return null;
 392  
     }
 393  
 
 394  
     public void setOndblclick(String ondblclick)
 395  
     {
 396  0
         this._ondblclick = ondblclick;
 397  0
     }
 398  
     // Property: onkeydown
 399  
     private String _onkeydown;
 400  
     
 401  
     public String getOnkeydown()
 402  
     {
 403  0
         if (_onkeydown != null)
 404  
         {
 405  0
             return _onkeydown;
 406  
         }
 407  0
         ValueExpression vb = getValueExpression("onkeydown");
 408  0
         if (vb != null)
 409  
         {
 410  0
             return (String) vb.getValue(getFacesContext().getELContext());
 411  
         }
 412  0
         return null;
 413  
     }
 414  
 
 415  
     public void setOnkeydown(String onkeydown)
 416  
     {
 417  0
         this._onkeydown = onkeydown;
 418  0
     }
 419  
     // Property: onkeypress
 420  
     private String _onkeypress;
 421  
     
 422  
     public String getOnkeypress()
 423  
     {
 424  0
         if (_onkeypress != null)
 425  
         {
 426  0
             return _onkeypress;
 427  
         }
 428  0
         ValueExpression vb = getValueExpression("onkeypress");
 429  0
         if (vb != null)
 430  
         {
 431  0
             return (String) vb.getValue(getFacesContext().getELContext());
 432  
         }
 433  0
         return null;
 434  
     }
 435  
 
 436  
     public void setOnkeypress(String onkeypress)
 437  
     {
 438  0
         this._onkeypress = onkeypress;
 439  0
     }
 440  
     // Property: onkeyup
 441  
     private String _onkeyup;
 442  
     
 443  
     public String getOnkeyup()
 444  
     {
 445  0
         if (_onkeyup != null)
 446  
         {
 447  0
             return _onkeyup;
 448  
         }
 449  0
         ValueExpression vb = getValueExpression("onkeyup");
 450  0
         if (vb != null)
 451  
         {
 452  0
             return (String) vb.getValue(getFacesContext().getELContext());
 453  
         }
 454  0
         return null;
 455  
     }
 456  
 
 457  
     public void setOnkeyup(String onkeyup)
 458  
     {
 459  0
         this._onkeyup = onkeyup;
 460  0
     }
 461  
     // Property: onmousedown
 462  
     private String _onmousedown;
 463  
     
 464  
     public String getOnmousedown()
 465  
     {
 466  0
         if (_onmousedown != null)
 467  
         {
 468  0
             return _onmousedown;
 469  
         }
 470  0
         ValueExpression vb = getValueExpression("onmousedown");
 471  0
         if (vb != null)
 472  
         {
 473  0
             return (String) vb.getValue(getFacesContext().getELContext());
 474  
         }
 475  0
         return null;
 476  
     }
 477  
 
 478  
     public void setOnmousedown(String onmousedown)
 479  
     {
 480  0
         this._onmousedown = onmousedown;
 481  0
     }
 482  
     // Property: onmousemove
 483  
     private String _onmousemove;
 484  
     
 485  
     public String getOnmousemove()
 486  
     {
 487  0
         if (_onmousemove != null)
 488  
         {
 489  0
             return _onmousemove;
 490  
         }
 491  0
         ValueExpression vb = getValueExpression("onmousemove");
 492  0
         if (vb != null)
 493  
         {
 494  0
             return (String) vb.getValue(getFacesContext().getELContext());
 495  
         }
 496  0
         return null;
 497  
     }
 498  
 
 499  
     public void setOnmousemove(String onmousemove)
 500  
     {
 501  0
         this._onmousemove = onmousemove;
 502  0
     }
 503  
     // Property: onmouseout
 504  
     private String _onmouseout;
 505  
     
 506  
     public String getOnmouseout()
 507  
     {
 508  0
         if (_onmouseout != null)
 509  
         {
 510  0
             return _onmouseout;
 511  
         }
 512  0
         ValueExpression vb = getValueExpression("onmouseout");
 513  0
         if (vb != null)
 514  
         {
 515  0
             return (String) vb.getValue(getFacesContext().getELContext());
 516  
         }
 517  0
         return null;
 518  
     }
 519  
 
 520  
     public void setOnmouseout(String onmouseout)
 521  
     {
 522  0
         this._onmouseout = onmouseout;
 523  0
     }
 524  
     // Property: onmouseover
 525  
     private String _onmouseover;
 526  
     
 527  
     public String getOnmouseover()
 528  
     {
 529  0
         if (_onmouseover != null)
 530  
         {
 531  0
             return _onmouseover;
 532  
         }
 533  0
         ValueExpression vb = getValueExpression("onmouseover");
 534  0
         if (vb != null)
 535  
         {
 536  0
             return (String) vb.getValue(getFacesContext().getELContext());
 537  
         }
 538  0
         return null;
 539  
     }
 540  
 
 541  
     public void setOnmouseover(String onmouseover)
 542  
     {
 543  0
         this._onmouseover = onmouseover;
 544  0
     }
 545  
     // Property: onmouseup
 546  
     private String _onmouseup;
 547  
     
 548  
     public String getOnmouseup()
 549  
     {
 550  0
         if (_onmouseup != null)
 551  
         {
 552  0
             return _onmouseup;
 553  
         }
 554  0
         ValueExpression vb = getValueExpression("onmouseup");
 555  0
         if (vb != null)
 556  
         {
 557  0
             return (String) vb.getValue(getFacesContext().getELContext());
 558  
         }
 559  0
         return null;
 560  
     }
 561  
 
 562  
     public void setOnmouseup(String onmouseup)
 563  
     {
 564  0
         this._onmouseup = onmouseup;
 565  0
     }
 566  
     // Property: dir
 567  
     private String _dir;
 568  
     
 569  
     public String getDir()
 570  
     {
 571  0
         if (_dir != null)
 572  
         {
 573  0
             return _dir;
 574  
         }
 575  0
         ValueExpression vb = getValueExpression("dir");
 576  0
         if (vb != null)
 577  
         {
 578  0
             return (String) vb.getValue(getFacesContext().getELContext());
 579  
         }
 580  0
         return null;
 581  
     }
 582  
 
 583  
     public void setDir(String dir)
 584  
     {
 585  0
         this._dir = dir;
 586  0
     }
 587  
     // Property: lang
 588  
     private String _lang;
 589  
     
 590  
     public String getLang()
 591  
     {
 592  0
         if (_lang != null)
 593  
         {
 594  0
             return _lang;
 595  
         }
 596  0
         ValueExpression vb = getValueExpression("lang");
 597  0
         if (vb != null)
 598  
         {
 599  0
             return (String) vb.getValue(getFacesContext().getELContext());
 600  
         }
 601  0
         return null;
 602  
     }
 603  
 
 604  
     public void setLang(String lang)
 605  
     {
 606  0
         this._lang = lang;
 607  0
     }
 608  
     // Property: title
 609  
     private String _title;
 610  
     
 611  
     public String getTitle()
 612  
     {
 613  0
         if (_title != null)
 614  
         {
 615  0
             return _title;
 616  
         }
 617  0
         ValueExpression vb = getValueExpression("title");
 618  0
         if (vb != null)
 619  
         {
 620  0
             return (String) vb.getValue(getFacesContext().getELContext());
 621  
         }
 622  0
         return null;
 623  
     }
 624  
 
 625  
     public void setTitle(String title)
 626  
     {
 627  0
         this._title = title;
 628  0
     }
 629  
     // Property: disabled
 630  
     private boolean _disabled;
 631  
     
 632  
     private boolean _disabledSet;
 633  
     
 634  
     public boolean isDisabled()
 635  
     {
 636  0
         if (_disabledSet)
 637  
         {
 638  0
             return _disabled;
 639  
         }
 640  0
         ValueExpression vb = getValueExpression("disabled");
 641  0
         if (vb != null)
 642  
         {
 643  0
             return ((Boolean) vb.getValue(getFacesContext().getELContext())).booleanValue();
 644  
         }
 645  0
         return false; 
 646  
     }
 647  
 
 648  
     public void setDisabled(boolean disabled)
 649  
     {
 650  0
         this._disabled = disabled;
 651  0
         this._disabledSet = true;        
 652  0
     }
 653  
     // Property: readonly
 654  
     private boolean _readonly;
 655  
     
 656  
     private boolean _readonlySet;
 657  
     
 658  
     public boolean isReadonly()
 659  
     {
 660  0
         if (_readonlySet)
 661  
         {
 662  0
             return _readonly;
 663  
         }
 664  0
         ValueExpression vb = getValueExpression("readonly");
 665  0
         if (vb != null)
 666  
         {
 667  0
             return ((Boolean) vb.getValue(getFacesContext().getELContext())).booleanValue();
 668  
         }
 669  0
         return false; 
 670  
     }
 671  
 
 672  
     public void setReadonly(boolean readonly)
 673  
     {
 674  0
         this._readonly = readonly;
 675  0
         this._readonlySet = true;        
 676  0
     }
 677  
 
 678  
     @Override
 679  
     public Object saveState(FacesContext facesContext)
 680  
     {
 681  0
         Object[] values = new Object[35];
 682  0
         values[0] = super.saveState(facesContext);
 683  0
         values[1] = Integer.valueOf(_maxlength);
 684  0
         values[2] = Boolean.valueOf(_maxlengthSet);
 685  0
         values[3] = Boolean.valueOf(_redisplay);
 686  0
         values[4] = Boolean.valueOf(_redisplaySet);
 687  0
         values[5] = Integer.valueOf(_size);
 688  0
         values[6] = Boolean.valueOf(_sizeSet);
 689  0
         values[7] = _autocomplete;
 690  0
         values[8] = _label;
 691  0
         values[9] = _style;
 692  0
         values[10] = _styleClass;
 693  0
         values[11] = _alt;
 694  0
         values[12] = _tabindex;
 695  0
         values[13] = _onblur;
 696  0
         values[14] = _onfocus;
 697  0
         values[15] = _accesskey;
 698  0
         values[16] = _onchange;
 699  0
         values[17] = _onselect;
 700  0
         values[18] = _onclick;
 701  0
         values[19] = _ondblclick;
 702  0
         values[20] = _onkeydown;
 703  0
         values[21] = _onkeypress;
 704  0
         values[22] = _onkeyup;
 705  0
         values[23] = _onmousedown;
 706  0
         values[24] = _onmousemove;
 707  0
         values[25] = _onmouseout;
 708  0
         values[26] = _onmouseover;
 709  0
         values[27] = _onmouseup;
 710  0
         values[28] = _dir;
 711  0
         values[29] = _lang;
 712  0
         values[30] = _title;
 713  0
         values[31] = Boolean.valueOf(_disabled);
 714  0
         values[32] = Boolean.valueOf(_disabledSet);
 715  0
         values[33] = Boolean.valueOf(_readonly);
 716  0
         values[34] = Boolean.valueOf(_readonlySet);
 717  0
         return values; 
 718  
     }
 719  
 
 720  
     @Override
 721  
     public void restoreState(FacesContext facesContext, Object state)
 722  
     {
 723  0
         Object[] values = (Object[])state;
 724  0
         super.restoreState(facesContext,values[0]);
 725  0
         _maxlength = ((Integer) values[1]).intValue();
 726  0
         _maxlengthSet = ((Boolean) values[2]).booleanValue();
 727  0
         _redisplay = ((Boolean) values[3]).booleanValue();
 728  0
         _redisplaySet = ((Boolean) values[4]).booleanValue();
 729  0
         _size = ((Integer) values[5]).intValue();
 730  0
         _sizeSet = ((Boolean) values[6]).booleanValue();
 731  0
         _autocomplete = (java.lang.String) values[7];
 732  0
         _label = (java.lang.String) values[8];
 733  0
         _style = (java.lang.String) values[9];
 734  0
         _styleClass = (java.lang.String) values[10];
 735  0
         _alt = (java.lang.String) values[11];
 736  0
         _tabindex = (java.lang.String) values[12];
 737  0
         _onblur = (java.lang.String) values[13];
 738  0
         _onfocus = (java.lang.String) values[14];
 739  0
         _accesskey = (java.lang.String) values[15];
 740  0
         _onchange = (java.lang.String) values[16];
 741  0
         _onselect = (java.lang.String) values[17];
 742  0
         _onclick = (java.lang.String) values[18];
 743  0
         _ondblclick = (java.lang.String) values[19];
 744  0
         _onkeydown = (java.lang.String) values[20];
 745  0
         _onkeypress = (java.lang.String) values[21];
 746  0
         _onkeyup = (java.lang.String) values[22];
 747  0
         _onmousedown = (java.lang.String) values[23];
 748  0
         _onmousemove = (java.lang.String) values[24];
 749  0
         _onmouseout = (java.lang.String) values[25];
 750  0
         _onmouseover = (java.lang.String) values[26];
 751  0
         _onmouseup = (java.lang.String) values[27];
 752  0
         _dir = (java.lang.String) values[28];
 753  0
         _lang = (java.lang.String) values[29];
 754  0
         _title = (java.lang.String) values[30];
 755  0
         _disabled = ((Boolean) values[31]).booleanValue();
 756  0
         _disabledSet = ((Boolean) values[32]).booleanValue();
 757  0
         _readonly = ((Boolean) values[33]).booleanValue();
 758  0
         _readonlySet = ((Boolean) values[34]).booleanValue();
 759  0
     }
 760  
 }