com.vaadin.polymer.platinum.widget.event.ValueChangedEvent Maven / Gradle / Ivy
The newest version!
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from platinum-bluetooth project by The Polymer Authors
* that is licensed with http://polymer.github.io/LICENSE.txt license.
*/
package com.vaadin.polymer.platinum.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 value gets changed during a notification session.
*/
public class ValueChangedEvent extends DomEvent {
public static Type TYPE = new Type(
com.vaadin.polymer.platinum.event.ValueChangedEvent.NAME, new ValueChangedEvent());
public ValueChangedEvent() {
}
public Type getAssociatedType() {
return TYPE;
}
protected void dispatch(ValueChangedEventHandler handler) {
handler.onValueChanged(this);
}
public com.vaadin.polymer.platinum.event.ValueChangedEvent getPolymerEvent() {
return (com.vaadin.polymer.platinum.event.ValueChangedEvent)super.getNativeEvent();
}
/**
* value
*/
public JavaScriptObject getThe() {
return getPolymerEvent().getDetail().getThe();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy