FileDocCategorySizeDatePackage
ViewLocalizedDataAction.javaAPI DocExample1230Tue Sep 14 21:02:54 BST 2004com.oreilly.strutsckbk.ch12

ViewLocalizedDataAction

public final class ViewLocalizedDataAction extends org.apache.struts.action.Action

Fields Summary
Constructors Summary
Methods Summary
public org.apache.struts.action.ActionForwardexecute(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)

        Order order = new Order();
        order.setPartNumber("848489-4949");
        order.setQuantity(new Integer(1));
        order.setDatePlaced(new Date());
        order.setAmount(new Double("13995.78"));
        request.setAttribute("order", order);

        return mapping.findForward("success");