Package edu.mit.blocks.codeblocks

Examples of edu.mit.blocks.codeblocks.BlockStub


        }

        Block block;
        if (myblock instanceof BlockStub) {
            Block parent = ((BlockStub) myblock).getParent();
            block = new BlockStub(workspace, parent.getBlockID(), parent.getGenusName(), parent.getBlockLabel(), myblock.getGenusName());
        } else {
            block = new Block(workspace, myblock.getGenusName(), label);
        }

        // TODO - djwendel - create a copy of the RB properties too, using an RB copy constructor.  Don't just use the genus.
View Full Code Here

TOP

Related Classes of edu.mit.blocks.codeblocks.BlockStub

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.