Ejemplo n.º 1
0
 public void reset() {
   // We just need to remove all Options
   ITool[] tools = getTools();
   // Send out the event to notify the options that they are about to be removed
   //		ManagedBuildManager.performValueHandlerEvent(this, IManagedOptionValueHandler.EVENT_CLOSE);
   // Remove the configurations
   for (int i = 0; i < tools.length; i++) {
     ITool tool = tools[i];
     IOption[] opts = tool.getOptions();
     for (int j = 0; j < opts.length; j++) {
       tool.removeOption(opts[j]);
     }
   }
   //		setExclude(false);
 }