summaryrefslogtreecommitdiff
path: root/java/src/IOCntlCmds.java
blob: 2469428a3a67721f6088dc8aeeb4a8bc503fbb96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*************************************************
 *
 * = PACKAGE
 *    JACE.ASX
 *
 * = FILENAME
 *    TaskFlags.java
 *
 *@author Prashant Jain
 *
 *************************************************/
package JACE.ASX;

public abstract class IOCntlCmds
{
  /**  Set the low water mark. */
  public static final int SET_LWM    = 1;

  /** Get the low water mark. */
  public static final int GET_LWM    = 2; 

  /**  Set the high water mark. */
  public static final int SET_HWM    = 3;

  /** Get the high water mark. */
  public static final int GET_HWM    = 4;

  /** Link modules */
  public static final int MOD_LINK    = 5;

  /** Unlink modules */
  public static final int MOD_UNLINK    = 6;

}