Package com.antimatterstudios.esftp

Examples of com.antimatterstudios.esftp.TransferDetails


  public SiteBrowser(Composite parent, int style, UserInterface ui)
  {
    super(parent,style);
   
    m_userInterface = ui;
    m_details = new TransferDetails(m_userInterface.getPreferences());
    m_transfer = null;
   
    GridLayout layout = new GridLayout();
    layout.numColumns = 5;
   
View Full Code Here


  public void test(){
    m_output.setText("<Testing SFTP Site>\nPlease Wait....\n");
    m_output.update();
   
    m_userInterface.updateStore();
    TransferDetails details = new TransferDetails(m_userInterface.getPreferences());
    Transfer transfer = Activator.getDefault().getTransfer(details.getProtocol());
    if(transfer != null){
      System.out.println("TI::test(), Transfer class = "+transfer.getClass().getName());
      transfer.init(details);
     
      try{
View Full Code Here

  public SiteBrowser(Composite parent, int style, UserInterface ui)
  {
    super(parent,style);
   
    m_userInterface = ui;
    m_details = new TransferDetails(m_userInterface.getPreferences());
    m_transfer = null;
   
    GridLayout layout = new GridLayout();
    layout.numColumns = 5;
   
View Full Code Here

   *
   * This is to acquire the information needed to transfer the files either to
   * or from the system
   */
  public void init(int transferType) {
    m_details = new TransferDetails(m_project);

    m_files = new Vector();
    m_folders = new Vector();
    m_mode = transferType;
  }
View Full Code Here

TOP

Related Classes of com.antimatterstudios.esftp.TransferDetails

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.