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