1 19 20 package org.netbeans.modules.web.struts.wizards; 21 22 public class FormBeanProperty { 23 24 private String property; 25 private String type; 26 27 28 public FormBeanProperty() { 29 } 30 31 public String getProperty() { 32 return property; 33 } 34 35 public void setProperty(String property) { 36 this.property = property; 37 } 38 39 public String getType() { 40 return type; 41 } 42 43 public void setType(String type) { 44 this.type = type; 45 } 46 } 47 | Popular Tags |