mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
@see_external tag implemented. See todo.txt for more info. Allows for proper documentation of events in libraries.
This commit is contained in:
@@ -11113,6 +11113,7 @@ public class PApplet extends Applet
|
||||
* @see PApplet#loadFont(String)
|
||||
* @see PFont#PFont
|
||||
* @see PGraphics#textFont(PFont)
|
||||
* @see_external String
|
||||
*/
|
||||
public void text(char c) {
|
||||
if (recorder != null) recorder.text(c);
|
||||
|
||||
@@ -3690,6 +3690,7 @@ public class PGraphics extends PImage implements PConstants {
|
||||
* @see PApplet#loadFont(String)
|
||||
* @see PFont#PFont
|
||||
* @see PGraphics#textFont(PFont)
|
||||
* @see_external String
|
||||
*/
|
||||
public void text(char c) {
|
||||
text(c, textX, textY, textZ);
|
||||
|
||||
@@ -42,6 +42,7 @@ import java.net.*;
|
||||
* @brief The client class is used to create client Objects which connect to a server to exchange data.
|
||||
* @instanceName client any variable of type Client
|
||||
* @usage Application
|
||||
* @see_external LIB_net/clientEvent
|
||||
*/
|
||||
public class Client implements Runnable {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user