1819202122232425262728
public class Base extends Library { private List<Tool> tools = null; public Base() { SelectTool select = new SelectTool(); WiringTool wiring = new WiringTool(); tools = Arrays.asList(new Tool[] { new PokeTool(), new EditTool(select, wiring),
1920212223242526272829