1 4 package org.roller.presentation.weblog.formbeans; 5 6 import org.apache.struts.action.ActionForm; 7 8 import java.util.List ; 9 10 13 public class CategoryDeleteForm extends ActionForm 14 { 15 private String name; 16 private String catid = null; 17 private String moveToWeblogCategoryId = null; 18 private List cats = null; 19 private Boolean inUse = Boolean.FALSE; 20 private Boolean confirmDelete = null; 21 22 25 public List getCats() 26 { 27 return cats; 28 } 29 30 33 public String getCatid() 34 { 35 return catid; 36 } 37 38 41 public Boolean isInUse() 42 { 43 return inUse; 44 } 45 46 49 public String getMoveToWeblogCategoryId() 50 { 51 return moveToWeblogCategoryId; 52 } 53 54 57 public void setCats(List list) 58 { 59 cats = list; 60 } 61 62 65 public void setCatid(String string) 66 { 67 catid = string; 68 } 69 70 73 public void setInUse(Boolean b) 74 { 75 inUse = b; 76 } 77 78 81 public void setMoveToWeblogCategoryId(String string) 82 { 83 moveToWeblogCategoryId = string; 84 } 85 86 89 public Boolean isDelete() 90 { 91 return confirmDelete; 92 } 93 94 97 public void setConfirmDelete(Boolean b) 98 { 99 confirmDelete = b; 100 } 101 102 105 public String getName() 106 { 107 return name; 108 } 109 110 113 public void setName(String string) 114 { 115 name = string; 116 } 117 118 121 public Boolean getConfirmDelete() 122 { 123 return confirmDelete; 124 } 125 126 129 public Boolean getInUse() 130 { 131 return inUse; 132 } 133 134 } 135 | Popular Tags |