View Javadoc
1 /* 2 * Demosys. 3 * 4 * Terms of license - http://opensource.org/licenses/apachepl.php 5 */ 6 package org.demosys.web.user.action; 7 import javax.servlet.http.HttpServletRequest; 8 import org.apache.struts.action.ActionForm; 9 import org.apache.struts.action.ActionMapping; 10 import org.demosys.web.user.UserView; 11 /*** 12 * Struts From to create a User. 13 */ 14 public class UserForm extends ActionForm { 15 protected UserView _view = new UserView(); 16 17 public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { 18 setComment(null); 19 setName(null); 20 setId(null); 21 setEmail(null); 22 } 23 24 25 public String getName() { 26 return _view.getName(); 27 } 28 29 30 public void setName(String name) { 31 _view.setName(name); 32 } 33 34 35 public String getId() { 36 return _view.getId(); 37 } 38 39 40 public void setId(String id) { 41 _view.setId(id); 42 } 43 44 45 public String getEmail() { 46 return _view.getEmail(); 47 } 48 49 50 public void setEmail(String email) { 51 _view.setEmail(email); 52 } 53 54 55 public String getComment() { 56 return _view.getComment(); 57 } 58 59 60 public void setComment(String comment) { 61 _view.setComment(comment); 62 } 63 64 65 public UserView toUserView() { 66 return (UserView)_view.clone(); 67 } 68 }

This page was automatically generated by Maven