That is we *must* resolve the following:
Required adaptions:
Recommendated adaptions:
Here is an implementation example (for something that can adapt to ImageDescriptor and FeatureSource):
public <T> boolean canResolve( Class<T> adaptee ) { return adaptee != null && (adaptee.isAssignableFrom(ImageDescriptor.class) || adaptee.isAssignableFrom(FeatureSource.class) || super.canResolve(adaptee)); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|