com.vaadin.polymer.iron.widget.event.IronDocViewerComponentSelectedEvent Maven / Gradle / Ivy
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from iron-doc-viewer project by The Polymer Authors
* that is licensed with http://polymer.github.io/LICENSE.txt license.
*/
package com.vaadin.polymer.iron.widget.event;
import com.google.gwt.event.shared.GwtEvent;
import com.google.gwt.core.client.JavaScriptObject;
/**
* Broadcast when another component is clicked on
*/
public class IronDocViewerComponentSelectedEvent extends GwtEvent {
public static Type TYPE = new Type();
private com.vaadin.polymer.iron.element.event.IronDocViewerComponentSelectedEvent nativeEvent;
public IronDocViewerComponentSelectedEvent(com.vaadin.polymer.iron.element.event.IronDocViewerComponentSelectedEvent nativeEvent) {
this.nativeEvent = nativeEvent;
}
public Type getAssociatedType() {
return TYPE;
}
protected void dispatch(IronDocViewerComponentSelectedEventHandler handler) {
handler.onIronDocViewerComponentSelected(this);
}
public com.vaadin.polymer.iron.element.event.IronDocViewerComponentSelectedEvent getNativeEvent() {
return nativeEvent;
}
/**
* name of the component
iron-doc-viewer container should load component if possible
*/
public String getDetail() {
return getNativeEvent().getDetail().getDetail();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy