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

📄 czkform.java

📁 STRUTS数据库项目开发宝典
💻 JAVA
字号:
package org.helpsoft.forms;

import java.util.Collection;
import java.util.ArrayList;
import javax.servlet.http.*;
import org.apache.struts.action.*;
import org.helpsoft.servicelocator.*;
import org.helpsoft.session.AssociatorManageService;
import com.helpsoft.Constants;
import org.helpsoft.session.*;

/**
 * Form bean for the czk form page.
 *
 * @author  cao guangxin - www.relationinfo.com
 * @struts.form name="czkForm"
 */
public final class CzkForm extends ServiceForm {
   private String mode;
   private String hykbm;
   private String hykmc;
   private String yhdzl;
   private String sjck;

   /**
    * Returns the value of the <code>mode</code> property.
    *
    * @return the value of the <code>mode</code> property.
    */
   public String getMode() {
      return mode;
   }

   /**
    * Sets the value of the <code>mode</code> property.
    *
    * @param mode the mode
    */
   public void setMode(String mode) {
      this.mode = mode;
   }

   /**
    * Returns the value of the <code>hykbm</code> property.
    *
    * @return the value of the <code>hykbm</code> property.
    */
   public String getHykbm() {
      return hykbm;
   }

   /**
    * Sets the value of the <code>hykbm</code> property.
    *
    * @param hykbm a value for <code>hykbm</code>.
    */
   public void setHykbm(String hykbm) {
      this.hykbm = hykbm;
   }

   /**
    * Returns the value of the <code>hykmc</code> property.
    *
    * @return the value of the <code>hykmc</code> property.
    */
   public String getHykmc() {
      return hykmc;
   }

   /**
    * Sets the value of the <code>hykmc</code> property.
    *
    * @param hykmc a value for <code>hykmc</code>.
    */
   public void setHykmc(String hykmc) {
      this.hykmc = hykmc;
   }

   /**
    * Returns the value of the <code>yhdzl</code> property.
    *
    * @return the value of the <code>yhdzl</code> property.
    */
   public String getYhdzl() {
      return yhdzl;
   }

   /**
    * Sets the value of the <code>yhdzl</code> property.
    *
    * @param yhdzl a value for <code>yhdzl</code>.
    */
   public void setYhdzl(String yhdzl) {
      this.yhdzl = yhdzl;
   }

   /**
    * Returns the value of the <code>sjck</code> property.
    *
    * @return the value of the <code>sjck</code> property.
    */
   public String getSjck() {
      return sjck;
   }

   /**
    * Sets the value of the <code>sjck</code> property.
    *
    * @param sjck a value for <code>sjck</code>.
    */
   public void setSjck(String sjck) {
      this.sjck = sjck;
   }


   /**
    * Obtains the total number of czk objects.
    *
    * @throws Exception exception
    * @return an integer value.
    */
   public int getListSize() throws Exception {
      return getAssociatorManageService().getCzkListSize();
   }

   /**
    * Obtains a collection of all czk objects.
    *
    * @throws Exception exception
    * @return a collection of CzkData objects.
    */
   public Collection getList() throws Exception {
      Collection result = getAssociatorManageService().getCzkList();
      if (result.size() > 0) {
        return result;
      } else {
        return new ArrayList();
      }

   }

   /**
    * Performs server-side validation on the properties that have been set from this HTTP request,
    * and returns an <code>ActionErrors</code> object that encapsulates any
    * validation errors that have been found.  If no errors are found, returns
    * <code>null</code> or an <code>ActionErrors</code> object with no
    * recorded error messages.
    * <p>
    * <b>NOTE:</b> Please override this method and not the ValidatorForm 'validate'
    * method - any errors thrown in an overwritten 'validate' method will not be handled
    * by the GenericExceptionHandling framework.
    *
    * @param mapping The mapping used to select this instance
    * @param request The servlet request we are processing
    * @return a list with errors or <code>null</code> iIf no errors are found
    * @throws Exception - all exceptions are handled by the GenericExceptions framework
    * (no stack trace dumps shown to the user!)
    */
   public ActionErrors doValidate(ActionMapping mapping, HttpServletRequest request) throws Exception {
      boolean noValidate = (request.getParameter(Constants.SUBMIT_NO_VALIDATION) != null);
      return noValidate ? null : super.doValidate(mapping, request);
   }

   /**
    * Returns the string representation of the form.
    *
    * @return the string representation of the form
    */
   public String toString() {
      StringBuffer sb = new StringBuffer();
      sb.append("\nhykbm : ").append(hykbm);
      sb.append("\nhykmc : ").append(hykmc);
      sb.append("\nyhdzl : ").append(yhdzl);
      sb.append("\nsjck : ").append(sjck);
      return sb.toString();
   }
}

⌨️ 快捷键说明

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