Package org.mapfish.print.wrapper.yaml

Examples of org.mapfish.print.wrapper.yaml.PYamlObject


    @VisibleForTesting
    @PostConstruct
    final void init() {
        if (this.defaults == null) {
            this.defaults = new PYamlObject(Collections.<String, Object>emptyMap(), getAttributeName());
        }
        validateParamObject(getValueType(), Sets.<Class>newHashSet());
    }
View Full Code Here


    public final PObject getDefaultValue() {
        return this.defaults;
    }

    public final void setDefault(final Map<String, Object> defaultValue) {
        this.defaults = new PYamlObject(defaultValue, getAttributeName());
    }
View Full Code Here

TOP

Related Classes of org.mapfish.print.wrapper.yaml.PYamlObject

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.