Package com.dooapp.fxform.handler

Examples of com.dooapp.fxform.handler.WrappedTypeHandler


        DEFAULT_MAP.put(new EnumHandler(), new EnumChoiceBoxFactory());
        DEFAULT_MAP.put(new TypeFieldHandler(IntegerProperty.class), new TextFieldFactory());
        DEFAULT_MAP.put(new TypeFieldHandler(LongProperty.class), new TextFieldFactory());
        DEFAULT_MAP.put(new TypeFieldHandler(DoubleProperty.class), new TextFieldFactory());
        DEFAULT_MAP.put(new TypeFieldHandler(ListProperty.class), new TableViewFactory());
        DEFAULT_MAP.put(new WrappedTypeHandler(BigDecimal.class), new TextFieldFactory());
        DEFAULT_MAP.put(new WrappedTypeHandler(Color.class), new ColorPickerFactory());
        DEFAULT_MAP.put(new WrappedTypeHandler(LocalDate.class), new DatePickerFactory());
        DEFAULT_MAP.put(new TypeFieldHandler(ReadOnlyStringProperty.class), new LabelFactory());
        DEFAULT_MAP.put(new TypeFieldHandler(ReadOnlyBooleanProperty.class), new CheckboxFactory());
        DEFAULT_MAP.put(new TypeFieldHandler(ReadOnlyIntegerProperty.class), new LabelFactory());
        DEFAULT_MAP.put(new TypeFieldHandler(ReadOnlyLongProperty.class), new LabelFactory());
        DEFAULT_MAP.put(new TypeFieldHandler(ReadOnlyDoubleProperty.class), new LabelFactory());
View Full Code Here

TOP

Related Classes of com.dooapp.fxform.handler.WrappedTypeHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.