01: /*
02: * $Id: BorderTestHierarchyPage_4.java 459702 2006-03-08 21:32:22Z jdonnerstag $ $Revision: 459702 $ $Date: 2006-03-08 22:32:22 +0100 (Wed, 08 Mar 2006) $
03: *
04: * ==================================================================== Licensed
05: * under the Apache License, Version 2.0 (the "License"); you may not use this
06: * file except in compliance with the License. You may obtain a copy of the
07: * License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14: * License for the specific language governing permissions and limitations under
15: * the License.
16: */
17: package wicket.markup.html.border;
18:
19: import wicket.markup.html.WebPage;
20: import wicket.markup.html.basic.Label;
21:
22: /**
23: * Mock page for testing.
24: *
25: * @author Joseph Toth
26: */
27: public class BorderTestHierarchyPage_4 extends WebPage {
28: private static final long serialVersionUID = 1L;
29:
30: /**
31: * Construct.
32: *
33: *
34: */
35: public BorderTestHierarchyPage_4() {
36: add(new BorderComponent1("border1"));
37: add(new Label("label1"));
38: }
39: }
|