Package org.eclipse.ecf.internal.filetransfer.ui.hyperlink

Source Code of org.eclipse.ecf.internal.filetransfer.ui.hyperlink.SCPHyperlink

/****************************************************************************
* Copyright (c) 2004 Composent, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*    Composent, Inc. - initial API and implementation
*****************************************************************************/

package org.eclipse.ecf.internal.filetransfer.ui.hyperlink;

import java.net.URI;
import org.eclipse.ecf.internal.filetransfer.ui.GetFileHandler;
import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.hyperlink.IHyperlink;
import org.eclipse.swt.widgets.Shell;

/**
*
*/
public class SCPHyperlink implements IHyperlink {

  Shell shell;
  IRegion region;
  URI uri;

  public SCPHyperlink(Shell shell, IRegion region, URI uri) {
    this.shell = shell;
    this.region = region;
    this.uri = uri;
  }

  /* (non-Javadoc)
   * @see org.eclipse.ecf.ui.hyperlink.AbstractURLHyperlink#open()
   */
  public void open() {
    GetFileHandler getFileHandler = new GetFileHandler();
    getFileHandler.openStartFileDownloadDialog(shell, uri.toString());
  }

  /* (non-Javadoc)
   * @see org.eclipse.jface.text.hyperlink.IHyperlink#getHyperlinkRegion()
   */
  public IRegion getHyperlinkRegion() {
    return region;
  }

  /* (non-Javadoc)
   * @see org.eclipse.jface.text.hyperlink.IHyperlink#getHyperlinkText()
   */
  public String getHyperlinkText() {
    return uri.toString();
  }

  /* (non-Javadoc)
   * @see org.eclipse.jface.text.hyperlink.IHyperlink#getTypeLabel()
   */
  public String getTypeLabel() {
    return null;
  }
}
TOP

Related Classes of org.eclipse.ecf.internal.filetransfer.ui.hyperlink.SCPHyperlink

TOP
Copyright © 2018 www.massapi.com. 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.