01: /*
02: * $Id: BorderComponent1.java 3557 2006-01-01 07:34:05Z jonathanlocke $
03: * $Revision: 459882 $ $Date: 2006-01-01 08:34:05 +0100 (So, 01 Jan 2006) $
04: *
05: * ========================================================================
06: * Licensed under the Apache License, Version 2.0 (the "License"); you may
07: * not use this file except in compliance with the License. You may obtain
08: * a copy of the 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.border;
19:
20: /**
21: * Test the component: PageView
22: *
23: * @author Juergen Donnerstag
24: */
25: public class MyApplicationBorder extends Border {
26: private static final long serialVersionUID = 1L;
27:
28: /**
29: * @param id
30: */
31: public MyApplicationBorder(final String id) {
32: super (id);
33:
34: Border border = new BoxBorder("boxBorder");
35: add(border);
36: }
37: }
|