Package org.jbpm.ui.common.command

Examples of org.jbpm.ui.common.command.NodeSetNameCommand


    @Override
    protected Command getDirectEditCommand(DirectEditRequest request) {
        String value = (String) request.getCellEditor().getValue();
        NodeGraphicalEditPart nodeGraphicalEditPart = (NodeGraphicalEditPart) getHost();
        NodeSetNameCommand command = new NodeSetNameCommand();
        command.setNode(nodeGraphicalEditPart.getModel());
        command.setName(value);
        return command;
    }
View Full Code Here

TOP

Related Classes of org.jbpm.ui.common.command.NodeSetNameCommand

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.