org.symbian.tools.mtw.ui/src/org/symbian/tools/tmw/ui/project/INewApplicationWizardPage.java
changeset 465 87920e15f8eb
equal deleted inserted replaced
464:0b02f3d6f52c 465:87920e15f8eb
       
     1 /**
       
     2  * Copyright (c) 2010 Symbian Foundation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of the License "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  * Symbian Foundation - initial contribution.
       
    11  * Contributors:
       
    12  * Description:
       
    13  * Overview:
       
    14  * Details:
       
    15  * Platforms/Drives/Compatibility:
       
    16  * Assumptions/Requirement/Pre-requisites:
       
    17  * Failures and causes:
       
    18  */
       
    19 package org.symbian.tools.tmw.ui.project;
       
    20 
       
    21 import org.eclipse.core.databinding.DataBindingContext;
       
    22 import org.eclipse.jface.wizard.IWizardPage;
       
    23 
       
    24 public interface INewApplicationWizardPage extends IWizardPage {
       
    25     void init(IProjectTemplateContext context, DataBindingContext bindingContext);
       
    26 
       
    27     void remove();
       
    28 }