/*
* File: objAir.java
* Project: jMOS, com.aranova.java.jmos.enums.mosfield
* Revision: 0.9 - Inicial
* Date: 28-oct-2005 11:03:54
*
* Copyright (C) Aragn Innovacin Tecnolgica S.L.L.
* All rights reserved.
*
* This software is distributed under the terms of the Aranova License version 1.0.
* See the terms of the Aranova License in the documentation provided with this software.
*/
package com.aranova.java.jmos.enums.mosfield;
/**
* Obj Air Status: READY or NOT READY.
*
* @author <a href="http://www.aranova.net/contactar/">Daniel Snchez</a>
* @version 0.9.1
* @since 0.9
*/
public enum objAir {
/**
* READY.
*/
READY,
/**
* NOT_READY.
*/
NOT_READY
}
|