~ubuntu-branches/ubuntu/utopic/eclipse-linuxtools/utopic

« back to all changes in this revision

Viewing changes to valgrind/org.eclipse.linuxtools.valgrind.launch/src/org/eclipse/linuxtools/internal/valgrind/launch/ValgrindOutputDirectoryProvider.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2014-05-12 18:11:40 UTC
  • mfrom: (3.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140512181140-w237r3vsah1tmybz
Tags: 2.2.1-1
* New upstream release.
* Refreshed d/patches.
* Removed eclipse-cdt-valgrind-remote package, all its functionality
  is now provided by eclipse-cdt-profiling-framework-remote.
* Added remove-license-feature.patch.
* Bump Standards-Version to 3.9.5.
* Enable eclipse-changelog package.
* Enable eclipse-rpm-editor package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *
8
8
 * Contributors:
9
9
 *    Elliott Baron <ebaron@redhat.com> - initial API and implementation
10
 
 *******************************************************************************/ 
 
10
 *******************************************************************************/
11
11
package org.eclipse.linuxtools.internal.valgrind.launch;
12
12
 
13
 
import java.io.IOException;
14
 
 
15
13
import org.eclipse.core.runtime.IPath;
16
14
import org.eclipse.linuxtools.valgrind.launch.IValgrindOutputDirectoryProvider;
17
15
 
21
19
        public ValgrindOutputDirectoryProvider() {
22
20
                outputPath = ValgrindLaunchPlugin.getDefault().getStateLocation();
23
21
        }
24
 
        
 
22
 
25
23
        /* (non-Javadoc)
26
24
         * @see org.eclipse.linuxtools.valgrind.launch.IValgrindOutputDirectoryProvider#getOutputPath()
27
25
         */
28
 
        public IPath getOutputPath() throws IOException {               
 
26
        @Override
 
27
        public IPath getOutputPath() {
29
28
                return outputPath;
30
29
        }
31
30