KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > perseus > Status


1 package org.objectweb.perseus;
2
3 /**
4  */

5 public class Status {
6     public static final byte STATUS_CLEAN = 0x0;
7     public static final byte STATUS_FLUSHED = 0x1;
8     public static final byte STATUS_DIRTY = 0x2;
9     public static final byte STATUS_EXPORTED = 0x4;
10     public static final byte STATUS_UNEXPORTED = 0x8;
11     public static final byte STATUS_BOUND = 0x16;
12 }
13
Popular Tags