Skip to content

Instantly share code, notes, and snippets.

@namiken
Created July 8, 2014 09:08
Show Gist options
  • Save namiken/53c8e6825196550392c9 to your computer and use it in GitHub Desktop.
Save namiken/53c8e6825196550392c9 to your computer and use it in GitHub Desktop.
package form;
import javax.servlet.http.HttpServletRequest;
public class UserForm {
public int id;
public String name;
public int age;
public String address;
public UserForm(HttpServletRequest req) {
//TODO フィールドに代入する
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment