Author: gmaksimenko
Date: 2008-04-29 11:37:44 -0400 (Tue, 29 Apr 2008)
New Revision: 8335
Modified:
trunk/test-applications/jsp/src/main/java/combobox/Combobox.java
Log:
Erase test for accesskey
Modified: trunk/test-applications/jsp/src/main/java/combobox/Combobox.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/combobox/Combobox.java 2008-04-29 15:36:34
UTC (rev 8334)
+++ trunk/test-applications/jsp/src/main/java/combobox/Combobox.java 2008-04-29 15:37:44
UTC (rev 8335)
@@ -37,18 +37,8 @@
private HtmlComboBox myComboBox = null;
private String bindLabel;
private String align;
- private String alt;
- private String accesskey;
- public String getAccesskey() {
- return accesskey;
- }
-
- public void setAccesskey(String accesskey) {
- this.accesskey = accesskey;
- }
-
public Combobox() {
this.disabled = false;
this.defaultLabel = "defaultLabel";
@@ -72,8 +62,6 @@
this.selectItem = new ArrayList<SelectItem>();
this.bindLabel = "Click Binding";
this.align = "left";
- this.alt = "hidden";
- this.accesskey = "y";
Random r = new Random();
for(int i = 0; i < 10; i++){
suggestionValues.add(new Data("selectItem", i));