Grote aanpassingen gedaan tbv. selector: een worker kan nu active en deactive zijn. Initialise werkt nu anders.

This commit is contained in:
Bram Veenboer
2011-05-16 20:09:19 +00:00
parent a67478e616
commit 33e69c141a
29 changed files with 194 additions and 112 deletions

View File

@@ -24,8 +24,8 @@ final class JNIWinamp {
/**
* Verify if Winamp is started
* and if not started, starts it
* @return True - if successful run Winamp
* False - if not successful run Winamp
* @return True - if successful running Winamp
* False - if not successful running Winamp
*/
protected static native boolean run() throws UnsatisfiedLinkError;

View File

@@ -76,7 +76,7 @@ public class WinampController {
public static void run() throws Exception{
if (!JNIWinamp.run())
throw new Exception("Unable to run Winamp. Verify if it is properly installed");
throw new Exception("Unable to running Winamp. Verify if it is properly installed");
}