Package org.pentaho.mantle.client.solutionbrowser.filepicklist

Examples of org.pentaho.mantle.client.solutionbrowser.filepicklist.RecentPickItem


      contentTabPanel.getCurrentFrame().setFileInfo( fileInfo );
    }
  }

  public void addRecent( String fileNameWithPath, String title ) {
    RecentPickItem recentPickItem = new RecentPickItem( fileNameWithPath );
    recentPickItem.setTitle( title );
    recentPickItem.setLastUse( System.currentTimeMillis() );
    RecentPickList.getInstance().add( recentPickItem );
  }
View Full Code Here


    recentPickItem.setLastUse( System.currentTimeMillis() );
    RecentPickList.getInstance().add( recentPickItem );
  }

  public void removeRecent( String fileNameWithPath ) {
    RecentPickItem recentItem = new RecentPickItem( fileNameWithPath );
    RecentPickList.getInstance().remove( recentItem );
  }
View Full Code Here

TOP

Related Classes of org.pentaho.mantle.client.solutionbrowser.filepicklist.RecentPickItem

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.