Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f379581c1d8fa38af3d6c8d50a63bbb308a7b294 (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
/*******************************************************************************
 * Copyright (c) 2009 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.cdt.managedbuilder.xlupc.ui.wizards;

import org.eclipse.cdt.managedbuilder.xlc.ui.wizards.XLCSettingsWizardPage;
import org.eclipse.cdt.managedbuilder.xlupc.ui.Messages;

/**
 *
 */
public class XLUpcSettingsWizardPage extends XLCSettingsWizardPage {

	public static final String PAGE_ID = "org.eclipse.cdt.managedbuilder.xlupc.ui.wizards.XLUpcSettingsWizardPage"; //$NON-NLS-1$

	public XLUpcSettingsWizardPage(String pageID) {
		super(pageID);
	}

	public XLUpcSettingsWizardPage() {
		super();
		pageID = PAGE_ID;
	}

	public String getName() {
		return Messages.XLUpcSettingsWizardPage_0;
	}

	public String getTitle() {
		return Messages.XLUpcSettingsWizardPage_1;
	}

}

Back to the top