view src/nabble/naml/dom/Comment.java @ 62:4674ed7d56df default tip

remove n2
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 30 Sep 2023 20:25:29 -0600
parents 7ecd1a4ef557
children
line wrap: on
line source

package nabble.naml.dom;


public final class Comment extends Text {

	public Comment(String text) {
		super(text);
	}

	public String toString() {
		return "<!--" + text + "-->";
	}

}