commit ee041ca50ce2ea8c6f5ab07abd697b7e172ff0f0 Author: Vincent Batts Date: Wed Sep 26 18:47:16 2012 -0400 initial commit diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..8a8567f --- /dev/null +++ b/build.xml @@ -0,0 +1,38 @@ + + + simple example build file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/java/com/hashbangbash/trie/Node.java b/src/main/java/com/hashbangbash/trie/Node.java new file mode 100644 index 0000000..767056f --- /dev/null +++ b/src/main/java/com/hashbangbash/trie/Node.java @@ -0,0 +1,12 @@ +package com.hashbangbash.trie; + +public class Node { + private Node children; + public Node() { + } + + public Node getChildren() { + return this.children; + } +} +