KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > dotmarketing > cms > inquiry > struts > InquiryFormExt


1 package com.dotmarketing.cms.inquiry.struts;
2
3 public class InquiryFormExt extends InquiryForm {
4
5     private String JavaDoc[] organizationType;
6     private String JavaDoc totalText;
7     private String JavaDoc recurTotalText;
8     private String JavaDoc delivery;
9     private String JavaDoc enterpriseSupport;
10     private String JavaDoc hoursSupport;
11     
12     public String JavaDoc[] getOrganizationType() {
13         return organizationType;
14     }
15
16     public void setOrganizationType(String JavaDoc[] organizationType) {
17         this.organizationType = organizationType;
18     }
19
20     public String JavaDoc getDelivery() {
21         return delivery;
22     }
23
24     public void setDelivery(String JavaDoc delivery) {
25         this.delivery = delivery;
26     }
27
28     public String JavaDoc getEnterpriseSupport() {
29         return enterpriseSupport;
30     }
31
32     public void setEnterpriseSupport(String JavaDoc enterpriseSupport) {
33         this.enterpriseSupport = enterpriseSupport;
34     }
35
36     public String JavaDoc getHoursSupport() {
37         return hoursSupport;
38     }
39
40     public void setHoursSupport(String JavaDoc hoursSupport) {
41         this.hoursSupport = hoursSupport;
42     }
43
44     public String JavaDoc getRecurTotalText() {
45         return recurTotalText;
46     }
47
48     public void setRecurTotalText(String JavaDoc recurTotalText) {
49         this.recurTotalText = recurTotalText;
50     }
51
52     public String JavaDoc getTotalText() {
53         return totalText;
54     }
55
56     public void setTotalText(String JavaDoc totalText) {
57         this.totalText = totalText;
58     }
59 }
60
Popular Tags