org.symbian.tools.mtw.core/src/org/symbian/tools/mtw/core/runtimes/IMobileWebRuntime.java
changeset 455 5da55957c779
equal deleted inserted replaced
454:38d6944cff88 455:5da55957c779
       
     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.core.runtimes;
       
    20 
       
    21 /**
       
    22  * Represents mobile web runtimes supported by the IDE
       
    23  * 
       
    24  * @author Eugene Ostroukhov (eugeneo@symbian.org)
       
    25  */
       
    26 public interface IMobileWebRuntime {
       
    27     /**
       
    28      * @return unique runtime ID
       
    29      */
       
    30     String getId();
       
    31 
       
    32     /**
       
    33      * @return user-readable runtime name
       
    34      */
       
    35     String getName();
       
    36 }