Package com.sk89q.worldedit.function.operation

Examples of com.sk89q.worldedit.function.operation.OperationQueue


        }
    }

    @Override
    public Operation commitBefore() {
        return new OperationQueue(
                new BlockMapEntryPlacer(
                        getExtent(),
                        Iterators.concat(stage1.iterator(), stage2.iterator())),
                new Stage3Committer());
    }
View Full Code Here


    @Override
    public final @Nullable Operation commit() {
        Operation ours = commitBefore();
        Operation other = extent.commit();
        if (ours != null && other != null) {
            return new OperationQueue(ours, other);
        } else if (ours != null) {
            return ours;
        } else if (other != null) {
            return other;
        } else {
View Full Code Here

TOP

Related Classes of com.sk89q.worldedit.function.operation.OperationQueue

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.