// This testing program stub creates a queue of HTML tags // in a valid sequence. // You may use this as a starting point for being a client of your // HtmlValidator object import java.util.*; public class HtmlValidatorTest { public static void main(String[] args) { // Hi
// A Queue of tags you may modify and pass to your HtmlValidator object Queue tags = new LinkedList(); tags.add(new HtmlTag("b", true)); // tags.add(new HtmlTag("b", false)); // tags.add(new HtmlTag("br")); //
// Your code here } }