01: package org.compass.annotations;
02:
03: /**
04: * Controls if the all property will exclude the alias from it
05: *
06: * @author kimchy
07: */
08: public enum ExcludeAlias {
09:
10: /**
11: * Will use Compass globabl setting for all property.
12: *
13: * @see org.compass.core.config.CompassEnvironment.All#EXCLUDE_ALIAS
14: */
15: NA,
16:
17: /**
18: * Alias will be excluded for this mapping. Regardless of the globabl
19: * setting.
20: */
21: TRUE,
22:
23: /**
24: * All will be included for this mapping. Regardless of the globabl
25: * setting.
26: */
27: FALSE
28: }
|