org.mapfish.print.parser.HasDefaultValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of print-lib Show documentation
Show all versions of print-lib Show documentation
Library for generating PDFs and images from online webmapping services
package org.mapfish.print.parser;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
/**
* Marks a Processor input parameter object setter method as being optional. If there is no value for the
* property then no error will be thrown when populating the method in {@link
* org.mapfish.print.processor.ProcessorUtils#populateInputParameter(org.mapfish.print.processor.Processor,
* org.mapfish.print.output.Values)}
*/
@Target(value = ElementType.FIELD)
@java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
public @interface HasDefaultValue {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy