~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to profiling/org.eclipse.linuxtools.profiling.launch/src/org/eclipse/linuxtools/profiling/launch/IRemoteProxyManager.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2012-06-29 12:07:30 UTC
  • Revision ID: package-import@ubuntu.com-20120629120730-bfri1xys1i71dpn6
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*******************************************************************************
 
2
 * Copyright (c) 2011 Red Hat Inc..
 
3
 * All rights reserved. This program and the accompanying materials
 
4
 * are made available under the terms of the Eclipse Public License v1.0
 
5
 * which accompanies this distribution, and is available at
 
6
 * http://www.eclipse.org/legal/epl-v10.html
 
7
 *
 
8
 * Contributors:
 
9
 *     Red Hat Incorporated - initial API and implementation
 
10
 *******************************************************************************/
 
11
package org.eclipse.linuxtools.profiling.launch;
 
12
 
 
13
import java.net.URI;
 
14
 
 
15
import org.eclipse.core.resources.IProject;
 
16
import org.eclipse.core.runtime.CoreException;
 
17
 
 
18
public interface IRemoteProxyManager {
 
19
        String EXTENSION_POINT_ID = "RemoteProxyManager"; //$NON-NLS-1$
 
20
        String MANAGER_NAME = "manager"; //$NON-NLS-1$
 
21
        String SCHEME_ID = "scheme"; //$NON-NLS-1$ 
 
22
        public IRemoteFileProxy getFileProxy(IProject project) throws CoreException;
 
23
        public IRemoteFileProxy getFileProxy(URI uri) throws CoreException;
 
24
        public IRemoteCommandLauncher getLauncher(IProject project) throws CoreException;
 
25
        public IRemoteCommandLauncher getLauncher(URI uri) throws CoreException;
 
26
        public String getOS(IProject project) throws CoreException;
 
27
        public String getOS(URI uri) throws CoreException;
 
28
}