![JAR search and dependency download from the Maven repository](/logo.png)
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