Example usage for org.apache.wicket.markup.html.form FormComponentPanel subclass-usage

List of usage examples for org.apache.wicket.markup.html.form FormComponentPanel subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.form FormComponentPanel subclass-usage.

Usage

From source file abid.password.wicket.fields.CaesarCipherPasswordField.java

public class CaesarCipherPasswordField extends FormComponentPanel<String> {

    private static final long serialVersionUID = 1L;

    private final FormComponent<String> passwordField;
    private final DropDownChoice<TimeParameter> timeChoice;

From source file abid.password.wicket.fields.ExtendedPasswordField.java

public class ExtendedPasswordField extends FormComponentPanel<String> {

    private static final long serialVersionUID = 1L;

    private final FormComponent<String> passwordField;
    private final DropDownChoice<TimeParameter> timeChoice;

From source file abid.password.wicket.fields.ExtendedTimeLockPasswordField.java

public class ExtendedTimeLockPasswordField extends FormComponentPanel<String> {

    private static final long serialVersionUID = 1L;

    private final FormComponent<String> passwordField;
    private final FormComponent<TimeParameter> extendedParameter;

From source file abid.password.wicket.fields.PasswordTypeField.java

public class PasswordTypeField extends FormComponentPanel<String> {

    private static final long serialVersionUID = 1L;
    private FormComponent<String> selectedForm;

    public PasswordTypeField(String id, IModel<String> model, IModel<PasswordType> selectedChoiceModel) {

From source file abid.password.wicket.fields.SimplePasswordField.java

public class SimplePasswordField extends FormComponentPanel<String> {

    private static final long serialVersionUID = 1L;

    private final FormComponent<String> passwordField;

From source file abid.password.wicket.fields.TimeLockPasswordField.java

public class TimeLockPasswordField extends FormComponentPanel<String> {

    private static final long serialVersionUID = 1L;

    private final FormComponent<String> passwordField;
    private final FormComponent<TimeParameter> timeChoice;

From source file com.googlecode.wicket.jquery.ui.form.slider.AbstractSlider.java

/**
 * Base class for implementing jQuery slider(s)
 *
 * @author Sebastien Briquet - sebfz1
 *
 * @param <T> the model object type

From source file com.googlecode.wicket.jquery.ui.kendo.datetime.DateTimePicker.java

/**
 * Provides a datetime-picker based on a {@link DatePicker} and a {@link TimePicker}
 *
 * @author Sebastien Briquet - sebfz1
 */
public class DateTimePicker extends FormComponentPanel<Date> implements ITextFormatProvider {

From source file com.googlecode.wicket.jquery.ui.plugins.datepicker.RangeDatePickerTextField.java

/**
 * Provides a {@link FormComponentPanel} based on a {@link TextField} and a {@link RangeDatePicker}
 *
 * @author Sebastien Briquet - sebfz1
 *
 */

From source file com.googlecode.wicket.jquery.ui.plugins.wysiwyg.WysiwygEditor.java

/**
 * Provides an implementation of bootstrap-wysiwyg<br/>
 * {@link WysiwygEditor} should be contained in a {@link Form} in order to work properly
 *
 * @author sebfz1
 * @author solomax