DBA Data[Home] [Help]

TYPE BODY: APPS.AMS_CPAGE_ADDRESS_T

Source


1 type body ams_cpage_address_t  as
2 
3   MEMBER FUNCTION  getAddress1   return Varchar2 is
4   begin
5     return address1;
6   end getAddress1;
7 
8   MEMBER FUNCTION  getAddress2   return Varchar2 is
9   begin
10     return address2;
11   end getAddress2;
12 
13   MEMBER FUNCTION  getAddress3   return Varchar2 is
14   begin
15     return address3;
16   end getAddress3;
17 
18   MEMBER FUNCTION  getAddress4   return Varchar2 is
19   begin
20     return address4;
21   end getAddress4;
22 
23   MEMBER FUNCTION  getCity   return Varchar2 is
24   begin
25     return city;
26   end getCity;
27 
28   MEMBER FUNCTION  getCounty   return Varchar2 is
29   begin
30     return county;
31   end getCounty;
32 
33   MEMBER FUNCTION  getPostalCode   return Varchar2 is
34   begin
35     return postal_code;
36   end getPostalCode;
37 
38   MEMBER FUNCTION  getState   return Varchar2 is
39   begin
40     return state;
41   end getState;
42 
43   MEMBER FUNCTION  getProvince   return Varchar2 is
44   begin
45     return province;
46   end getProvince;
47 
48   MEMBER FUNCTION  getCountry   return Varchar2 is
49   begin
50     return country;
51   end getCountry;
52 
53   MEMBER FUNCTION  getPopulated   return Varchar2 is
54   begin
55     return populated;
56   end getPopulated;
57 
58   MEMBER PROCEDURE setAddress1(p_address1 in Varchar2) is
59   begin
60     address1 := p_address1;
61   end setAddress1;
62 
63   MEMBER PROCEDURE setAddress2(p_address2 in Varchar2) is
64   begin
65     address2 := p_address2;
66   end setAddress2;
67 
68   MEMBER PROCEDURE setAddress3(p_address3 in Varchar2) is
69   begin
70     address3 := p_address3;
71   end setAddress3;
72 
73   MEMBER PROCEDURE setAddress4(p_address4 in Varchar2) is
74   begin
75     address4 := p_address4;
76   end setAddress4;
77 
78   MEMBER PROCEDURE setCity(p_city in Varchar2) is
79   begin
80     city := p_city;
81   end setCity;
82 
83   MEMBER PROCEDURE setCounty(p_county in Varchar2) is
84   begin
85     county := p_county;
86   end setCounty;
87 
88   MEMBER PROCEDURE setPostalCode(p_postalCode in Varchar2) is
89   begin
90     postal_code := p_postalCode;
91   end setPostalCode;
92 
93   MEMBER PROCEDURE setState(p_state in Varchar2) is
94   begin
95     state := p_state;
96   end setState;
97 
98   MEMBER PROCEDURE setProvince(p_province in Varchar2) is
99   begin
100     province := p_province;
101   end setProvince;
102 
103   MEMBER PROCEDURE setCountry(p_country in Varchar2) is
104   begin
105     country := p_country;
106   end setCountry;
107 
108  MEMBER PROCEDURE setPopulated(p_populated in Varchar2) is
109   begin
110      populated := p_populated;
111   end setPopulated;
112 
113 end;