public void rename(Text newTitle) // ------------- // ------------- { // --------- if (newTitle != null && !newTitle.isEmpty()) { title.set(newTitle); Folder parent = superItem.val(); if (parent != null) { parent.sort(); } } // --------- }