1920212223242526272829
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), select,
2021222324252627282930