appactionform.java

来自「培训考试系统代码」· Java 代码 · 共 44 行

JAVA
44
字号
package com.huawei.icd30.agt.configmng;

import org.apache.struts.action.*;
import javax.servlet.http.*;

public final class AppActionForm extends ActionForm {
  private String calendarNotify;
  private String planNotify;
  private String examNotify;
  private String lessonNotify;

  public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
    /**@todo: finish this method, this is just the skeleton.*/
    return null;
  }
  public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  }
  public String getCalendarNotify() {
    return calendarNotify;
  }
  public void setCalendarNotify(String calendarNotify) {
    this.calendarNotify = calendarNotify;
  }
  public String getPlanNotify() {
    return planNotify;
  }
  public void setPlanNotify(String planNotify) {
    this.planNotify = planNotify;
  }

  public String getExamNotify() {
    return examNotify;
  }
  public void setExamNotify(String examNotify) {
    this.examNotify = examNotify;
  }

  public String getLessonNotify() {
    return lessonNotify;
  }
  public void setLessonNotify(String lessonNotify) {
    this.lessonNotify = lessonNotify;
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?