Skip to content

Strong Typed HTML/XML Web framework and embedded nosql database for Java that I wrote in 2008

Notifications You must be signed in to change notification settings

seanmceligot/yuzz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yuzz

Strong Typed HTML/XML Web framework and embedded nosql database for Java that I wrote in 2008

  Table table = table( 
          a("border","1"),
    	    tr( 
    	     td( alist(a("align", "left")), 
    	      n("font", a("size", "+1"), 
    	       n("strong", t("Method")))) 
    	       ));
    F2<Table, String, Table> fun = new Fun.F2<Table, String, Table>() {
      public Table f(Table table, String str) {
        table.add(tr(td(t(str))));
        return table;
      }
      
    };
    List<String> methods = Functions.map(new F<Method,String>() {
      public String f(Method m) {
        return m.toString();
      }
      
    } , NodeStatics.class.getMethods());
    Functions.reduce(fun , table, methods );
    return table;

About

Strong Typed HTML/XML Web framework and embedded nosql database for Java that I wrote in 2008

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published