Skip to content
Snippets Groups Projects
Commit 5e1b2a35 authored by Jeffrey Phillips Freeman's avatar Jeffrey Phillips Freeman :boom:
Browse files

Added progress demos.

parent e95742bf
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,8 @@ public class All {
System.out.println(" 6) Convolution (pure Java)");
System.out.println(" 7) Blacksholes");
System.out.println(" 8) Squares");
System.out.println(" 9) Multipass swing worker");
System.out.println(" 10) Progress and cancel demo");
System.out.println();
Scanner in = new Scanner(System.in);
......@@ -77,6 +79,12 @@ public class All {
case "8":
com.syncleus.aparapi.examples.squares.Main.main(args);
break;
case "9":
com.syncleus.aparapi.examples.progress.MultiPassKernelSwingWorkerDemo.main(args);
break;
case "10":
com.syncleus.aparapi.examples.progress.ProgressAndCancelDemo.main(args);
break;
default:
System.out.println("Invalid selection.");
}
......
package com.syncleus.aparapi.sample.progress;
/**
* This product currently only contains code developed by authors
* of specific components, as identified by the source code files.
*
* Since product implements StAX API, it has dependencies to StAX API
* classes.
*
* For additional credits (generally to people who reported problems)
* see CREDITS file.
*/
package com.syncleus.aparapi.examples.progress;
import com.syncleus.aparapi.Kernel;
......
package com.syncleus.aparapi.sample.progress;
/**
* This product currently only contains code developed by authors
* of specific components, as identified by the source code files.
*
* Since product implements StAX API, it has dependencies to StAX API
* classes.
*
* For additional credits (generally to people who reported problems)
* see CREDITS file.
*/
package com.syncleus.aparapi.examples.progress;
import com.syncleus.aparapi.*;
import com.syncleus.aparapi.internal.kernel.*;
......
package com.syncleus.aparapi.sample.progress;
/**
* This product currently only contains code developed by authors
* of specific components, as identified by the source code files.
*
* Since product implements StAX API, it has dependencies to StAX API
* classes.
*
* For additional credits (generally to people who reported problems)
* see CREDITS file.
*/
package com.syncleus.aparapi.examples.progress;
import com.syncleus.aparapi.internal.kernel.*;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment