com.vaadin.polymer.iron.UrlBarElement Maven / Gradle / Ivy
The newest version!
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from iron-demo-helpers project by The Polymer Authors
* that is licensed with http://polymer.github.io/LICENSE.txt license.
*/
package com.vaadin.polymer.iron;
import com.vaadin.polymer.elemental.*;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.JsArray;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;
/**
* url-bar
is a helper element that displays a simple read-only URL bar if
and only if the page is in an iframe. In this way we can demo elements that
deal with the URL in our iframe-based demo environments.
* If the page is not in an iframe, the url-bar element is not displayed.
* Styling
* The following custom properties and mixins are available for styling:
*
*
*
* Custom property
* Description
* Default
*
*
*
*
* --url-bar
* Mixin applied to the entire element
* {}
*
*
*
*/
@JsType(isNative=true)
public interface UrlBarElement extends HTMLElement {
@JsOverlay public static final String TAG = "url-bar";
@JsOverlay public static final String SRC = "iron-demo-helpers/url-bar.html";
/**
*
*
* JavaScript Info:
* @property inIframe
* @type Object
*
*/
@JsProperty JavaScriptObject getInIframe();
/**
*
*
* JavaScript Info:
* @property inIframe
* @type Object
*
*/
@JsProperty void setInIframe(JavaScriptObject value);
/**
*
*
* JavaScript Info:
* @property url
* @type Object
*
*/
@JsProperty JavaScriptObject getUrl();
/**
*
*
* JavaScript Info:
* @property url
* @type Object
*
*/
@JsProperty void setUrl(JavaScriptObject value);
/**
*
*
* JavaScript Info:
* @property hash
* @type String
*
*/
@JsProperty String getHash();
/**
*
*
* JavaScript Info:
* @property hash
* @type String
*
*/
@JsProperty void setHash(String value);
/**
*
*
* JavaScript Info:
* @property path
* @type String
*
*/
@JsProperty String getPath();
/**
*
*
* JavaScript Info:
* @property path
* @type String
*
*/
@JsProperty void setPath(String value);
/**
*
*
* JavaScript Info:
* @property query
* @type String
*
*/
@JsProperty String getQuery();
/**
*
*
* JavaScript Info:
* @property query
* @type String
*
*/
@JsProperty void setQuery(String value);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy