01: /*
02: * $Id: SimplePage_10.java 3749 2006-01-14 00:54:30Z ivaynberg $
03: * $Revision: 460256 $ $Date: 2006-01-14 01:54:30 +0100 (Sa, 14 Jan 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.markup.html.basic;
19:
20: import wicket.markup.html.WebPage;
21:
22: /**
23: * Mock page for testing.
24: *
25: * @author Chris Turner
26: */
27: public class SimplePage_11 extends WebPage {
28: private static final long serialVersionUID = 1L;
29:
30: /**
31: * Construct.
32: */
33: public SimplePage_11() {
34: add(new Label("panel", "panel"));
35: add(new Label("border", "border"));
36: add(new Label("body", "body"));
37: add(new Label("child", "child"));
38: add(new Label("extend", "extend"));
39: add(new Label("message", "message"));
40: add(new Label("component", "component"));
41: add(new Label("id", "id"));
42: add(new Label("head", "head"));
43: add(new Label("fragment", "fragment"));
44: }
45: }
|