@see_external tag implemented. See todo.txt for more info. Allows for proper documentation of events in libraries.

This commit is contained in:
sansumbrella
2011-09-23 01:34:03 +00:00
parent a2c6667ed7
commit 7e83cfc9c7
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -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);
+1
View File
@@ -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 {