org.symbian.tools.mtw.ui/src/org/symbian/tools/mtw/ui/deployment/ITargetDetailsPane.java
changeset 457 f1087591ff71
child 460 c0bff5ed874c
equal deleted inserted replaced
456:12b549765c34 457:f1087591ff71
       
     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.mtw.ui.deployment;
       
    20 
       
    21 import org.eclipse.jface.wizard.IWizardPage;
       
    22 import org.eclipse.swt.widgets.Composite;
       
    23 import org.eclipse.swt.widgets.Control;
       
    24 
       
    25 /**
       
    26  * Objects of this class provide UI for the users to visualize or configure
       
    27  * their deployment targets. This object will not be reused between wizard 
       
    28  * deployment wizard restarts.
       
    29  * There will be one instance for the target type. This object will not be 
       
    30  * instantiated for each target.
       
    31  * 
       
    32  * @author Eugene Ostroukhov (eugeneo@symbian.org)
       
    33  */
       
    34 public interface ITargetDetailsPane {
       
    35     void init(IWizardPage page);
       
    36 
       
    37     void setTarget(IDeploymentTarget target);
       
    38 
       
    39     void createControl(Composite parent);
       
    40 
       
    41     Control getControl();
       
    42 }