Package workspace.elements

Examples of workspace.elements.HaxeProject.createFile()


            HaxeProject project = HaxeProjectCreator.createProject(name, location);
           
            // creating build file
            BuildFile buildFile = pageOne.getBuildFile();
            project.addBuildFile(buildFile);
            project.createFile(buildFile.getPath().toString(), buildFile.getContent(), false);
           
            // here the initial structure for project should be
            String[] struct = {srcFolder, outFolder, mainFileFolder};
            project.createFolders(struct);
           
View Full Code Here


            // here the initial structure for project should be
            String[] struct = {srcFolder, outFolder, mainFileFolder};
            project.createFolders(struct);
           
            // create main file and add it to the project
            project.createFile(pageOne.getMainFileName() + CodeFile.EXTENTION_WITH_DOT);
           
            //TODO: find haxe compiler and attach it or inform user about not found
        }
        catch (NullPointerException e)
        {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.