debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/IConnectionWizardData.java
author dadubrow
Wed, 20 Oct 2010 09:35:54 -0500
changeset 2163 f0a9f2d04d4a
permissions -rw-r--r--
Refactor data model for new launch wizard
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2163
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
     1
/*
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
     2
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
     3
* All rights reserved.
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
     4
* This component and the accompanying materials are made available
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
     5
* under the terms of the License "Eclipse Public License v1.0"
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
     6
* which accompanies this distribution, and is available
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
     8
*
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
     9
* Initial Contributors:
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    10
* Nokia Corporation - initial contribution.
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    11
*
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    12
* Contributors:
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    13
*
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    14
* Description: 
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    15
*
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    16
*/
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    17
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    18
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    19
package com.nokia.cdt.internal.debug.launch.newwizard;
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    20
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    21
import com.nokia.carbide.remoteconnections.interfaces.IConnection;
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    22
import com.nokia.carbide.remoteconnections.interfaces.IService;
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    23
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    24
/**
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    25
 * Interface for connection wizard data
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    26
 */
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    27
public interface IConnectionWizardData {
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    28
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    29
	/**
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    30
	 * The service the connection must support
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    31
	 * @return IService
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    32
	 */
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    33
	IService getService();
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    34
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    35
	/**
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    36
	 * Set the connection
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    37
	 * @param connection IConnection
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    38
	 */
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    39
	void setConnection(IConnection connection);
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    40
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    41
	/**
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    42
	 * Return the connection
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    43
	 * @return IConnection
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    44
	 */
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    45
	IConnection getConnection();
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    46
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    47
	/**
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    48
	 * Return the connection name or null
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    49
	 * @return String
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    50
	 */
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    51
	String getConnectionName();
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    52
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    53
f0a9f2d04d4a Refactor data model for new launch wizard
dadubrow
parents:
diff changeset
    54
}