package torea; class Tree{ public static class BTree{ public E payload; public BTree rightChild; public BTree leftChild; BTree(E something){ payload = something; } } }