For processing-docs/#5, adding template for thread() reference

This commit is contained in:
Scott Murray
2014-11-14 16:12:53 -08:00
parent 69194f7b7f
commit 3c2c94c8a9

View File

@@ -4193,6 +4193,13 @@ public class PApplet extends Applet
* Note that the function being called must be public. Inside the PDE,
* 'public' is automatically added, but when used without the preprocessor,
* (like from Eclipse) you'll have to do it yourself.
*
* @webref structure
* @usage Application
* @see PApplet#setup()
* @see PApplet#draw()
* @see PApplet#loop()
* @see PApplet#noLoop()
*/
public void thread(final String name) {
Thread later = new Thread() {