plugins/org.symbian.tools.tmw.core/src/org/symbian/tools/tmw/core/runtimes/ProjectCreationConfigFactory.java
changeset 479 518afa7c6d2f
parent 470 d4809db37847
child 480 b6d992b9b998
equal deleted inserted replaced
478:6c07c755d0c7 479:518afa7c6d2f
    22 import org.eclipse.wst.common.project.facet.core.IActionConfigFactory;
    22 import org.eclipse.wst.common.project.facet.core.IActionConfigFactory;
    23 
    23 
    24 public class ProjectCreationConfigFactory implements IActionConfigFactory {
    24 public class ProjectCreationConfigFactory implements IActionConfigFactory {
    25     // Basically this is an ugly hack. Our project wizard will replace this config
    25     // Basically this is an ugly hack. Our project wizard will replace this config
    26     // object with WizardContext
    26     // object with WizardContext
    27     public static final Object CONFIG_STANDIN = "standing_config";
    27     public static final Object CONFIG_STANDIN = "standin_config";
    28 
    28 
    29     public Object create() throws CoreException {
    29     public Object create() throws CoreException {
    30         return CONFIG_STANDIN;
    30         return CONFIG_STANDIN;
    31     }
    31     }
    32 
    32