--- jsampler/trunk/src/org/jsampler/task/GetAODrivers.java 2006/08/07 18:01:57 910 +++ jsampler/trunk/src/org/jsampler/task/GetAODrivers.java 2006/08/07 18:25:58 911 @@ -33,16 +33,18 @@ /** - * + * This task retrieves all audio output drivers currently available for the LinuxSampler instance. * @author Grigor Iliev */ public class GetAODrivers extends EnhancedTask { + /** Creates a new instance of GetAODrivers. */ public GetAODrivers() { setTitle("GetAODrivers_task"); setDescription(i18n.getMessage("GetAODrivers.description")); } + /** The entry point of the task. */ public void run() { try { setResult(CC.getClient().getAudioOutputDrivers()); }