01: /*
02: * $Id: Page1.java 460265 2006-04-16 13:36:52Z jdonnerstag $ $Revision: 460265 $ $Date:
03: * 2006-02-08 20:59:27 +0100 (Mi, 08 Feb 2006) $
04: *
05: * ==================================================================== Licensed
06: * under the Apache License, Version 2.0 (the "License"); you may not use this
07: * file except in compliance with the License. You may obtain a copy of the
08: * License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing, software
13: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15: * License for the specific language governing permissions and limitations under
16: * the License.
17: */
18: package wicket.examples.frames;
19:
20: import wicket.markup.html.WebPage;
21:
22: /**
23: * Test page for the right frame.
24: *
25: * @author Eelco Hillenius
26: */
27: public class Page1 extends WebPage {
28: /**
29: * Constructor
30: */
31: public Page1() {
32: }
33: }
|