001/*
002 * To change this license header, choose License Headers in Project Properties.
003 * To change this template file, choose Tools | Templates
004 * and open the template in the editor.
005 */
006package gwt.material.design.jscore.client.api.core;
007
008import jsinterop.annotations.JsProperty;
009import jsinterop.annotations.JsType;
010
011/**
012 *
013 * @author Cristian Rinaldi
014  */
015@JsType(isNative = true)
016public class Event<T> {
017
018    @JsProperty
019    public native T getTarget();
020    
021    @JsProperty
022    public native T getCurrentTarget();
023    
024}