| | |
| | | * {@link UnknownPropertyDefinitionException}. Sub-classes can |
| | | * override this method with their own default behavior. |
| | | * |
| | | * @param <T> |
| | | * The type of the underlying property. |
| | | * @param d |
| | | * The property definition to visit. |
| | | * @param p |
| | |
| | | * Visitor implementations may optionally throw this |
| | | * exception. |
| | | */ |
| | | public R visitUnknown(PropertyDefinition<?> d, P p) |
| | | public <T> R visitUnknown(PropertyDefinition<T> d, P p) |
| | | throws UnknownPropertyDefinitionException { |
| | | throw new UnknownPropertyDefinitionException(d, p); |
| | | } |