From 3c2c94c8a97b2df3e1c0137e6012a8f891773449 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Fri, 14 Nov 2014 16:12:53 -0800 Subject: [PATCH] For processing-docs/#5, adding template for thread() reference --- core/src/processing/core/PApplet.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 5e9d64a24..d7a761920 100755 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -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() {