40ad7e115701001d1778fc5ec0f53fee
来自「实训时做的物流系统」· 代码 · 共 58 行
TXT
58 行
/*******************************************************************************
* Copyright (c) 2005 Eteration A.S. and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Eteration A.S. - initial API and implementation
******************************************************************************/
package com.cost.web.struts.form.business;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import com.cost.persistence.hibernate.pojo.Order;
public class FeeForm extends BaseForm {
private Order order =new Order();
private int amount;
public int getAmount() {
return amount;
}
public void setAmount(int amount) {
this.amount = amount;
}
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
ActionErrors errors = new ActionErrors();
// Validate an attribute named "xxx"
//if( getXXX() == null || getXXX().length() == 0 )
// errors.add("xxx",new ActionMessage("errors.required","xxx"));
isRequired("orderNo", order.getOrderNo(), errors);
isRequired("blNo", order.getBlNo(), errors);
isRequired("orderNo", order.getOrderNo(), errors);
isRequired("orderNo", order.getOrderNo(), errors);
isRequired("orderNo", order.getOrderNo(), errors);
return errors;
}
public void reset(ActionMapping mapping, HttpServletRequest request) {
super.reset(mapping, request);
}
public Order getOrder() {
return order;
}
public void setOder(Order order) {
this.order = order;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?