blob: 52fd19d8c2d16f69302680cc9fe9e0b2aa9fa152 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 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.command.internal.env.ui.widgets;
/**
* Dynamic wizard implementations that want to create different
* kinds of wizard pages need to implement this interface.
* The WizardPageFactory returns a class of this type.
*
*/
public interface DialogDataEvents
{
/**
*
* @return returns the WidgetDataEvents object created by the addControls
* method of a WidgetContributor.
*/
public WidgetDataEvents getDataEvents();
/**
* Validates that this wizard page is complete.
*
*/
public void validatePageToStatus();
}