protected void generateCommonPropertyParameters( SourceWriter source, PropertyInfo property,
JMapperType mapperType ) throws UnableToCompleteException {
if ( property.getFormat().isPresent() ) {
JsonFormat format = property.getFormat().get();
if ( !Strings.isNullOrEmpty( format.pattern() ) ) {
source.println();
source.print( ".setPattern(\"%s\")", format.pattern() );
}
source.println();
source.print( ".setShape(%s.%s)", Shape.class.getCanonicalName(), format.shape().name() );