There is a limit to the number of locations the history can contain, defined by {@link #HISTORY_CAPACITY}.
64656667686970
*/ private ClonedFileTableTab(FileTableTab tab, FolderPanel folderPanel) { this.location = tab.getLocation(); this.locked = tab.isLocked(); this.title = tab.getTitle(); locationHistory = new LocalLocationHistory(folderPanel); }
63646566676869
* @param location - the location that would be presented in the tab */ private DefaultFileTableTab(FileURL location, FolderPanel folderPanel) { this.location = location; this.locked = false; locationHistory = new LocalLocationHistory(folderPanel); }