All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openurp.edu.grade.plan.adapters.GroupResultAdapter Maven / Gradle / Ivy

There is a newer version: 0.41.4
Show newest version
/*
 * OpenURP, Agile University Resource Planning Solution.
 *
 * Copyright © 2014, The OpenURP Software.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful.
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package org.openurp.edu.grade.plan.adapters;

import java.util.Collections;
import java.util.List;

import org.openurp.code.edu.model.CourseType;
import org.openurp.edu.grade.plan.model.AuditStat;
import org.openurp.edu.grade.plan.model.AuditCourseResult;
import org.openurp.edu.grade.plan.model.AuditGroupResult;
import org.openurp.edu.grade.plan.model.AuditPlanResult;

public class GroupResultAdapter extends AuditGroupResult {

  private static final long serialVersionUID = 1929862666682635612L;

  private AuditPlanResult result;

  private List topGroups;

  /**
   * 用于伪装组结果
   *
   * @param result
   */
  public GroupResultAdapter(AuditPlanResult result) {
    super();
    this.result = result;
    this.topGroups = result.getTopGroupResults();
  }

  public void removeChild(AuditGroupResult gr) {
  }

  public void addChild(AuditGroupResult gr) {
  }

  public AuditStat getAuditStat() {
    return new PlanAuditStat(result);
  }

  public void attachTo(AuditPlanResult planResult) {
  }

  public void detach() {
  }

  // 课程仅仅在组中,计划中没有
  public void addCourseResult(AuditCourseResult courseResult) {
  }

  // 课程仅仅在组中,计划中没有
  public void updateCourseResult(AuditCourseResult rs) {
  }

  public List getChildren() {
    return this.topGroups;
  }

  public void checkPassed() {
    AuditGroupResult.checkPassed(this, false);
  }

  public void checkPassed(boolean isRecursive) {
    AuditGroupResult.checkPassed(this, isRecursive);
  }

  public String getName() {
    return "计划";
  }

  public List getCourseResults() {
    return Collections.emptyList();
  }

  public CourseType getCourseType() {
    return null;
  }

  public AuditGroupResult getParent() {
    return null;
  }

  public AuditPlanResult getPlanResult() {
    return result;
  }

  public boolean isPassed() {
    return result.isPassed();
  }

  public void setPassed(boolean passed) {
    result.setPassed(passed);
  }

  public void setAuditStat(AuditStat auditStat) {
    result.setRequiredCredits(auditStat.getRequiredCredits());
    result.setPassedCredits(auditStat.getPassedCredits());
  }

  @Override
  public short getSubCount() {
    return (short) topGroups.size();
  }

  @Override
  public void setSubCount(short num) {
  }

  public void setChildren(List children) {
  }

  public void setCourseResults(List planCourseAuditResults) {
  }

  public void setCourseType(CourseType courseType) {
  }

  public void setParent(AuditGroupResult parent) {
  }

  public void setPlanResult(AuditPlanResult planResult) {
  }

  public void setName(String name) {
    // TODO Auto-generated method stub
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy