⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 videotypeactionform.java

📁 本程序是作者开发的一个宽带娱乐系统的一个模块.
💻 JAVA
字号:
package com.singnet.video.struts.form;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;

public class VideoTypeActionForm extends ActionForm{

    /** The composite primary key value. */
    private java.lang.String id;

    /** The value of the simple typename property. */
    private java.lang.String typename;

    /** The value of the simple remark property. */
    private java.lang.String remark;

	 public ActionErrors validate(ActionMapping actionMapping,
             HttpServletRequest httpServletRequest) {
/** @todo: finish this method, this is just the skeleton.*/
return null;
}

public void reset(ActionMapping actionMapping,
  HttpServletRequest servletRequest) {
}

public java.lang.String getId() {
	return id;
}

public void setId(java.lang.String id) {
	this.id = id;
}

public java.lang.String getRemark() {
	return remark;
}

public void setRemark(java.lang.String remark) {
	this.remark = remark;
}

public java.lang.String getTypename() {
	return typename;
}

public void setTypename(java.lang.String typename) {
	this.typename = typename;
}
}

⌨️ 快捷键说明

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