Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6dcbf118dfcf40c6134eea79f134521c9ff7719d (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
39
40
41
42
43
44
45
46
47
48
49
50
51
/***************************************************************************************************
 * Copyright (c) 2003, 2004 IBM 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: IBM Corporation - initial API and implementation
 **************************************************************************************************/
package org.eclipse.jst.j2ee.internal.dialogs;


import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jst.j2ee.internal.rename.RenameOptions;
import org.eclipse.swt.widgets.Shell;


public abstract class J2EERenameDialog extends MessageDialog implements J2EERenameUIConstants {

	protected RenameOptions renameOptions;
	protected String currentName = null;

	/**
	 * Constructor for J2EERenameDialog.
	 * 
	 * @param parentShell
	 * @param dialogTitle
	 * @param dialogTitleImage
	 * @param dialogMessage
	 * @param dialogImageType
	 * @param dialogButtonLabels
	 * @param defaultIndex
	 */
	public J2EERenameDialog(Shell parentShell, String dialogTitle, String name) {
		super(parentShell, dialogTitle, null, RENAME_DIALOG_MESSAGE, QUESTION, new String[]{IDialogConstants.OK_LABEL, IDialogConstants.CANCEL_LABEL}, 0);
		currentName = name;
	}

	public RenameOptions getRenameOptions() {
		return renameOptions;
	}


	public abstract void createRenameOptions();

	protected void buttonPressed(int buttonId) {
		if (buttonId == 0)
			createRenameOptions();
		super.buttonPressed(buttonId);
	}
}

Back to the top