Skip to main content
summaryrefslogtreecommitdiffstats
blob: d4716fa3f1c796d67c5fbd875d7f9449ac005e2a (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
30
31
32
33
34
35
36
37
38
/*******************************************************************************
 * Copyright (c) 2014 TwelveTone LLC 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:
 *     Steven Spungin <steven@spungin.tv> - initial API and implementation, Bug 424730
 *******************************************************************************/
package org.eclipse.e4.tools.emf.ui.internal.common.resourcelocator.dialogs;

import org.eclipse.e4.tools.emf.ui.internal.common.resourcelocator.Messages;

import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.e4.tools.emf.ui.internal.common.component.dialogs.AbstractIconDialogWithScopeAndFilter;
import org.eclipse.swt.widgets.Shell;

final class FindIconDialog extends AbstractIconDialogWithScopeAndFilter {
	FindIconDialog(Shell parentShell, IEclipseContext context) {
		super(parentShell, context);
	}

	@Override
	protected String getShellTitle() {
		return Messages.FindIconDialog_findIcon;
	}

	@Override
	protected String getDialogTitle() {
		return Messages.FindIconDialog_findIcon;
	}

	@Override
	protected String getDialogMessage() {
		return Messages.FindIconDialog_searchByFilename;
	}
}

Back to the top