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 */ 006 007package gwt.material.design.jscore.client.api.polymer; 008 009import gwt.material.design.jscore.client.api.core.Element; 010import jsinterop.annotations.JsType; 011 012/** 013 * 014 * @author Cristian Rinaldi - csrinaldi@gmail.com 015 */ 016@JsType(isNative = true) 017public class Polymer { 018 019 public native Element dom(Element e); 020 021 public static class Static { 022 public static native Polymer get() /*-{ 023 return $wnd.Polymer 024 }-*/; 025 } 026}