All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.devocative.wickomp.form.range.WTextRangeInput Maven / Gradle / Ivy

package org.devocative.wickomp.form.range;

import org.apache.wicket.markup.html.form.FormComponent;
import org.apache.wicket.model.IModel;
import org.devocative.adroit.vo.IRange;
import org.devocative.wickomp.form.WTextInput;

public class WTextRangeInput extends WBaseRangeInput {
	private static final long serialVersionUID = 6127097391007670937L;

	// ------------------------------

	public WTextRangeInput(String id) {
		this(id, null);
	}

	public WTextRangeInput(String id, IModel> model) {
		super(id, model);
	}

	// ------------------------------

	@Override
	protected FormComponent createFormComponent(String id, IModel model) {
		return new WTextInput(id, model);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy