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