blob: 9e4c5f8530d23508afd05d2444a5d5a5c247a3d9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Christian Pontesegger 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: Christian Pontesegger - initial API and implementation
*******************************************************************************/
var files = [
["Disclaimer.txt", "This is the disclaimer"],
["HowTo.txt", "TODO: write HowTo Content"],
["License.txt", "This project is licensed under the EPL."]
];
print("Creating sample project");
loadModule('/System/Resources');
loadModule('/System/UI');
// create project
projectName = showInputDialog("Please provide the name of the project to create", "EclipseCon 2015 Sample project", "Create Project");
if (projectName != null) {
createProject(projectName);
// now create files
for each (fileDescription in files)
writeFile("workspace://" + projectName + "/" + fileDescription[0], fileDescription[1]);
}