View Javadoc
1 /* 2 * OptionsForm.java 3 * 4 * Created on February 18, 2003, 2:27 PM 5 */ 6 7 package com.mlw.fps.view.form; 8 9 import org.apache.struts.action.ActionForm; 10 /*** 11 * 12 * @author Matthew Wilson 13 */ 14 public class OptionsForm extends ActionForm 15 { 16 private String style; 17 18 /*** Creates a new instance of OptionsForm 19 */ 20 public OptionsForm() 21 { 22 } 23 24 /*** Getter for property style. 25 * @return Value of property style. 26 */ 27 public String getStyle() 28 { 29 return this.style; 30 } 31 32 /*** Setter for property style. 33 * @param style New value of property style. 34 */ 35 public void setStyle(String style) 36 { 37 this.style = style; 38 } 39 40 }

This page was automatically generated by Maven