com.vaadin.polymer.hydrolysis.HydrolysisAnalyzerElement Maven / Gradle / Ivy
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from hydrolysis project by unknown author
* that is licensed with unknown license.
*/
package com.vaadin.polymer.hydrolysis;
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;
/**
*
*/
@JsType(isNative=true)
public interface HydrolysisAnalyzerElement extends HTMLElement {
@JsOverlay public static final String TAG = "hydrolysis-analyzer";
@JsOverlay public static final String SRC = "hydrolysis/hydrolysis-analyzer.html";
/**
* The resultant Analyzer
object from Hydrolysis.
*
* JavaScript Info:
* @property analyzer
* @type Object
*
*/
@JsProperty JavaScriptObject getAnalyzer();
/**
* The resultant Analyzer
object from Hydrolysis.
*
* JavaScript Info:
* @property analyzer
* @type Object
*
*/
@JsProperty void setAnalyzer(JavaScriptObject value);
/**
* Whether the hydrolysis descriptors should be cleaned of redundant
properties.
*
* JavaScript Info:
* @property clean
* @type Boolean
*
*/
@JsProperty boolean getClean();
/**
* Whether the hydrolysis descriptors should be cleaned of redundant
properties.
*
* JavaScript Info:
* @property clean
* @type Boolean
*
*/
@JsProperty void setClean(boolean value);
/**
* Whether the analyzer is loading/analyzing resources.
*
* JavaScript Info:
* @property loading
* @type Boolean
*
*/
@JsProperty boolean getLoading();
/**
* Whether the analyzer is loading/analyzing resources.
*
* JavaScript Info:
* @property loading
* @type Boolean
*
*/
@JsProperty void setLoading(boolean value);
/**
* Whether all dependencies should be loaded and analyzed.
* Turning this on will probably slow down the load process dramatically.
*
* JavaScript Info:
* @property transitive
* @type Boolean
*
*/
@JsProperty boolean getTransitive();
/**
* Whether all dependencies should be loaded and analyzed.
* Turning this on will probably slow down the load process dramatically.
*
* JavaScript Info:
* @property transitive
* @type Boolean
*
*/
@JsProperty void setTransitive(boolean value);
/**
*
*
* JavaScript Info:
* @property resolver
* @type String
*
*/
@JsProperty String getResolver();
/**
*
*
* JavaScript Info:
* @property resolver
* @type String
*
*/
@JsProperty void setResolver(String value);
/**
* The URL to an import that declares (or transitively imports) the
elements that you wish to see analyzed.
* If the URL is relative, it will be resolved relative to the master
document.
* If you change this value after the <hydrolysis-analyzer>
has been
instantiated, you must call analyze()
.
*
* JavaScript Info:
* @property src
* @type String
*
*/
@JsProperty String getSrc();
/**
* The URL to an import that declares (or transitively imports) the
elements that you wish to see analyzed.
* If the URL is relative, it will be resolved relative to the master
document.
* If you change this value after the <hydrolysis-analyzer>
has been
instantiated, you must call analyze()
.
*
* JavaScript Info:
* @property src
* @type String
*
*/
@JsProperty void setSrc(String value);
/**
* Begins loading the imports referenced by src
.
* If you make changes to this element’s configuration, you must call this
function to kick off another analysis pass.
*
* JavaScript Info:
* @method analyze
*
*
*/
void analyze();
}