* @param child
*
* @return
*/
protected Command createCreatePropertyCommand(IAttribute child, int index) {
CreatePropertyCommand cmd = new CreatePropertyCommand();
cmd.setParent((IWebflowModelElement) getHost().getModel());
cmd.setChild(child);
if (index >= 0)
cmd.setIndex(index);
return cmd;
}