Revision: 3982
          http://vexi.svn.sourceforge.net/vexi/?rev=3982&view=rev
Author:   clrg
Date:     2010-12-21 03:18:01 +0000 (Tue, 21 Dec 2010)

Log Message:
-----------
Documentation for utf8reader, utf8writer

Modified Paths:
--------------
    trunk/org.vexi-library.js/src/main/jpp/org/vexi/js/VexiJS.jpp

Modified: trunk/org.vexi-library.js/src/main/jpp/org/vexi/js/VexiJS.jpp
===================================================================
--- trunk/org.vexi-library.js/src/main/jpp/org/vexi/js/VexiJS.jpp       
2010-12-21 03:09:23 UTC (rev 3981)
+++ trunk/org.vexi-library.js/src/main/jpp/org/vexi/js/VexiJS.jpp       
2010-12-21 03:18:01 UTC (rev 3982)
@@ -337,7 +337,9 @@
             case "url": return METHOD;
             case "xmlwriter": return METHOD;
             case "parsexml": return METHOD;
+            /* @constructor @jpp(VexiJS) */
             case "utf8reader": return METHOD;
+            /* @constructor @jpp(VexiJS) */
             case "utf8writer": return METHOD;
             //#end
             return super.get(key);
@@ -579,13 +581,13 @@
             public JS get(JS key) throws JSExn {
                 try {
                     //#switch(JSU.toString(key))
-                    /*...@page(varname=utf8writer,humanname=UTF8 Writer Object)
+                    /*...@page(varname=utf8reader,humanname=UTF8 Reader Object)
                      * 
                      * <p>Use to read strings from a utf8-encoded stream.</p>
                      */
                     /* <p>Reads a single character from the stream</p>
                      * 
-                     * @return(string)
+                     * @type(String)
                      */
                     case "char":
                         int c = r.read();
@@ -593,13 +595,13 @@
                         return JSU.S(""+(char)c);
                     /* <p>Reads a line from the stream, discarding the 
newline</p>
                      * 
-                     * @return(string)
+                     * @type(String)
                      */
                     case "line":
                         return JSU.S(r.readLine()); 
                     /* <p>Reads all remaining characters and returns them as a 
single string</p>
                      * 
-                     * @return(string)
+                     * @type(String)
                      */
                     case "all":
                         // FEATURE - estimate the size of the string by the 
size


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
Vexi-svn mailing list
Vexi-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to