All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.jstestdriver.html.HtmlNode Maven / Gradle / Ivy

// Copyright 2010 Google Inc. All Rights Reserved.

package com.google.jstestdriver.html;

import com.google.jstestdriver.token.Node;
import com.google.jstestdriver.token.Token;

import java.io.Writer;
import java.util.List;

/**
 * Contains the html of the htmldoc.
 * 
 * @author [email protected] (Cory Smith)
 */
public class HtmlNode implements Node {

  private final List htmlTokens;
  public HtmlNode(List htmlTokens) {
    this.htmlTokens = htmlTokens;
  }

  public void write(Writer writer) {
    for (Token token : htmlTokens) {
      token.write(writer);
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy