org.uqbar.wicket.xtend.XChoiceRenderer Maven / Gradle / Ivy
package org.uqbar.wicket.xtend;
import org.apache.wicket.markup.html.form.ChoiceRenderer;
import org.eclipse.xtext.xbase.lib.Functions.Function1;
@SuppressWarnings("all")
public class XChoiceRenderer extends ChoiceRenderer {
private Function1 function;
public XChoiceRenderer(final Function1 aFunction) {
this.function = aFunction;
}
public Object getDisplayValue(final M object) {
return this.function.apply(object);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy