01: /*
02: * $Id: HelloWorld.java 460265 2006-04-16 13:36:52Z jdonnerstag $ $Revision: 460265 $
03: * $Date: 2006-04-16 15:36:52 +0200 (Sun, 16 Apr 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.helloworld;
19:
20: import wicket.examples.WicketExamplePage;
21: import wicket.markup.html.basic.Label;
22:
23: /**
24: * Everybody's favorite example!
25: *
26: * @author Jonathan Locke
27: */
28: public class HelloWorld extends WicketExamplePage {
29: /**
30: * Constructor
31: */
32: public HelloWorld() {
33: add(new Label("message", "Hello World!"));
34: }
35: }
|