Java tutorial
/* * Copyright 2007 Xebia and the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package fr.xebia.demo.wicket.blog.view; import java.io.Serializable; import org.apache.commons.lang.builder.ToStringBuilder; import org.apache.wicket.model.IModel; public class MenuItem implements Serializable { private static final long serialVersionUID = 1L; private final Class<? extends BasePage> pageClass; private final IModel labelModel; public MenuItem(Class<? extends BasePage> pageClass, IModel labelModel) { super(); this.pageClass = pageClass; this.labelModel = labelModel; } public Class<? extends BasePage> getPageClass() { return pageClass; } public IModel getLabelModel() { return labelModel; } @Override public String toString() { ToStringBuilder builder = new ToStringBuilder(this); builder.append("pageClass", getPageClass()).append("label", getLabelModel().getObject()); return super.toString(); } }