Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 01e95f2d5f1599fa362c7bb7bb0c6d9fbaa7587d (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
/*******************************************************************************
 * Copyright (c) 2017 Red Hat, Inc.
 * Distributed under license by Red Hat, Inc. All rights reserved.
 * This program is 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
 *
 * Contributor:
 *     Red Hat, Inc. - initial API and implementation
 ******************************************************************************/
package org.eclipse.linuxtools.docker.reddeer.core.ui.wizards;

import org.eclipse.reddeer.jface.wizard.WizardDialog;

/**
 * 
 * @author jkopriva@redhat.com
 *
 */

public class SearchDockerImageWizard  extends WizardDialog {
	
	public SearchDockerImageWizard() {
		super("Search and pull a Docker image");
	}

}

Back to the top