com.vaadin.polymer.paper.element.PaperRadioButtonElement Maven / Gradle / Ivy
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from paper-radio-button project by The Polymer Authors
* that is licensed with http://polymer.github.io/LICENSE.txt license.
*/
package com.vaadin.polymer.paper.element;
import com.vaadin.polymer.elemental.*;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.JsArray;
import com.google.gwt.core.client.js.JsProperty;
import com.google.gwt.core.client.js.JsType;
/**
* paper-radio-button
is a button that can be either checked or unchecked.
User can tap the radio button to check or uncheck it.
* Use a <paper-radio-group>
to group a set of radio buttons. When radio buttons
are inside a radio group, exactly one radio button in the group can be checked
at any time.
* Example:
* <paper-radio-button></paper-radio-button>
* <paper-radio-button>Item label</paper-radio-button>
*
*
*
Styling
* The following custom properties and mixins are available for styling:
*
*
*
* Custom property
* Description
* Default
*
*
*
*
* --paper-radio-button-unchecked-background-color
* Radio button background color when the input is not checked
* transparent
*
*
* --paper-radio-button-unchecked-color
* Radio button color when the input is not checked
* --primary-text-color
*
*
* --paper-radio-button-unchecked-ink-color
* Selected/focus ripple color when the input is not checked
* --primary-text-color
*
*
* --paper-radio-button-checked-color
* Radio button color when the input is checked
* --default-primary-color
*
*
* --paper-radio-button-checked-ink-color
* Selected/focus ripple color when the input is checked
* --default-primary-color
*
*
* --paper-radio-button-label-color
* Label color
* --primary-text-color
*
*
*
*/
@JsType
public interface PaperRadioButtonElement extends HTMLElement {
public static final String TAG = "paper-radio-button";
public static final String SRC = "paper-radio-button/paper-radio-button.html";
/**
* Fired when the checked state changes.
*
* JavaScript Info:
* @property ariaActiveAttribute
* @type Object
*
*/
@JsProperty JavaScriptObject getAriaActiveAttribute();
/**
* Fired when the checked state changes.
*
* JavaScript Info:
* @property ariaActiveAttribute
* @type Object
*
*/
@JsProperty void setAriaActiveAttribute(JavaScriptObject value);
/**
* Update the checkbox aria-label. This is a temporary workaround not
being able to observe changes in
(see: https://github.com/Polymer/polymer/issues/1773)
* Call this if you manually change the contents of the checkbox
and want the aria-label to match the new contents.
*
* JavaScript Info:
* @method updateAriaLabel
*
*/
void updateAriaLabel();
/**
*
*
* JavaScript Info:
* @method attached
*
*/
void attached();
/**
*
*
* JavaScript Info:
* @property hostAttributes
* @type Object
*
*/
@JsProperty JavaScriptObject getHostAttributes();
/**
*
*
* JavaScript Info:
* @property hostAttributes
* @type Object
*
*/
@JsProperty void setHostAttributes(JavaScriptObject value);
/**
*
*
* JavaScript Info:
* @property observers
* @type Array
* @behavior PaperToggleButton
*/
@JsProperty JsArray getObservers();
/**
*
*
* JavaScript Info:
* @property observers
* @type Array
* @behavior PaperToggleButton
*/
@JsProperty void setObservers(JsArray value);
/**
* If true, the button is a toggle and is currently in the active state.
*
* JavaScript Info:
* @property active
* @type Boolean
* @behavior PaperTab
*/
@JsProperty boolean getActive();
/**
* If true, the button is a toggle and is currently in the active state.
*
* JavaScript Info:
* @property active
* @type Boolean
* @behavior PaperTab
*/
@JsProperty void setActive(boolean value);
/**
*
*
* JavaScript Info:
* @property keyBindings
* @type Object
* @behavior PaperTab
*/
@JsProperty JavaScriptObject getKeyBindings();
/**
*
*
* JavaScript Info:
* @property keyBindings
* @type Object
* @behavior PaperTab
*/
@JsProperty void setKeyBindings(JavaScriptObject value);
/**
* True if the element is currently being pressed by a “pointer,” which
is loosely defined as mouse or touch input (but specifically excluding
keyboard input).
*
* JavaScript Info:
* @property pointerDown
* @type Boolean
* @behavior PaperTab
*/
@JsProperty boolean getPointerDown();
/**
* True if the element is currently being pressed by a “pointer,” which
is loosely defined as mouse or touch input (but specifically excluding
keyboard input).
*
* JavaScript Info:
* @property pointerDown
* @type Boolean
* @behavior PaperTab
*/
@JsProperty void setPointerDown(boolean value);
/**
* If true, the user is currently holding down the button.
*
* JavaScript Info:
* @property pressed
* @type Boolean
* @behavior PaperTab
*/
@JsProperty boolean getPressed();
/**
* If true, the user is currently holding down the button.
*
* JavaScript Info:
* @property pressed
* @type Boolean
* @behavior PaperTab
*/
@JsProperty void setPressed(boolean value);
/**
* True if the input device that caused the element to receive focus
was a keyboard.
*
* JavaScript Info:
* @property receivedFocusFromKeyboard
* @type Boolean
* @behavior PaperTab
*/
@JsProperty boolean getReceivedFocusFromKeyboard();
/**
* True if the input device that caused the element to receive focus
was a keyboard.
*
* JavaScript Info:
* @property receivedFocusFromKeyboard
* @type Boolean
* @behavior PaperTab
*/
@JsProperty void setReceivedFocusFromKeyboard(boolean value);
/**
* If true, the button toggles the active state with each tap or press
of the spacebar.
*
* JavaScript Info:
* @property toggles
* @type Boolean
* @behavior PaperTab
*/
@JsProperty boolean getToggles();
/**
* If true, the button toggles the active state with each tap or press
of the spacebar.
*
* JavaScript Info:
* @property toggles
* @type Boolean
* @behavior PaperTab
*/
@JsProperty void setToggles(boolean value);
/**
*
*
* JavaScript Info:
* @property listeners
* @type Object
* @behavior PaperTab
*/
@JsProperty JavaScriptObject getListeners();
/**
*
*
* JavaScript Info:
* @property listeners
* @type Object
* @behavior PaperTab
*/
@JsProperty void setListeners(JavaScriptObject value);
/**
* Can be used to imperatively add a key binding to the implementing
element. This is the imperative equivalent of declaring a keybinding
in the keyBindings
prototype property.
*
* JavaScript Info:
* @method addOwnKeyBinding
* @param {} eventString
* @param {} handlerName
* @behavior PaperTab
*/
void addOwnKeyBinding(JavaScriptObject eventString, JavaScriptObject handlerName);
/**
* The HTMLElement that will be firing relevant KeyboardEvents.
*
* JavaScript Info:
* @property keyEventTarget
* @type Object
* @behavior PaperTab
*/
@JsProperty JavaScriptObject getKeyEventTarget();
/**
* The HTMLElement that will be firing relevant KeyboardEvents.
*
* JavaScript Info:
* @property keyEventTarget
* @type Object
* @behavior PaperTab
*/
@JsProperty void setKeyEventTarget(JavaScriptObject value);
/**
*
*
* JavaScript Info:
* @method keyboardEventMatchesKeys
* @param {} event
* @param {} eventString
* @behavior PaperTab
*/
void keyboardEventMatchesKeys(JavaScriptObject event, JavaScriptObject eventString);
/**
* When called, will remove all imperatively-added key bindings.
*
* JavaScript Info:
* @method removeOwnKeyBindings
* @behavior PaperTab
*/
void removeOwnKeyBindings();
/**
*
*
* JavaScript Info:
* @method detached
* @behavior PaperTab
*/
void detached();
/**
*
*
* JavaScript Info:
* @method registered
* @behavior PaperTab
*/
void registered();
/**
* If true, the user cannot interact with this element.
*
* JavaScript Info:
* @property disabled
* @type Boolean
* @behavior PaperTab
*/
@JsProperty boolean getDisabled();
/**
* If true, the user cannot interact with this element.
*
* JavaScript Info:
* @property disabled
* @type Boolean
* @behavior PaperTab
*/
@JsProperty void setDisabled(boolean value);
/**
* If true, the element currently has focus.
*
* JavaScript Info:
* @property focused
* @type Boolean
* @behavior PaperTab
*/
@JsProperty boolean getFocused();
/**
* If true, the element currently has focus.
*
* JavaScript Info:
* @property focused
* @type Boolean
* @behavior PaperTab
*/
@JsProperty void setFocused(boolean value);
/**
* Gets or sets the state, true
is checked and false
is unchecked.
*
* JavaScript Info:
* @property checked
* @type Boolean
* @behavior PaperToggleButton
*/
@JsProperty boolean getChecked();
/**
* Gets or sets the state, true
is checked and false
is unchecked.
*
* JavaScript Info:
* @property checked
* @type Boolean
* @behavior PaperToggleButton
*/
@JsProperty void setChecked(boolean value);
/**
* Overriden from Polymer.IronFormElementBehavior
*
* JavaScript Info:
* @property value
* @type String
* @behavior PaperToggleButton
*/
@JsProperty String getValue();
/**
* Overriden from Polymer.IronFormElementBehavior
*
* JavaScript Info:
* @property value
* @type String
* @behavior PaperToggleButton
*/
@JsProperty void setValue(String value);
/**
* The name of this element.
*
* JavaScript Info:
* @property name
* @type String
* @behavior PaperInput
*/
@JsProperty String getName();
/**
* The name of this element.
*
* JavaScript Info:
* @property name
* @type String
* @behavior PaperInput
*/
@JsProperty void setName(String value);
/**
* Set to true to mark the input as required. If used in a form, a
custom element that uses this behavior should also use
Polymer.IronValidatableBehavior and define a custom validation method.
Otherwise, a required
element will always be considered valid.
It’s also strongly recomended to provide a visual style for the element
when it’s value is invalid.
*
* JavaScript Info:
* @property required
* @type Boolean
* @behavior PaperInput
*/
@JsProperty boolean getRequired();
/**
* Set to true to mark the input as required. If used in a form, a
custom element that uses this behavior should also use
Polymer.IronValidatableBehavior and define a custom validation method.
Otherwise, a required
element will always be considered valid.
It’s also strongly recomended to provide a visual style for the element
when it’s value is invalid.
*
* JavaScript Info:
* @property required
* @type Boolean
* @behavior PaperInput
*/
@JsProperty void setRequired(boolean value);
/**
*
*
* JavaScript Info:
* @method hasValidator
* @behavior PaperToggleButton
*/
void hasValidator();
/**
* True if the last call to validate
is invalid.
*
* JavaScript Info:
* @property invalid
* @type Boolean
* @behavior PaperToggleButton
*/
@JsProperty boolean getInvalid();
/**
* True if the last call to validate
is invalid.
*
* JavaScript Info:
* @property invalid
* @type Boolean
* @behavior PaperToggleButton
*/
@JsProperty void setInvalid(boolean value);
/**
* Returns true if the value
is valid, and updates invalid
. If you want
your element to have custom validation logic, do not override this method;
override _getValidity(value)
instead.
*
* JavaScript Info:
* @method validate
* @param {Object} value
* @behavior PaperToggleButton
*/
void validate(JavaScriptObject value);
/**
* Name of the validator to use.
*
* JavaScript Info:
* @property validator
* @type String
* @behavior PaperToggleButton
*/
@JsProperty String getValidator();
/**
* Name of the validator to use.
*
* JavaScript Info:
* @property validator
* @type String
* @behavior PaperToggleButton
*/
@JsProperty void setValidator(String value);
/**
* Namespace for this validator.
*
* JavaScript Info:
* @property validatorType
* @type String
* @behavior PaperToggleButton
*/
@JsProperty String getValidatorType();
/**
* Namespace for this validator.
*
* JavaScript Info:
* @property validatorType
* @type String
* @behavior PaperToggleButton
*/
@JsProperty void setValidatorType(String value);
}