Moving some documentation tags about of PApplet

This commit is contained in:
Casey Reas
2012-09-04 00:27:00 +00:00
parent 7e70c81040
commit ebb25d8a45
6 changed files with 20 additions and 39 deletions
-22
View File
@@ -654,13 +654,8 @@ public class PApplet extends Applet
public boolean focused = false;
/**
* ( begin auto-generated from online.xml )
*
* Confirms if a Processing program is running inside a web browser. This
* variable is "true" if the program is online and "false" if not.
*
* ( end auto-generated )
* @webref environment
*/
@Deprecated
public boolean online = false;
@@ -3085,19 +3080,12 @@ public class PApplet extends Applet
/**
* ( begin auto-generated from param.xml )
*
* Reads the value of a param. Values are always read as a String so if you
* want them to be an integer or other datatype they must be converted. The
* <b>param()</b> function will only work in a web browser. The function
* should be called inside <b>setup()</b>, otherwise the applet may not yet
* be initialized and connected to its parent web browser.
*
* ( end auto-generated )
*
* @webref input:web
* @usage Web
*
* @param name name of the param to read
* @deprecated no more applet support
*/
@@ -3113,21 +3101,11 @@ public class PApplet extends Applet
/**
* ( begin auto-generated from status.xml )
*
* Displays message in the browser's status area. This is the text area in
* the lower left corner of the browser. The <b>status()</b> function will
* only work when the Processing program is running in a web browser.
*
* ( end auto-generated )
* <h3>Advanced</h3>
* Show status in the status bar of a web browser, or in the
* System.out console. Eventually this might show status in the
* p5 environment itself, rather than relying on the console.
*
* @webref input:web
* @usage Web
* @param value any valid String
* @deprecated no more applet support
*/
public void status(String value) {
+5 -1
View File
@@ -3278,7 +3278,11 @@ public class PGraphics extends PImage implements PConstants {
public void smooth() {
smooth = true;
}
/**
*
* @param level either 2, 4, or 8
*/
public void smooth(int level) {
smooth = true;
}