View Javadoc
1 /* 2 * SortInfoForm.java 3 * 4 * Created on February 7, 2003, 6:09 AM 5 */ 6 7 package com.mlw.fps.view.form; 8 9 import javax.servlet.http.HttpServletRequest; 10 11 import org.apache.struts.action.ActionMapping; 12 13 /*** 14 * 15 * @author Matthew Wilson 16 */ 17 public class AdvancedSortInfoForm extends SortInfoForm 18 { 19 private boolean preview = false; 20 21 private String weaponPk; 22 private String killerPk; 23 private String action; 24 private String mapPk; 25 private String gamePk; 26 27 /*** Creates a new instance of SortInfoForm 28 */ 29 public AdvancedSortInfoForm() 30 { 31 } 32 33 public void reset(ActionMapping mapping, HttpServletRequest request) 34 { 35 super.reset(mapping, request); 36 weaponPk = null; 37 killerPk = null; 38 action = null; 39 } 40 41 /*** Getter for property weapon. 42 * @return Value of property weapon. 43 */ 44 public String getWeaponPk() 45 { 46 return this.weaponPk; 47 } 48 49 /*** Setter for property weapon. 50 * @param weapon New value of property weapon. 51 */ 52 public void setWeaponPk(String weaponPk) 53 { 54 this.weaponPk = weaponPk; 55 } 56 57 /*** Getter for property killerPk. 58 * @return Value of property killerPk. 59 */ 60 public String getKillerPk() 61 { 62 return this.killerPk; 63 } 64 65 /*** Setter for property killerPk. 66 * @param killerPk New value of property killerPk. 67 */ 68 public void setKillerPk(String killerPk) 69 { 70 this.killerPk = killerPk; 71 } 72 73 /*** Getter for property action. 74 * @return Value of property action. 75 */ 76 public String getAction() 77 { 78 return this.action; 79 } 80 81 /*** Setter for property action. 82 * @param action New value of property action. 83 */ 84 public void setAction(String action) 85 { 86 this.action = action; 87 } 88 89 /*** Getter for property mapPk. 90 * @return Value of property mapPk. 91 */ 92 public String getMapPk() 93 { 94 return this.mapPk; 95 } 96 97 /*** Setter for property mapPk. 98 * @param mapPk New value of property mapPk. 99 */ 100 public void setMapPk(String mapPk) 101 { 102 this.mapPk = mapPk; 103 } 104 105 /*** 106 * @return boolean 107 */ 108 public boolean isPreview() 109 { 110 return preview; 111 } 112 113 /*** 114 * Sets the preview. 115 * @param preview The preview to set 116 */ 117 public void setPreview(boolean preview) 118 { 119 this.preview = preview; 120 } 121 122 /*** 123 * @return 124 */ 125 public String getGamePk() 126 { 127 return gamePk; 128 } 129 130 /*** 131 * @param string 132 */ 133 public void setGamePk(String string) 134 { 135 gamePk= string; 136 } 137 138 }

This page was automatically generated by Maven