~b-wamsler/helioviewer.org/jhv-benjamin

« back to all changes in this revision

Viewing changes to src/org/helioviewer/viewmodel/J2KReaderStatus.java

  • Committer: Ludwig Schmidt
  • Date: 2009-08-12 22:00:21 UTC
  • Revision ID: ludwigschmidt2@gmail.com-20090812220021-fba0bgz2ud6ie0go
Initial import of the helioviewer java codebase. Earlier commit history etc. is intentionally omitted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.helioviewer.viewmodel;
 
2
 
 
3
 
 
4
/**
 
5
 * Defines the status of the Reader thread.  A disconnected state can either mean
 
6
 * that it was a remote image and it is not connected, or it could just mean that 
 
7
 * the image is local.
 
8
 * @author caplins
 
9
 *
 
10
 */
 
11
public enum J2KReaderStatus {
 
12
        DISCONNECTED, 
 
13
        CONNECTED_AND_ACTIVE,
 
14
        CONNECTED_AND_INACTIVE;
 
15
};