debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/IConnectionWizardData.java
changeset 2163 f0a9f2d04d4a
equal deleted inserted replaced
2162:aa3898248f39 2163:f0a9f2d04d4a
       
     1 /*
       
     2 * Copyright (c) 2010 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 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 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 package com.nokia.cdt.internal.debug.launch.newwizard;
       
    20 
       
    21 import com.nokia.carbide.remoteconnections.interfaces.IConnection;
       
    22 import com.nokia.carbide.remoteconnections.interfaces.IService;
       
    23 
       
    24 /**
       
    25  * Interface for connection wizard data
       
    26  */
       
    27 public interface IConnectionWizardData {
       
    28 
       
    29 	/**
       
    30 	 * The service the connection must support
       
    31 	 * @return IService
       
    32 	 */
       
    33 	IService getService();
       
    34 
       
    35 	/**
       
    36 	 * Set the connection
       
    37 	 * @param connection IConnection
       
    38 	 */
       
    39 	void setConnection(IConnection connection);
       
    40 
       
    41 	/**
       
    42 	 * Return the connection
       
    43 	 * @return IConnection
       
    44 	 */
       
    45 	IConnection getConnection();
       
    46 
       
    47 	/**
       
    48 	 * Return the connection name or null
       
    49 	 * @return String
       
    50 	 */
       
    51 	String getConnectionName();
       
    52 
       
    53 
       
    54 }