Package ipsk.audio.impl.j2audio
Class CaptureStatus
- java.lang.Object
-
- ipsk.audio.impl.j2audio.SynchronizedStatus
-
- ipsk.audio.impl.j2audio.CaptureStatus
-
public class CaptureStatus extends SynchronizedStatus
Represents current status of the capture engine.- Author:
- K.Jaensch, klausj@phonetik.uni-muenchen.de
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CAPTURING
static java.lang.String
CLOSED
static java.lang.String
ERROR
static java.lang.String
OPEN
static java.lang.String
PREPARED
static java.lang.String
RECORDED
static java.lang.String
RECORDING
static java.lang.String
SAVING
-
Fields inherited from class ipsk.audio.impl.j2audio.SynchronizedStatus
DEBUG, status
-
-
Constructor Summary
Constructors Constructor Description CaptureStatus(java.lang.String status)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Exception
getException()
void
setException(java.lang.Exception exception)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class ipsk.audio.impl.j2audio.SynchronizedStatus
getStatus, setStatus, toString, waitFor, waitFor, waitForNot, waitForNot
-
-
-
-
Field Detail
-
CLOSED
public static final java.lang.String CLOSED
- See Also:
- Constant Field Values
-
OPEN
public static final java.lang.String OPEN
- See Also:
- Constant Field Values
-
PREPARED
public static final java.lang.String PREPARED
- See Also:
- Constant Field Values
-
CAPTURING
public static final java.lang.String CAPTURING
- See Also:
- Constant Field Values
-
RECORDING
public static final java.lang.String RECORDING
- See Also:
- Constant Field Values
-
RECORDED
public static final java.lang.String RECORDED
- See Also:
- Constant Field Values
-
SAVING
public static final java.lang.String SAVING
- See Also:
- Constant Field Values
-
ERROR
public static final java.lang.String ERROR
- See Also:
- Constant Field Values
-
-