All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.polymer.change.widget.event.ChangeEvent Maven / Gradle / Ivy

There is a newer version: 1.9.3.1
Show 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.change.widget.event;

import com.google.gwt.event.shared.GwtEvent;
import com.google.gwt.core.client.JavaScriptObject;

/**
 * 

Fired when the slider’s value changes due to user interaction.

*

Changes to the slider’s value due to changes in an underlying
bound variable will not trigger this event.

*/ public class ChangeEvent extends GwtEvent { public static Type TYPE = new Type(); private com.vaadin.polymer.change.element.event.ChangeEvent nativeEvent; public ChangeEvent(com.vaadin.polymer.change.element.event.ChangeEvent nativeEvent) { this.nativeEvent = nativeEvent; } public Type getAssociatedType() { return TYPE; } protected void dispatch(ChangeEventHandler handler) { handler.onChange(this); } public com.vaadin.polymer.change.element.event.ChangeEvent getNativeEvent() { return nativeEvent; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy