public class AuAppendChild extends AuResponse {
public AuAppendChild(Component comp, String content) {
super("addChd", comp, new Object[] {comp.getUuid(), new JavaScriptValue(content)});
}
public AuAppendChild(Page page, String content) {
super("addChd", page, new Object[] {page.getUuid(), new JavaScriptValue(content)});
}