01: /*
02: * File: roAir.java
03: * Project: jMOS, com.aranova.java.jmos.enums.mosfield
04: * Revision: 0.9.1
05: * Date: 18-ene-2006 10:25:07
06: *
07: * Copyright (C) Aragón Innovación Tecnológica S.L.L.
08: * All rights reserved.
09: *
10: * This software is distributed under the terms of the Aranova License version 1.0.
11: * See the terms of the Aranova License in the documentation provided with this software.
12: */
13:
14: package com.aranova.java.jmos.enums.mosfield;
15:
16: /**
17: * Running Order Air Status: “READY� or “NOT READY�.
18: *
19: * @author <a href="http://www.aranova.net/contactar/">Daniel Sánchez</a>
20: * @version 0.9.1
21: * @since 0.9.1
22: */
23: public enum roAir {
24: /**
25: * READY.
26: */
27: READY,
28: /**
29: * NOT_READY.
30: */
31: NOT_READY
32: }
|