com.vaadin.polymer.paper.widget.event.ContentScrollEvent Maven / Gradle / Ivy
The newest version!
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from paper-scroll-header-panel 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 content has been scrolled.
*/
public class ContentScrollEvent extends DomEvent {
public static Type TYPE = new Type(
com.vaadin.polymer.paper.event.ContentScrollEvent.NAME, new ContentScrollEvent());
public ContentScrollEvent() {
}
public Type getAssociatedType() {
return TYPE;
}
protected void dispatch(ContentScrollEventHandler handler) {
handler.onContentScroll(this);
}
public com.vaadin.polymer.paper.event.ContentScrollEvent getPolymerEvent() {
return (com.vaadin.polymer.paper.event.ContentScrollEvent)super.getNativeEvent();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy