KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tapestry > junit > mock > app > RegisterConfirm


1 // Copyright 2004, 2005 The Apache Software Foundation
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14

15 package org.apache.tapestry.junit.mock.app;
16
17 import java.util.ResourceBundle JavaDoc;
18
19 import org.apache.tapestry.html.BasePage;
20
21 /**
22  * Part of Mock application, displays the data input on the Register page.
23  *
24  * @author Howard Lewis Ship
25  * @since 2.3
26  */

27
28 public abstract class RegisterConfirm extends BasePage
29 {
30     private ResourceBundle JavaDoc _ageRangeStrings;
31
32     private User _user;
33
34     public void detach()
35     {
36         _user = null;
37
38         super.detach();
39     }
40
41     public User getUser()
42     {
43         return _user;
44     }
45
46     public void setUser(User user)
47     {
48         _user = user;
49     }
50
51     public String JavaDoc getFormattedAge()
52     {
53         if (_ageRangeStrings == null)
54             _ageRangeStrings = ResourceBundle.getBundle(
55                     "org.apache.tapestry.junit.mock.app.AgeRangeStrings",
56                     getLocale());
57
58         String JavaDoc key = _user.getAgeRange();
59
60         return _ageRangeStrings.getString(key);
61     }
62 }
Popular Tags