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

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

Introduction

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

Prototype

public String getAccessKey() 

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());
}