Example #1
0
 // Add a given tool to the list of tools that this member is currently holding
 public void addTool(Tool aTool)
 {
     tools.add(aTool);
 }
Example #2
0
 // Add the given tool to the system using currentCollection
 public void add(Tool aTool)
 {
     currentCollection.add(aTool);
 }