plugins/org.symbian.tools.tmw.core/src/org/symbian/tools/tmw/core/runtimes/IMobileWebRuntime.java
changeset 484 f5df819c1852
parent 479 518afa7c6d2f
equal deleted inserted replaced
483:109da596fa9d 484:f5df819c1852
    20 
    20 
    21 import java.util.Map;
    21 import java.util.Map;
    22 
    22 
    23 /**
    23 /**
    24  * Represents mobile web runtimes supported by the IDE
    24  * Represents mobile web runtimes supported by the IDE
    25  * 
    25  *
    26  * @author Eugene Ostroukhov (eugeneo@symbian.org)
    26  * @author Eugene Ostroukhov (eugeneo@symbian.org)
    27  */
    27  */
    28 public interface IMobileWebRuntime {
    28 public interface IMobileWebRuntime {
    29     /**
    29     /**
    30      * @return unique runtime ID
    30      * @return unique runtime ID
    45      * @return fixed facets (that are always enabled for the runtime) as id-version pairs
    45      * @return fixed facets (that are always enabled for the runtime) as id-version pairs
    46      */
    46      */
    47     Map<String, String> getFixedFacets();
    47     Map<String, String> getFixedFacets();
    48 
    48 
    49     /**
    49     /**
    50      * @return layout provider that bridges application runtime structure and 
    50      * @return layout provider that bridges application runtime structure and
    51      * workspace project structure
    51      * workspace project structure
    52      */
    52      */
    53     IApplicationLayoutProvider getLayoutProvider();
    53     IApplicationLayoutProvider getLayoutProvider();
    54 }
    54 }