srcanaapps/depexplorer/com.nokia.s60tools.appdep/src/com/nokia/s60tools/appdep/ui/wizards/AbstractSelectSDKWizardPage.java
changeset 0 a02c979e8dfd
equal deleted inserted replaced
-1:000000000000 0:a02c979e8dfd
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 package com.nokia.s60tools.appdep.ui.wizards;
       
    20 
       
    21 import org.eclipse.swt.widgets.Composite;
       
    22 
       
    23 import com.nokia.s60tools.ui.wizards.S60ToolsWizardPage;
       
    24 
       
    25 /**
       
    26  * Abstract base class for SDK selection wizard page
       
    27  * making possible to make different concreted implementations.
       
    28  */
       
    29 public abstract class AbstractSelectSDKWizardPage extends S60ToolsWizardPage{
       
    30 
       
    31 	/**
       
    32 	 * Constructor
       
    33 	 * @param pageName wizard page name
       
    34 	 */
       
    35 	public AbstractSelectSDKWizardPage(String pageName) {
       
    36 		super(pageName);
       
    37 	}
       
    38 
       
    39 	/* (non-Javadoc)
       
    40 	 * @see com.nokia.s60tools.ui.wizards.S60ToolsWizardPage#recalculateButtonStates()
       
    41 	 */
       
    42 	public abstract void recalculateButtonStates();
       
    43 
       
    44 	/* (non-Javadoc)
       
    45 	 * @see com.nokia.s60tools.ui.wizards.S60ToolsWizardPage#setInitialFocus()
       
    46 	 */
       
    47 	public abstract void setInitialFocus();
       
    48 
       
    49 	/* (non-Javadoc)
       
    50 	 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
       
    51 	 */
       
    52 	public abstract void createControl(Composite parent);
       
    53 
       
    54 }