This is a {@link UniqueOption} that can be used for testing. @author Davide D'Alto <davide@hibernate.org>
93949596979899100
super( context ); } @Override public SamplePropertyContext embed(Object object) { addPropertyOption( new EmbedExampleOption(), object ); return this; }
33343536373839
static class EmbedExampleOptionConverter implements AnnotationConverter<EmbedExample> { @Override public OptionValuePair<?> convert(EmbedExample annotation) { return OptionValuePair.getInstance( new EmbedExampleOption(), annotation.value() ); }