private TableCellEditor getCustomEditor( int row ) {
FeatureDescriptor fd = getPropertySetModel().getFeatureDescriptor(row);
if (fd instanceof PropertySet)
return null;
Object res = fd.getValue( "custom.cell.editor"); //NOI18N
if( res instanceof TableCellEditor ) {
prepareCustomEditor( res );
return ( TableCellEditor ) res;
}
return null;
}
SheetTable.java 文件源码
java
阅读 35
收藏 0
点赞 0
评论 0
项目:incubator-netbeans
作者:
评论列表
文章目录