}
if (type instanceof Class)
{
if (JavaClassHelper.isImplementsInterface((Class) type, Map.class))
{
return new MapMappedPropertyGetter(getPropertyNameAtomic(), this.getKey());
}
}
if (type instanceof Map) {
return new MapMappedPropertyGetter(getPropertyNameAtomic(), this.getKey());
}
return null;
}