Skip to content

Commit b84c03d

Browse files
committed
@see_external tag implemented. See todo.txt for more info. Allows for proper documentation of events in libraries.
1 parent cb672e1 commit b84c03d

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

core/src/processing/core/PApplet.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11113,6 +11113,7 @@ public float textWidth(char[] chars, int start, int length) {
1111311113
* @see PApplet#loadFont(String)
1111411114
* @see PFont#PFont
1111511115
* @see PGraphics#textFont(PFont)
11116+
* @see_external String
1111611117
*/
1111711118
public void text(char c) {
1111811119
if (recorder != null) recorder.text(c);

core/src/processing/core/PGraphics.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3690,6 +3690,7 @@ protected float textWidthImpl(char buffer[], int start, int stop) {
36903690
* @see PApplet#loadFont(String)
36913691
* @see PFont#PFont
36923692
* @see PGraphics#textFont(PFont)
3693+
* @see_external String
36933694
*/
36943695
public void text(char c) {
36953696
text(c, textX, textY, textZ);

java/libraries/net/src/processing/net/Client.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
* @brief The client class is used to create client Objects which connect to a server to exchange data.
4343
* @instanceName client any variable of type Client
4444
* @usage Application
45+
* @see_external LIB_net/clientEvent
4546
*/
4647
public class Client implements Runnable {
4748

0 commit comments

Comments
 (0)