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

com.vaadin.polymer.iron.widget.event.IronOverlayClosedEvent Maven / Gradle / Ivy

The newest version!
/*
 * This code was generated with Vaadin Web Component GWT API Generator, 
 * from vaadin-context-menu project by unknown author
 * that is licensed with Apache-2.0 license.
 */
package com.vaadin.polymer.iron.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 after the overlay closes.

*/ public class IronOverlayClosedEvent extends DomEvent { public static Type TYPE = new Type( com.vaadin.polymer.iron.event.IronOverlayClosedEvent.NAME, new IronOverlayClosedEvent()); public IronOverlayClosedEvent() { } public Type getAssociatedType() { return TYPE; } protected void dispatch(IronOverlayClosedEventHandler handler) { handler.onIronOverlayClosed(this); } public com.vaadin.polymer.iron.event.IronOverlayClosedEvent getPolymerEvent() { return (com.vaadin.polymer.iron.event.IronOverlayClosedEvent)super.getNativeEvent(); } /** *

The event.detail is the closingReason property
(contains canceled, whether the overlay was canceled).

*/ public JavaScriptObject getEvent() { return getPolymerEvent().getDetail().getEvent(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy