Added basic HTML generation and response handling.
[jrw.git] / src / jrw / sp / Text.java
CommitLineData
6e0043cc
FT
1package jrw.sp;
2
3public class Text extends Node {
4 public final String text;
5
6 public Text(String text) {
7 this.text = text;
8 }
9}