com.vaadin.polymer.paper.widget.event.ValueChangeEvent 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 value changes.
*/
public class ValueChangeEvent extends DomEvent {
public static Type TYPE = new Type(
com.vaadin.polymer.paper.event.ValueChangeEvent.NAME, new ValueChangeEvent());
public ValueChangeEvent() {
}
public Type getAssociatedType() {
return TYPE;
}
protected void dispatch(ValueChangeEventHandler handler) {
handler.onValueChange(this);
}
public com.vaadin.polymer.paper.event.ValueChangeEvent getPolymerEvent() {
return (com.vaadin.polymer.paper.event.ValueChangeEvent)super.getNativeEvent();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy