com.vaadin.polymer.paper.widget.event.ImmediateValueChangeEvent Maven / Gradle / Ivy
The newest version!
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from paper-slider project by The Polymer Authors
* that is licensed with http://polymer.github.io/LICENSE.txt license.
*/
package com.vaadin.polymer.paper.widget.event;
import com.google.gwt.event.dom.client.DomEvent;
import com.google.gwt.core.client.JsArray;
import com.google.gwt.core.client.JavaScriptObject;
/**
* Fired when the slider’s immediateValue changes. Only occurs while the
user is dragging.
* To detect changes to immediateValue that happen for any input (i.e.
dragging, tapping, clicking, etc.) listen for immediate-value-changed
instead.
*/
public class ImmediateValueChangeEvent extends DomEvent {
public static Type TYPE = new Type(
com.vaadin.polymer.paper.event.ImmediateValueChangeEvent.NAME, new ImmediateValueChangeEvent());
public ImmediateValueChangeEvent() {
}
public Type getAssociatedType() {
return TYPE;
}
protected void dispatch(ImmediateValueChangeEventHandler handler) {
handler.onImmediateValueChange(this);
}
public com.vaadin.polymer.paper.event.ImmediateValueChangeEvent getPolymerEvent() {
return (com.vaadin.polymer.paper.event.ImmediateValueChangeEvent)super.getNativeEvent();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy