/**
* Correct case of names with respect to all the views we know about.
*
* @return equivalent collection with names case-corrected where possible.
*/
private Collection<String> correctCase(Collection<String> names) {
return newHashSet(Collections2.transform(names, new Function<String, String>() {
@Override public String apply(String name) {
for (View view: allViews) {
if (view.getName().equalsIgnoreCase(name)) {
return view.getName();
}
}
return name;
}
}));
}
ViewChanges.java 文件源码
java
阅读 28
收藏 0
点赞 0
评论 0
项目:morf
作者:
评论列表
文章目录