com.vaadin.polymer.dom.widget.DomBind Maven / Gradle / Ivy
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from polymer project by The Polymer Authors (http://polymer.github.io/AUTHORS.txt)
* that is licensed with http://polymer.github.io/LICENSE.txt license.
*/
package com.vaadin.polymer.dom.widget;
import com.vaadin.polymer.dom.element.*;
import com.vaadin.polymer.PolymerWidget;
import com.vaadin.polymer.elemental.*;
import com.google.gwt.core.client.JsArray;
import com.google.gwt.event.shared.HandlerRegistration;
import com.google.gwt.core.client.JavaScriptObject;
/**
*
*/
public class DomBind extends PolymerWidget {
/**
* Default Constructor.
*/
public DomBind() {
this("");
}
/**
* Constructor used by UIBinder to create widgets with content.
*/
public DomBind(String html) {
super(DomBindElement.TAG, DomBindElement.SRC, html);
}
/**
* Gets a handle to the Polymer object's underlying DOM element.
*/
public DomBindElement getPolymerElement() {
return (DomBindElement) getElement();
}
/**
*
*
* JavaScript Info:
* @method attached
*
*/
public void attached() {
getPolymerElement().attached();
}
/**
*
*
* JavaScript Info:
* @method detached
*
*/
public void detached() {
getPolymerElement().detached();
}
/**
*
*
* JavaScript Info:
* @property extends
* @type string
*
*/
public String getExtends(){
return getPolymerElement().getExtends();
}
/**
*
*
* JavaScript Info:
* @property extends
* @type string
*
*/
public void setExtends(String value) {
getPolymerElement().setExtends(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy