Package de.fu_berlin.inf.dpp.activities.business

Examples of de.fu_berlin.inf.dpp.activities.business.ProjectsAddedActivity


            throw new LocalCancellationException(null, CancelOption.NOTIFY_PEER);
        subMonitor.subTask("");
        log.debug("Inv" + Utils.prefix(peer) + ": Sending file list...");
        subMonitor.setTaskName("Sending file list...");
        this.sarosSession.sendActivity(sarosSession.getUser(peer),
            new ProjectsAddedActivity(sarosSession.getLocalUser(), pInfos,
                processID, this.doStream));
        subMonitor.done();

    }
View Full Code Here


        List<ProjectExchangeInfo> pInfos = new ArrayList<ProjectExchangeInfo>(
            this.projectInfos.size());
        for (ProjectExchangeInfoDataObject projectInfo : this.projectInfos) {
            pInfos.add(projectInfo.toProjectInfo());
        }
        return new ProjectsAddedActivity(sarosSession.getUser(source), pInfos,
            processID, doStream);
    }
View Full Code Here

TOP

Related Classes of de.fu_berlin.inf.dpp.activities.business.ProjectsAddedActivity

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.