Converted all CRLF to LF.
[indepmod/mmn.git] / IndependentModeler / src / cz / cvut / promod / services / projectService / results / AddProjectItemStatus.java
blobb27a6a837e0ea2c1fe7b4fcbd6439b7a13d982b9
1 package cz.cvut.promod.services.projectService.results;
3 /**
4 * ProMod, master thesis project
5 * User: Petr Zverina, petr.zverina@gmail.com
6 * Date: 13:05:20, 6.2.2010
7 */
9 /**
10 * Represents the result of adding project item.
12 public enum AddProjectItemStatus {
14 /**
15 * No error has occurred.
17 SUCCESS,
19 /**
20 * There is already name colliding project item.
22 NAME_DUPLICITY,
24 /**
25 * The project item is invalid, e.g. nullary.
27 INVALID_NAME,
29 /**
30 * Not valid parent for the project item.
32 ILLEGAL_PARENT,
34 /**
35 * Not valid notation for the project item.
37 ILLEGAL_NOTATION,
39 /**
40 * Invalid project item data, e.g. nullary.
42 INVALID_ITEM_DATA,