package listfolder class ListFolderRow( label : String, file : File ) : FileTableRow( label, file, 0 ) { constructor( file : File ) : this( null, file ) override meth value( column : int ) : String = if (column == 1) { file.length().toHumanBytes() } else if (column == 2 ) { file.lastModified().toHumanDateOrTime() } else { label ?: file.name } override meth iconName( column : int ) = if (column == 0) iconName else null }