UIComponent uic = eventSource.findComponent("pg1");
if (_findChildById(uic,"oi2") != null)
return;
FacesContext fc = FacesContext.getCurrentInstance();
CoreImage newChild =
(CoreImage) fc.getApplication().createComponent(
"org.apache.myfaces.trinidad.CoreImage");
newChild.setId("oi2");
newChild.setInlineStyle("height: 100px, width: 120px");
newChild.setSource(
"http://homepage.mac.com/awiner/.Pictures/WindyHill/PaleSwallowtail.jpg");
uic.getChildren().add(newChild);
ComponentChange aca = new AddChildComponentChange(newChild);