", "style", "background-color: #000000;");
datas.setAttribute ("number", "style", "background-color: #0000FF;");
errorMessage = new StringBuffer ();
source = new StringBuffer ();
source.append ("
\n");
source.append ("
one
\n");
source.append ("\n");
source.append ("
\n");
source.append ("
three
\n");
source.append ("");
htmlSource = source.toString ();
html = Presenter.doXid (htmlSource, datas, errorMessage);
System.out.println (htmlSource);
System.out.println ("+");
System.out.println ("datas = new Data ();");
System.out.println ("datas.setAttribute (\"
\", \"class\", \"aDivClass\");");
System.out.println ("datas.setAttribute (\"
\", \"style\", \"background-color: #000000;\");");
System.out.println ("datas.setAttribute (\"number\", \"style\", \"background-color: #0000FF;\");");
System.out.println ("=>");
System.out.println (html);
}
}