Package com.cloudbees.hudson.plugins.folder

Examples of com.cloudbees.hudson.plugins.folder.Folder


    public Context(ProjectCreator currentRoot) {
        this.currentRoot = currentRoot;
    }

    public Context createFolder(String name) throws IOException {
        Folder folder = currentRoot.createProject(Folder.class, name);
        return new Context(new FolderAdapter(folder));
    }
View Full Code Here

TOP

Related Classes of com.cloudbees.hudson.plugins.folder.Folder

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.