public static void main(String [] args) {
// Create a furniture tree from the default locale catalog
FurnitureCatalogTree tree = new FurnitureCatalogTree(new DefaultFurnitureCatalog());
JFrame frame = new JFrame("Catalog Tree Test");
frame.add(new JScrollPane(tree));
frame.pack();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}