Examples of JudgeReply


Examples of cn.edu.zju.acm.onlinejudge.bean.enumeration.JudgeReply

        }
    }

    private int readJudgeReply() throws IOException {
        int reply = this.in.readInt();
        JudgeReply r = JudgeReply.findById(reply);
        if (r == null) {
            this.logger.error("Invalid judge reply " + reply);
        } else if (r != JudgeReply.RUNNING) {
            this.logger.info(r.getDescription());
        }
        return reply;
    }
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.