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