/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package pos.purchase.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
* MyEclipse Struts
* Creation date: 04-14-2009
*
* XDoclet definition:
* @struts.form name="SupplierForm"
*/
public class SupplierForm extends ActionForm {
/*
* Generated fields
*/
/** phone property */
private String phone;
/** taxID property */
private String taxID;
/** linkman property */
private String linkman;
/** mobile property */
private String mobile;
/** notes property */
private String notes;
/** supplierName property */
private String supplierName;
/** address property */
private String address;
/** homepage property */
private String homepage;
/** fax property */
private String fax;
/** supplierID property */
private String supplierID;
/** postcode property */
private String postcode;
/** eMail property */
private String eMail;
/** bankName property */
private String bankName;
/** bankAccount property */
private String bankAccount;
/** shortCode property */
private String shortCode;
private String propertyName;
/*
* Generated Methods
*/
public String getPropertyName() {
return propertyName;
}
public void setPropertyName(String propertyName) {
this.propertyName = propertyName;
}
/**
* Method validate
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
/**
* Returns the phone.
* @return String
*/
public String getPhone() {
return phone;
}
/**
* Set the phone.
* @param phone The phone to set
*/
public void setPhone(String phone) {
this.phone = phone;
}
/**
* Returns the taxID.
* @return String
*/
public String getTaxID() {
return taxID;
}
/**
* Set the taxID.
* @param taxID The taxID to set
*/
public void setTaxID(String taxID) {
this.taxID = taxID;
}
/**
* Returns the linkman.
* @return String
*/
public String getLinkman() {
return linkman;
}
/**
* Set the linkman.
* @param linkman The linkman to set
*/
public void setLinkman(String linkman) {
this.linkman = linkman;
}
/**
* Returns the mobile.
* @return String
*/
public String getMobile() {
return mobile;
}
/**
* Set the mobile.
* @param mobile The mobile to set
*/
public void setMobile(String mobile) {
this.mobile = mobile;
}
/**
* Returns the notes.
* @return String
*/
public String getNotes() {
return notes;
}
/**
* Set the notes.
* @param notes The notes to set
*/
public void setNotes(String notes) {
this.notes = notes;
}
/**
* Returns the supplierName.
* @return String
*/
public String getSupplierName() {
return supplierName;
}
/**
* Set the supplierName.
* @param supplierName The supplierName to set
*/
public void setSupplierName(String supplierName) {
this.supplierName = supplierName;
}
/**
* Returns the address.
* @return String
*/
public String getAddress() {
return address;
}
/**
* Set the address.
* @param address The address to set
*/
public void setAddress(String address) {
this.address = address;
}
/**
* Returns the homepage.
* @return String
*/
public String getHomepage() {
return homepage;
}
/**
* Set the homepage.
* @param homepage The homepage to set
*/
public void setHomepage(String homepage) {
this.homepage = homepage;
}
/**
* Returns the fax.
* @return String
*/
public String getFax() {
return fax;
}
/**
* Set the fax.
* @param fax The fax to set
*/
public void setFax(String fax) {
this.fax = fax;
}
/**
* Returns the supplierID.
* @return String
*/
public String getSupplierID() {
return supplierID;
}
/**
* Set the supplierID.
* @param supplierID The supplierID to set
*/
public void setSupplierID(String supplierID) {
this.supplierID = supplierID;
}
/**
* Returns the postcode.
* @return String
*/
public String getPostcode() {
return postcode;
}
/**
* Set the postcode.
* @param postcode The postcode to set
*/
public void setPostcode(String postcode) {
this.postcode = postcode;
}
/**
* Returns the eMail.
* @return String
*/
public String getEMail() {
return eMail;
}
/**
* Set the eMail.
* @param eMail The eMail to set
*/
public void setEMail(String eMail) {
this.eMail = eMail;
}
/**
* Returns the bankName.
* @return String
*/
public String getBankName() {
return bankName;
}
/**
* Set the bankName.
* @param bankName The bankName to set
*/
public void setBankName(String bankName) {
this.bankName = bankName;
}
/**
* Returns the bankAccount.
* @return String
*/
public String getBankAccount() {
return bankAccount;
}
/**
* Set the bankAccount.
* @param bankAccount The bankAccount to set
*/
public void setBankAccount(String bankAccount) {
this.bankAccount = bankAccount;
}
/**
* Returns the shortCode.
* @return String
*/
public String getShortCode() {
return shortCode;
}
/**
* Set the shortCode.
* @param shortCode The shortCode to set
*/
public void setShortCode(String shortCode) {
this.shortCode = shortCode;
}
}