/** Overridden to cast value to FeatureDescriptor and return true if the
* text matches its display name. The popup search field uses this method
* to check matches. */
@Override
protected boolean matchText(Object value, String text) {
if (value instanceof FeatureDescriptor) {
return ((FeatureDescriptor) value).getDisplayName().toUpperCase().startsWith(text.toUpperCase());
} else {
return false;
}
}
SheetTable.java 文件源码
java
阅读 25
收藏 0
点赞 0
评论 0
项目:incubator-netbeans
作者:
评论列表
文章目录