blob: b340155d4a10466b93673309062733619b5ccc64 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 RCP Vision (http://www.rcp-vision.com) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Francesco Guidieri - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.parsley.dsl.ui.wizard.template;
import org.eclipse.emf.parsley.generator.common.EmfParsleyViewFilesGenerator;
/**
* @author Francesco Guidieri
*
*/
public abstract class AbstractTemplateWizardHelper implements IWizardTemplate{
protected static final String ABSTRACT_SAVEABLE="AbstractSaveable";
protected static EmfParsleyViewFilesGenerator viewFilesGenerator= new EmfParsleyViewFilesGenerator();
protected String getSimpleNameProject(String projectName) {
String simpleNameProject = null;
if (projectName.contains(".")) {
simpleNameProject = projectName.substring(projectName
.lastIndexOf(".") + 1);
} else {
simpleNameProject = projectName.substring(projectName
.lastIndexOf("/") + 1);
}
simpleNameProject = simpleNameProject.substring(0, 1).toUpperCase()
.concat(simpleNameProject.substring(1));
return simpleNameProject;
}
}