Examples of testFinish()


Examples of kr.or.ioi2002.RMIServer.User.testFinish()

    public boolean testFinish(String contestId, String userid, String task, byte[] output) {
        User user = contestManager.getUser(contestId, userid);
        if (user == null)
            return false;

        return user.testFinish(task, output);
    }

    public ContestManager getContestManager() {
        return contestManager;
    }
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.