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

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

The newest version!
/*
 * This code was generated with Vaadin Web Component GWT API Generator, 
 * from paper-tabs 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.dom.client.DomEvent;
import com.google.gwt.core.client.JsArray;
import com.google.gwt.core.client.JavaScriptObject;

/**
 * 

Fired when an item is selected

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

the item element

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy