Package cn.edu.zju.acm.onlinejudge.bean.enumeration

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

Related Classes of cn.edu.zju.acm.onlinejudge.bean.enumeration.JudgeReply

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.