Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: df3baf02d5ffd6c5e41e821984086e5e4ac4bf8d (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
package org.eclipse.cdt.launch.internal.ui;

import org.eclipse.swt.graphics.Image;

/*
 * (c) Copyright QN Software Systems Ltd. 2002.
 * All Rights Reserved.
 */
public class LaunchImages {
	public static String IMG_VIEW_ARGUMENTS_TAB = "";
	public static String IMG_VIEW_ENVIRONMENT_TAB = "";
	public static String IMG_VIEW_MAIN_TAB = "";
	public static String IMG_VIEW_DEBUGGER_TAB = "";

	/**
	 * Method get.
	 * @param string
	 * @return Image
	 */
	public static Image get(String string) {
		return null;
	}

}

Back to the top