01: /*
02: * Copyright 2005 Paul Hinds
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package org.tp23.antinstaller.page;
17:
18: /**
19: *
20: * <p>Represents a license page witha resouce that contains the text of the licenses </p>
21: * <p> </p>
22: * <p>Copyright: Copyright (c) 2004</p>
23: * <p>Company: tp23</p>
24: * @author Paul Hinds
25: * @version $Id: LicensePage.java,v 1.1.1.1 2005/10/18 18:21:04 teknopaul Exp $
26: */
27: public class LicensePage extends Page {
28:
29: private String resource;
30: private String usePaging;
31:
32: public LicensePage() {
33: }
34:
35: public String getResource() {
36: return resource;
37: }
38:
39: public void setResource(String resource) {
40: this .resource = resource;
41: }
42:
43: public String getUsePaging() {
44: return usePaging;
45: }
46:
47: public void setUsePaging(String usePaging) {
48: this.usePaging = usePaging;
49: }
50: }
|