Package com.googlecode.jslint4java.eclipse.builder

Examples of com.googlecode.jslint4java.eclipse.builder.NatureManager


public class ToggleNatureAction implements IObjectActionDelegate {

    private IStructuredSelection selection;

    public void run(IAction action) {
        NatureManager natureManager = new NatureManager();
        for (Object obj : selection.toArray()) {
            IProject project = projectFromSelectedItem(obj);
            if (project != null) {
                natureManager.toggleNature(project);
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.googlecode.jslint4java.eclipse.builder.NatureManager

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.