Package org.springframework.ide.eclipse.webflow.ui.graph.commands

Examples of org.springframework.ide.eclipse.webflow.ui.graph.commands.CreatePropertyCommand


     * @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;
    }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.webflow.ui.graph.commands.CreatePropertyCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.