Package com.mucommander.core

Examples of com.mucommander.core.LocalLocationHistory


     */
    private ClonedFileTableTab(FileTableTab tab, FolderPanel folderPanel) {
      this.location = tab.getLocation();
      this.locked = tab.isLocked();
      this.title = tab.getTitle();
      locationHistory = new LocalLocationHistory(folderPanel);
    }
View Full Code Here


     * @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);
    }
View Full Code Here

TOP

Related Classes of com.mucommander.core.LocalLocationHistory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.