org.symbian.tools.mtw.core/src/org/symbian/tools/mtw/core/internal/runtimes/MobileWebRuntime.java
changeset 461 7a8f9fa8d278
parent 460 c0bff5ed874c
child 462 cdc4995b1677
equal deleted inserted replaced
460:c0bff5ed874c 461:7a8f9fa8d278
     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.internal.runtimes;
       
    20 
       
    21 import org.eclipse.core.runtime.IConfigurationElement;
       
    22 import org.symbian.tools.mtw.core.runtimes.IMobileWebRuntime;
       
    23 
       
    24 public final class MobileWebRuntime implements IMobileWebRuntime {
       
    25     private final IConfigurationElement element;
       
    26 
       
    27     public MobileWebRuntime(IConfigurationElement element) {
       
    28         this.element = element;
       
    29     }
       
    30 
       
    31     public String getId() {
       
    32         return element.getAttribute("id");
       
    33     }
       
    34 
       
    35     public String getName() {
       
    36         return element.getAttribute("name");
       
    37     }
       
    38 }