barTable.put( "def", "bar" );
StrStrHashMap fooTable = new StrStrHashMap();
fooTable.put( "def", "foo" );
BazData bazData = new BazData( 1, bazTable );
BarData barData = new BarData( 2, barTable, bazData );
FooData fooData = new FooData( 3, fooTable, barData, bazData );
boolean ok;