com.vaadin.polymer.content.widget.event.ContentScrollEvent Maven / Gradle / Ivy
/*
* 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.content.widget.event;
import com.google.gwt.event.shared.GwtEvent;
import com.google.gwt.core.client.JavaScriptObject;
/**
* Fired when the content has been scrolled.
*/
public class ContentScrollEvent extends GwtEvent {
public static Type TYPE = new Type();
private com.vaadin.polymer.content.element.event.ContentScrollEvent nativeEvent;
public ContentScrollEvent(com.vaadin.polymer.content.element.event.ContentScrollEvent nativeEvent) {
this.nativeEvent = nativeEvent;
}
public Type getAssociatedType() {
return TYPE;
}
protected void dispatch(ContentScrollEventHandler handler) {
handler.onContentScroll(this);
}
public com.vaadin.polymer.content.element.event.ContentScrollEvent getNativeEvent() {
return nativeEvent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy