47484950515253
/** The select button. */ private final Button arrow; public <E extends Enum> Select(Class<E> type) { this(new SelectableModel(type)); }
56575859606162
* <p> * Create select form. * </p> */ public Select(M... model) { this(new SelectableModel(model)); }