Package cn.edu.zju.acm.onlinejudge.form

Examples of cn.edu.zju.acm.onlinejudge.form.ProblemForm.populate()


        }

        ProblemForm problemForm = (ProblemForm) form;
        if (problemForm == null || problemForm.getName() == null) {
            Problem problem = context.getProblem();
            problemForm.populate(problem, context.getContest());
            this.setReference("DescriptionRef", ReferenceType.DESCRIPTION, problem.getId(), context);
            this.setReference("InputRef", ReferenceType.INPUT, problem.getId(), context);
            this.setReference("OutputRef", ReferenceType.OUTPUT, problem.getId(), context);
            this.setReference("JudgeSolutionRef", ReferenceType.JUDGE_SOLUTION, problem.getId(), context);
            this.setReference("HeaderRef", ReferenceType.HEADER, problem.getId(), context);
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.