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

« back to all changes in this revision

Viewing changes to systemtap/org.eclipse.linuxtools.callgraph.launch/src/org/eclipse/linuxtools/internal/callgraph/launch/SystemTapLCTG.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-13 21:43:22 UTC
  • mfrom: (1.2.1) (2.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130513214322-6frgd9du1n0w2uo7
Tags: 1.2.1-1
* Team upload.
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
import java.util.Arrays;
15
15
 
16
16
import org.eclipse.debug.ui.AbstractLaunchConfigurationTab;
17
 
import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
18
17
import org.eclipse.debug.ui.ILaunchConfigurationDialog;
 
18
import org.eclipse.linuxtools.profiling.launch.ProfileLaunchConfigurationTabGroup;
19
19
 
20
20
/**
21
21
 * Stripped down version of the Profiling LaunchConfigurationTabGroup
22
22
 * 
23
23
 *
24
24
 */
25
 
public abstract class SystemTapLCTG extends AbstractLaunchConfigurationTabGroup {
 
25
public abstract class SystemTapLCTG extends ProfileLaunchConfigurationTabGroup {
26
26
 
 
27
        @Override
27
28
        public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
28
29
                ArrayList<AbstractLaunchConfigurationTab> tabs = new ArrayList<AbstractLaunchConfigurationTab>();
29
30
                
33
34
                setTabs(tabs.toArray(new AbstractLaunchConfigurationTab[tabs.size()]));
34
35
        }
35
36
        
 
37
        @Override
36
38
        public abstract AbstractLaunchConfigurationTab[] getProfileTabs();
37
39
}
 
 
b'\\ No newline at end of file'