All pastes #317148 Raw Copy code Copy link Edit

Unnamed

public unlisted java v1 · immutable
#317148 ·published 2007-01-15 09:45 UTC
rendered paste body
package wicketDemo;import wicket.markup.html.WebPage;import wicket.markup.html.basic.Label;import wicket.markup.html.basic.MultiLineLabel;import wicket.model.CompoundPropertyModel;public class ThankYouPage extends WebPage {	public ThankYouPage(FormModel filledForm) {		CompoundPropertyModel model = new CompoundPropertyModel(filledForm);				add(new Label("carModel", model));		add(new Label("carYear", model));		add(new Label("carMillage", model));		add(new MultiLineLabel("carFailureText", model));	}}