Package y.module

Examples of y.module.IncrementalHierarchicLayoutModule


     * Creates the incremental hierarchic layout module.
     *
     * @return the incremental hierarchic layout module
     */
    private IncrementalHierarchicLayoutModule createIncrementalHierarchicLayoutModule() {
        IncrementalHierarchicLayoutModule layoutModule = new IncrementalHierarchicLayoutModule();

        layoutModule.setBufferedMode(true);

        OptionHandler options = layoutModule.getOptionHandler();
        OptionItem item = options.getItem("GROUP_LAYERING_STRATEGY");
        item.setValue("RECURSIVE_LAYERING");
        item = options.getItem("SELECTED_ELEMENTS_INCREMENTALLY");
        item.setValue(true);

View Full Code Here

TOP

Related Classes of y.module.IncrementalHierarchicLayoutModule

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.