Package com.dooapp.fxform.view.factory.impl

Examples of com.dooapp.fxform.view.factory.impl.CheckboxFactory


    private final Map<ElementHandler, Callback<Void, FXFormNode>> USER_MAP = new HashMap();

    public DefaultFactoryProvider() {
        // register default delegates
        DEFAULT_MAP.put(new TypeFieldHandler(StringProperty.class), new TextFieldFactory());
        DEFAULT_MAP.put(new TypeFieldHandler(BooleanProperty.class), new CheckboxFactory());
        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 ElementHandler() {
View Full Code Here

TOP

Related Classes of com.dooapp.fxform.view.factory.impl.CheckboxFactory

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.