Example usage for com.google.gwt.dom.client ButtonElement setAccessKey

List of usage examples for com.google.gwt.dom.client ButtonElement setAccessKey

Introduction

In this page you can find the example usage for com.google.gwt.dom.client ButtonElement setAccessKey.

Prototype

public void setAccessKey(String accessKey) 

Source Link

Document

A single character access key to give access to the form control.

Usage

From source file:com.cgxlib.xq.client.plugins.widgets.ButtonWidgetFactory.java

License:Apache License

protected void copyAttributes(ButtonElement source, ButtonElement destination) {
    destination.setAccessKey(source.getAccessKey());
    destination.setDisabled(source.isDisabled());
    destination.setName(source.getName());
    destination.setValue(source.getValue());
}