/******************************************************************************* * 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; } }