Package | Description |
---|---|
org.openide.util |
A set of
utility classes
covering a few general infrastructure points in the Open APIs.
|
org.openide.util.spi |
Modifier and Type | Interface and Description |
---|---|
static interface |
Mutex.Action<T>
Action to be executed in a mutex without throwing any checked exceptions.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
Mutex.readAccess(Mutex.ExceptionAction<T> action)
Run an action with read access and possibly throw a checked exception.
|
<T> T |
Mutex.writeAccess(Mutex.ExceptionAction<T> action)
Run an action with write access and possibly throw an exception.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
MutexImplementation.readAccess(Mutex.ExceptionAction<T> action) |
<T> T |
MutexImplementation.writeAccess(Mutex.ExceptionAction<T> action) |