project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/cpp/epoc/engine/model/mmp/IMMPViewConfiguration.java
changeset 0 fb279309251b
child 1471 62024a5fa81d
equal deleted inserted replaced
-1:000000000000 0:fb279309251b
       
     1 /*
       
     2 * Copyright (c) 2006-2009 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 package com.nokia.carbide.cpp.epoc.engine.model.mmp;
       
    19 
       
    20 import com.nokia.carbide.cpp.epoc.engine.model.IViewConfiguration;
       
    21 
       
    22 /**
       
    23  * This encapsulates differences between different MMP versions. 
       
    24  *
       
    25  */
       
    26 public interface IMMPViewConfiguration extends IViewConfiguration {
       
    27 	/**
       
    28 	 * Tell whether the given MMP keyword is supported.
       
    29 	 */
       
    30 	boolean isStatementSupported(EMMPStatement statement);
       
    31 	
       
    32 	/**
       
    33 	 * Get the default directory used for .def file exports.
       
    34 	 * @param isASSP true if this is an ASSP build
       
    35 	 * @return 	the name of the directory used for platform-specific defs
       
    36 	 * (e.g. "BWINS", "EABI", ...).  This directory, if present, is removed from 
       
    37 	 * the path before setting DEFFILE.  May be null if unknown.
       
    38 	 */
       
    39 	String getDefaultDefFileBase(boolean isASSP);
       
    40 	
       
    41 	/**
       
    42 	 * Tell if this is an emulator build.  Used for .def filepath calculation.
       
    43 	 */
       
    44 	boolean isEmulatorBuild();
       
    45 }