@@ -5530,9 +5530,9 @@ public void noiseSeed(long seed) {
55305530 * <br />
55315531 * If the file is not available or an error occurs, <b>null</b> will be
55325532 * returned and an error message will be printed to the console. The error
5533- * message does not halt the program, however the null value may cause a
5533+ * message does not halt the program, however the <b> null</b> value may cause a
55345534 * NullPointerException if your code does not check whether the value returned
5535- * is null.<br />
5535+ * is <b> null</b> .<br />
55365536 * <br />
55375537 * The <b>extension</b> parameter is used to determine the image type in cases
55385538 * where the image filename does not end with a proper extension. Specify the
@@ -5721,13 +5721,13 @@ public XML loadXML(String filename, String options) {
57215721
57225722 /**
57235723 * Takes a String, parses its contents, and returns an XML object. If the
5724- * String does not contain XML data or cannot be parsed, a null value is
5724+ * String does not contain XML data or cannot be parsed, a <b> null</b> value is
57255725 * returned.<br />
57265726 * <br />
57275727 * <b>parseXML()</b> is most useful when pulling data dynamically, such as
57285728 * from third-party APIs. Normally, API results would be saved to a String,
57295729 * and then can be converted to a structured XML object using
5730- * <b>parseXML()</b>. Be sure to check if null is returned before performing
5730+ * <b>parseXML()</b>. Be sure to check if <b> null</b> is returned before performing
57315731 * operations on the new XML object, in case the String content could not be
57325732 * parsed.<br />
57335733 * <br />
@@ -6185,9 +6185,9 @@ public boolean saveTable(Table table, String filename, String options) {
61856185 * <br />
61866186 * If the file is not available or an error occurs, <b>null</b> will be
61876187 * returned and an error message will be printed to the console. The error
6188- * message does not halt the program, however the null value may cause a
6188+ * message does not halt the program, however the <b> null</b> value may cause a
61896189 * NullPointerException if your code does not check whether the value returned
6190- * is null.<br />
6190+ * is <b> null</b> .<br />
61916191 * <br />
61926192 * Use <b>createFont()</b> (instead of <b>loadFont()</b>) to enable vector
61936193 * data to be used with the default renderer setting. This can be helpful when
@@ -6318,7 +6318,7 @@ private Frame selectFrame() {
63186318 /**
63196319 * Open a platform-specific file chooser dialog to select a file for input.
63206320 * After the selection is made, the selected File will be passed to the
6321- * 'callback' function. If the dialog is closed or canceled, null will be sent
6321+ * 'callback' function. If the dialog is closed or canceled, <b> null</b> will be sent
63226322 * to the function, so that the program is not waiting for additional input.
63236323 * The callback is necessary because of how threading works.
63246324 *
@@ -6384,7 +6384,7 @@ static public void selectInput(String prompt, String callbackMethod,
63846384 /**
63856385 * Opens a platform-specific file chooser dialog to select a file for output.
63866386 * After the selection is made, the selected File will be passed to the
6387- * 'callback' function. If the dialog is closed or canceled, null will be sent
6387+ * 'callback' function. If the dialog is closed or canceled, <b> null</b> will be sent
63886388 * to the function, so that the program is not waiting for additional input.
63896389 * The callback is necessary because of how threading works.
63906390 *
@@ -6912,7 +6912,7 @@ static public PrintWriter createWriter(OutputStream output) {
69126912 * - The full path to a file to be opened locally (when running as an
69136913 * application)<br />
69146914 * <br />
6915- * If the requested item doesn't exist, null is returned. If not online,
6915+ * If the requested item doesn't exist, <b> null</b> is returned. If not online,
69166916 * this will also check to see if the user is asking for a file whose name
69176917 * isn't properly capitalized. If capitalization is different, an error
69186918 * will be printed to the console. This helps prevent issues that appear
@@ -7183,9 +7183,9 @@ static public InputStream createInput(File file) {
71837183 * <br />
71847184 * If the file is not available or an error occurs, <b>null</b> will be
71857185 * returned and an error message will be printed to the console. The error
7186- * message does not halt the program, however the null value may cause a
7186+ * message does not halt the program, however the <b> null</b> value may cause a
71877187 * NullPointerException if your code does not check whether the value returned
7188- * is null.<br />
7188+ * is <b> null</b> .<br />
71897189 *
71907190 * @webref input:files
71917191 * @webBrief Reads the contents of a file or url and places it in a byte
@@ -7401,9 +7401,9 @@ static public String[] loadStrings(File file) {
74017401 * <br />
74027402 * If the file is not available or an error occurs, <b>null</b> will be
74037403 * returned and an error message will be printed to the console. The error
7404- * message does not halt the program, however the null value may cause a
7404+ * message does not halt the program, however the <b> null</b> value may cause a
74057405 * NullPointerException if your code does not check whether the value returned
7406- * is null.<br />
7406+ * is <b> null</b> .<br />
74077407 * <br />
74087408 * Starting with Processing release 0134, all files loaded and saved by the
74097409 * Processing API use UTF-8 encoding. In previous releases, the default
@@ -9149,12 +9149,12 @@ protected boolean removeEldestEntry(Map.Entry<String, Pattern> eldest) {
91499149 *
91509150 * This function is used to apply a regular expression to a piece of text, and
91519151 * return matching groups (elements found inside parentheses) as a String
9152- * array. If there are no matches, a null value will be returned. If no groups
9152+ * array. If there are no matches, a <b> null</b> value will be returned. If no groups
91539153 * are specified in the regular expression, but the sequence matches, an array
91549154 * of length 1 (with the matched text as the first element of the array) will
91559155 * be returned.<br />
91569156 * <br />
9157- * To use the function, first check to see if the result is null. If the
9157+ * To use the function, first check to see if the result is <b> null</b> . If the
91589158 * result is null, then the sequence did not match at all. If the sequence did
91599159 * match, an array is returned.<br />
91609160 * <br />
@@ -9173,7 +9173,7 @@ protected boolean removeEldestEntry(Map.Entry<String, Pattern> eldest) {
91739173 * @webref data:string_functions
91749174 * @webBrief The match() function is used to apply a regular expression to a
91759175 * piece of text, and return matching groups (elements found inside
9176- * parentheses) as a String array. No match will return null.
9176+ * parentheses) as a <b> String</b> array. No match will return <b> null</b> .
91779177 * @param str
91789178 * the String to be searched
91799179 * @param regexp
@@ -9203,12 +9203,12 @@ static public String[] match(String str, String regexp) {
92039203 *
92049204 * This function is used to apply a regular expression to a piece of text, and
92059205 * return a list of matching groups (elements found inside parentheses) as a
9206- * two-dimensional String array. If there are no matches, a null value will be
9206+ * two-dimensional String array. If there are no matches, a <b> null</b> value will be
92079207 * returned. If no groups are specified in the regular expression, but the
92089208 * sequence matches, a two dimensional array is still returned, but the second
92099209 * dimension is only of length one.<br />
92109210 * <br />
9211- * To use the function, first check to see if the result is null. If the
9211+ * To use the function, first check to see if the result is <b> null</b> . If the
92129212 * result is null, then the sequence did not match at all. If the sequence did
92139213 * match, a 2D array is returned.<br />
92149214 * <br />
@@ -11524,9 +11524,9 @@ public void endShape(int mode) {
1152411524 * <br />
1152511525 * If the file is not available or an error occurs, <b>null</b> will
1152611526 * be returned and an error message will be printed to the console.
11527- * The error message does not halt the program, however the null value
11527+ * The error message does not halt the program, however the <b> null</b> value
1152811528 * may cause a NullPointerException if your code does not check whether
11529- * the value returned is null.<br />
11529+ * the value returned is <b> null</b> .<br />
1153011530 *
1153111531 * @webref shape
1153211532 * @webBrief Loads geometry into a variable of type <b>PShape</b>.
@@ -11615,7 +11615,7 @@ public PShape createShape(int kind, float... p) {
1161511615 * be returned and an error message will be printed to the console.
1161611616 * The error message does not halt the program, however the null
1161711617 * value may cause a NullPointerException if your code does not check
11618- * whether the value returned is null.<br />
11618+ * whether the value returned is <b> null</b> .<br />
1161911619 *
1162011620 *
1162111621 * @webref rendering:shaders
0 commit comments