Package com.google.dart.engine.internal.element

Examples of com.google.dart.engine.internal.element.HtmlElementImpl


   * @throws AnalysisException if the analysis could not be performed
   */
  public HtmlElementImpl buildHtmlElement(Source source, long modificationStamp, HtmlUnit unit)
      throws AnalysisException {
    this.modificationStamp = modificationStamp;
    HtmlElementImpl result = new HtmlElementImpl(context, source.getShortName());
    result.setSource(source);
    htmlElement = result;
    unit.accept(this);
    htmlElement = null;
    unit.setElement(result);
    return result;
View Full Code Here


   * Builds Polymer specific HTML elements.
   */
  public void build() throws AnalysisException {
    unit.accept(this);
    // set Polymer tags
    HtmlElementImpl unitElement = (HtmlElementImpl) unit.getElement();
    unitElement.setPolymerTags(tagHtmlElements.toArray(new PolymerTagHtmlElement[tagHtmlElements.size()]));
  }
View Full Code Here

TOP

Related Classes of com.google.dart.engine.internal.element.HtmlElementImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.