Logo 
Search:

Java Forum

Ask Question   UnAnswered
Home » Forum » Java       RSS Feeds

isCanceled

  Asked By: Clifton    Date: Sep 27    Category: Java    Views: 437
  

I want to compile a file(ConfirmationAction.java) as below but I get an error,
would you mind helping to solve the problem?
thanks a lot.
___________ConfirmationAction.java_____________
package j2eebook.fasle6;

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

public class ConfirmationAction extends Action{

public ActionForward execute(ActionMapping mapping,ActionForm form,
HttpServletRequest request,HttpServletResponse response){



if(isCanceled(request)){
return mapping.findForward("editing.again");
}else{
RegistrationActionForm regForm=(RegistrationActionForm) form;
//insert in DB
}
return mapping.findForward("register.success");
}
}

___________error in compiling___________________

ConfirmationAction.java:13: cannot find symbol
symbol : method isCanceled()
location: class j2eebook.fasle6.ConfirmationAction
if(isCanceled()){
^
1 error

Share: 

 

No Answers Found. Be the First, To Post Answer.

 
Didn't find what you were looking for? Find more on isCanceled Or get search suggestion and latest updates.

Related Topics:



Tagged:  

 

Related Post