summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/actions/YoctoConsole.java
blob: 4b25d94bb8ed1280d17101aeeb0352644c67bb5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*******************************************************************************
 * Copyright (c) 2010 Intel Corporation.
 * 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:
 * Intel - initial API and implementation
 *******************************************************************************/
package org.yocto.sdk.ide.actions;

import org.eclipse.cdt.internal.autotools.ui.Console;
import org.yocto.sdk.ide.YoctoSDKMessages;

@SuppressWarnings("restriction")
public class YoctoConsole extends Console {
	private static final String CONTEXT_MENU_ID = "YoctoConsole"; 
	private static final String CONSOLE_NAME = YoctoSDKMessages.getString("Console.SDK.Name");
	
	public YoctoConsole() {
		super(CONSOLE_NAME, CONTEXT_MENU_ID);
	}
}