var bulletList:com.ibm.xsp.component.UIPassThroughTag = new com.ibm.xsp.component.UIPassThroughTag();
bulletList.setTag("ul");
bulletList.addAttribute("style", "list-style-type:none;");
var bullet:com.ibm.xsp.component.UIPassThroughTag = new com.ibm.xsp.component.UIPassThroughTag();
bullet.setTag("li");
bulletList.getChildren().add(bullet);
var bulletLabel:com.ibm.xsp.component.UIPassThroughText = new com.ibm.xsp.component.UIPassThroughText();
bulletLabel.setText("Hello, world. It's me, Tim.");
bullet.getChildren().add(bulletLabel);