Package org.drools.guvnor.shared.simulation.command

Examples of org.drools.guvnor.shared.simulation.command.AbstractCommandModel


    }

    public void moveUpCommand(AbstractCommandModel command) {
        int commandIndex = commands.indexOf(command);
        int swapCommandIndex = commandIndex - 1;
        AbstractCommandModel swapCommand = commands.get(swapCommandIndex);
        commands.set(swapCommandIndex, command);
        commands.set(commandIndex, swapCommand);
    }
View Full Code Here


    }

    public void moveDownCommand(AbstractCommandModel command) {
        int commandIndex = commands.indexOf(command);
        int swapCommandIndex = commandIndex + 1;
        AbstractCommandModel swapCommand = commands.get(swapCommandIndex);
        commands.set(swapCommandIndex, command);
        commands.set(commandIndex, swapCommand);
    }
View Full Code Here

TOP

Related Classes of org.drools.guvnor.shared.simulation.command.AbstractCommandModel

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.