about summary refs log tree commit homepage
path: root/ext/http11/org/jruby/tst/Node.java
diff options
context:
space:
mode:
Diffstat (limited to 'ext/http11/org/jruby/tst/Node.java')
-rw-r--r--ext/http11/org/jruby/tst/Node.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/http11/org/jruby/tst/Node.java b/ext/http11/org/jruby/tst/Node.java
new file mode 100644
index 0000000..334763d
--- /dev/null
+++ b/ext/http11/org/jruby/tst/Node.java
@@ -0,0 +1,18 @@
+/*
+ * See LICENSE file.
+ */
+/**
+ * $Id: $
+ */
+package org.jruby.tst;
+
+/**
+ * @author <a href="mailto:ola.bini@ki.se">Ola Bini</a>
+ * @version $Revision: $
+ */
+public class Node {
+    public char value;
+    public Node left;
+    public Object middle;
+    public Node right;
+}// Node