--- jsampler/trunk/src/org/jsampler/task/ResetSampler.java 2006/08/07 18:01:57 910 +++ jsampler/trunk/src/org/jsampler/task/ResetSampler.java 2006/08/07 18:25:58 911 @@ -31,16 +31,18 @@ /** - * + * This task resets the whole sampler. * @author Grigor Iliev */ public class ResetSampler extends EnhancedTask { + /** Creates a new instance of ResetSampler. */ public ResetSampler() { setTitle("ResetSampler_task"); setDescription(i18n.getMessage("ResetSampler.description")); } + /** The entry point of the task. */ public void run() { try { CC.getClient().resetSampler(); }