blob: dc32a2de7d3fb42734fc03c7b3eee07ad6f4c27c [file] [log] [blame]
/***************************************************************************************************
* Copyright (c) 2003, 2005 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.wst.common.tests.ui.wizard;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
import org.eclipse.wst.common.frameworks.internal.datamodel.ui.DataModelWizardPage;
import org.eclipse.wst.common.frameworks.internal.datamodel.ui.SimplePageGroup;
public class TestPageGroup2 extends SimplePageGroup {
private IDataModel dataModel;
public TestPageGroup2(IDataModel dataModel) {
super("group2", dataModel.getID(), true, "TestOperation"); //$NON-NLS-1$ //$NON-NLS-2$
this.dataModel = dataModel;
addPages(new DataModelWizardPage[]{new TestPage2(this.dataModel)});
}
}