Package org.codemap.resources

Examples of org.codemap.resources.MapValueBuilder


        readPreviousProperties();
        commands = new MapCommands(this);
    }

    public void initialize() {
        MapValueBuilder builder = new MapValueBuilder();
        builder.setName("default.map");
        builder.setProjects(Arrays.asList(Resources.asPath(project)));
        builder.setFileExtensions(Arrays.asList("*.java"));
        builder.setInitialConfiguration(readPreviousMapState());
        mapValues = new MapValues(builder);
        mapVisualization = new CodemapVisualization(mapValues);

        redrawAction = new ActionValue<Void>(
                mapValues.mapInstance,
View Full Code Here

TOP

Related Classes of org.codemap.resources.MapValueBuilder

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.