Converted all CRLF to LF.
[indepmod/experimental.git] / IndependentModeler / src / cz / cvut / promod / services / projectService / results / SaveProjectResult.java
blobbe70fae4cd533866905e66a3152a83cdb4fc98de
1 package cz.cvut.promod.services.projectService.results;
3 /**
4 * ProMod, master thesis project
5 * User: Petr Zverina, petr.zverina@gmail.com
6 * Date: 20:37:47, 8.2.2010
7 */
9 /**
10 * Possible result of project root saving file system operation.
12 public enum SaveProjectResult {
14 /**
15 * No error has occurred. The project root has been successfully saved.
17 SUCCESS,
19 /**
20 * Used for signaling run-time failure of writing file system operations.
22 IOERROR,
24 /**
25 * Represents a xml error during creating of a structure of xml project file. This error should practically NEVER
26 * happened - represents inner error of saving algorithm.
28 XML_ERROR,
30 /**
31 * This error occurs when one tries to save project root that represents by an invalid tree path, e.g. not valid
32 * tree path, or no project root specified by the tree path.
34 INVALID_TREE_PATH