org.symbian.tools.mtw.core/src/org/symbian/tools/tmw/core/runtimes/ProjectCreationConfigFactory.java
changeset 467 5a2901872fcf
equal deleted inserted replaced
466:129c94e78375 467:5a2901872fcf
       
     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.tmw.core.runtimes;
       
    20 
       
    21 import org.eclipse.core.runtime.CoreException;
       
    22 import org.eclipse.wst.common.project.facet.core.IActionConfigFactory;
       
    23 
       
    24 public class ProjectCreationConfigFactory implements IActionConfigFactory {
       
    25     // Basically this is an ugly hack. Our project wizard will replace this config
       
    26     // object with WizardContext
       
    27     public static final Object CONFIG_STANDIN = "standing_config";
       
    28 
       
    29     public Object create() throws CoreException {
       
    30         return CONFIG_STANDIN;
       
    31     }
       
    32 
       
    33 }