File tree 2 files changed +0
-24
lines changed
spring-expression/src/main/java/org/springframework/expression
2 files changed +0
-24
lines changed Original file line number Diff line number Diff line change 45
45
*/
46
46
public interface IndexAccessor extends TargetedAccessor {
47
47
48
- /**
49
- * Get the set of classes for which this index accessor should be called.
50
- * <p>Returning {@code null} or an empty array indicates this is a generic
51
- * index accessor that can be called in an attempt to access an index on any
52
- * type.
53
- * @return an array of classes that this index accessor is suitable for
54
- * (or {@code null} or an empty array if a generic index accessor)
55
- */
56
- @ Override
57
- @ Nullable
58
- Class <?>[] getSpecificTargetClasses ();
59
-
60
48
/**
61
49
* Determine if this index accessor is able to read a specified index on a
62
50
* specified target object.
Original file line number Diff line number Diff line change 43
43
*/
44
44
public interface PropertyAccessor extends TargetedAccessor {
45
45
46
- /**
47
- * Get the set of classes for which this property accessor should be called.
48
- * <p>Returning {@code null} or an empty array indicates this is a generic
49
- * property accessor that can be called in an attempt to access a property on
50
- * any type.
51
- * @return an array of classes that this property accessor is suitable for
52
- * (or {@code null} if a generic property accessor)
53
- */
54
- @ Override
55
- @ Nullable
56
- Class <?>[] getSpecificTargetClasses ();
57
-
58
46
/**
59
47
* Called to determine if this property accessor is able to read a specified
60
48
* property on a specified target object.
You can’t perform that action at this time.
0 commit comments