add( option, entityOptions );
}
public void addPropertyOption(Class<?> entityType, String propertyName, Option<?> option) {
PropertyKey key = new PropertyKey( entityType, propertyName );
OptionsContainer propertyOptions = optionsPerProperty.get( key );
if ( propertyOptions == null ) {
propertyOptions = getAndCacheAnnotationBasedPropertyOptions( key );
}