Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 563bda9de92135623f7661c155f48203dc6ae29b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*******************************************************************************
 * Copyright (c) 2012, 2015 Mentor Graphics Corporation 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:
 * Anna Dushistova (Mentor Graphics) - initial API and implementation
 * Anna Dushistova (Mentor Graphics) - moved to org.eclipse.cdt.launch.remote.tabs
 * Anna Dushistova (MontaVista)      - adapted from TEDSFDebuggerTab
 *******************************************************************************/

package org.eclipse.tcf.te.tcf.launch.cdt.tabs;

import org.eclipse.cdt.dsf.gdb.service.SessionType;

public class TEAttachDebuggerTab extends TEAbstractDebuggerTab {

	public TEAttachDebuggerTab() {
		super(SessionType.REMOTE, true);
	}

	@Override
	public String getId() {
		return "org.eclipse.tcf.te.remotecdt.attach.debuggerTab"; //$NON-NLS-1$
	}

}

Back to the top