Examples of NatureManager


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
Copyright © 2018 www.massapi.com. 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.