[Red5commits] [1592] formatted javadocs a bit
jbauch
luke at codegent.com
Wed Jan 24 11:01:31 EST 2007
formatted javadocs a bit
Timestamp: 12/18/06 13:36:01 EST (1 month ago)
Change: 1592
Author: jbauch
Files (see diff or trac for details):
java/server/trunk/src/org/red5/server/adapter/ApplicationAdapter.java
Trac: http://mirror1.cvsdude.com/trac/osflash/red5/changeset/1592
Index: /java/server/trunk/src/org/red5/server/adapter/ApplicationAdapter.java
===================================================================
--- /java/server/trunk/src/org/red5/server/adapter/ApplicationAdapter.java (revision 1591)
+++ /java/server/trunk/src/org/red5/server/adapter/ApplicationAdapter.java (revision 1592)
@@ -80,21 +80,22 @@
* offers much more convenient way to add methods for remote invocation to your applications.
*
- * EXAMPLE:
- *
+ * <p><strong>EXAMPLE:</strong></p>
+ * <p>
* <code>
- * public List<String> getLiveStreams() {
- * // Implementation goes here, say, use Red5 object to obtain scope and all it's streams
- * }
+ * public List<String> getLiveStreams() {<br />
+ * // Implementation goes here, say, use Red5 object to obtain scope and all it's streams<br />
+ * }<br />
* </code>
*
- * This methos added to ApplicationAdapter sublass can be called from client side with the following code:
+ * <p>This method added to ApplicationAdapter sublass can be called from client side with the following code:</p>
*
* <code>
- * var nc:NetConnection = new NetConnection();
- * nc.connect(...);
- * nc.call("getLiveStreams", resultHandlerObj);
+ * var nc:NetConnection = new NetConnection();<br />
+ * nc.connect(...);<br />
+ * nc.call("getLiveStreams", resultHandlerObj);<br />
* </code>
*
- * If you want to build a server-side framework this is a place to start and wrap it around ApplicationAdapter subclass.
+ * <p>If you want to build a server-side framework this is a place to start and wrap it around ApplicationAdapter subclass.</p>
+ * </p>
*
*/
@@ -173,5 +174,5 @@
* accordingly. You override
* {@link ApplicationAdapter#appConnect(IConnection, Object[])} or
- * {@link ApplicationAdapter#roomConnect(IConnection, Object[])}} in your
+ * {@link ApplicationAdapter#roomConnect(IConnection, Object[])} in your
* application to make it act the way you want.
*
@@ -393,16 +394,13 @@
* application using <code>NetConnection.connect</code> method.
*
- * EXAMPLE:
- *
+ * <p><strong>EXAMPLE:</strong><br />
* In this simple example we pass user's skin of choice identifier from
- * client to th server.
- *
- * Client-side:
- *
- * <code>NetConnection.connect( "rtmp://localhost/killerred5app", "silver" );</code>
- *
- * Server-side:
- *
- * <code>if (params.length > 0) System.out.println( "Theme selected: " + params[0] );</code>
+ * client to th server.</p>
+ *
+ * <p><strong>Client-side:</strong><br />
+ * <code>NetConnection.connect("rtmp://localhost/killerred5app", "silver");</code></p>
+ *
+ * <p><strong>Server-side:</strong><br />
+ * <code>if (params.length > 0) System.out.println("Theme selected: " + params[0]);</code></p>
*
* @param conn
Note:
Diffs are chopped if more than 25k.
This is to get past the limit on the mailing list.
More information about the Red5commits
mailing list