Package com.dooapp.fxform.handler

Examples of com.dooapp.fxform.handler.ElementHandler


        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 ElementHandler() {
            @Override
            public boolean handle(Element element) {
                return BigDecimal.class.isAssignableFrom(element.getWrappedType());
            }
        }, new TextFieldFactory());
View Full Code Here


        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() {
            @Override
            public boolean handle(Element element) {
                return BigDecimal.class.isAssignableFrom(element.getWrappedType());
            }
        }, new TextFieldFactory());
View Full Code Here

TOP

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

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.