Package atg.versionmanager

Examples of atg.versionmanager.Workspace


                                   boolean pDoWithoutTransaction,
                                   String pWorkspaceComment,
                                   boolean pCheckin)
            throws VersionException {
        VersionManager vm = pVerRep.getVersionManager();
        Workspace ws = vm.getWorkspaceByName(pWorkspaceName);
        if (ws == null) {
            throw new IllegalArgumentException("No such workspace " + pWorkspaceName);
        }

        if (TemplateParser.importFiles(
                pVerRep, pImportFiles, new PrintWriter(
                System.out
        ), pDoWithoutTransaction, VersioningContextUtil.createVersioningContext(
                ws.getName(), pWorkspaceComment, pCheckin
        )
        ) != 0) {
            throw new AssertionError("Versioned import failed");
        }
    }
View Full Code Here

TOP

Related Classes of atg.versionmanager.Workspace

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.