From bab5603e29c090de07ad5b45e1d286737bb5beff Mon Sep 17 00:00:00 2001 From: sansumbrella Date: Mon, 28 Dec 2009 07:18:39 +0000 Subject: [PATCH] adding a few @webref tags to PApplet to test out javadoc reference generation. --- core/src/processing/core/PApplet.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 61368fb5a..38a65e71d 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -400,6 +400,7 @@ public class PApplet extends Applet /** * Gets set to true/false as the applet gains/loses focus. + * @webref environment */ public boolean focused = false; @@ -408,6 +409,7 @@ public class PApplet extends Applet *

* This can be used to test how the applet should behave * since online situations are different (no file writing, etc). + * @webref environment */ public boolean online = false; @@ -1984,6 +1986,9 @@ public class PApplet extends Applet * make a slow sketch go faster. Sketches have no default frame rate * setting, and will attempt to use maximum processor power to achieve * maximum speed. + * @webref environment + * @param newRateTarget the new framerate + * @see PApplet#delay(int) */ public void frameRate(float newRateTarget) { frameRateTarget = newRateTarget; @@ -2400,6 +2405,7 @@ public class PApplet extends Applet /** * Set the cursor type + * @webref environment */ public void cursor(int cursorType) { setCursor(Cursor.getPredefinedCursor(cursorType));