Package | Description |
---|---|
info.bioinfweb.commons.collections |
Contains extensions to the Java Collections API made for bioinfweb projects that can be of general use.
|
info.bioinfweb.commons.collections.observable |
Contains implementation related to observable collections (e.g.
|
Modifier and Type | Method and Description |
---|---|
static ListChangeType |
ListChangeType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListChangeType |
ListChangeType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListChangeType[] |
ListChangeType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static ListChangeType[] |
ListChangeType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
ListChangeType |
ListChangeEvent.getType()
Returns the type of change that happened.
|
ListChangeType |
ListChangeEvent.getType()
Returns the type of change that happened.
|
Constructor and Description |
---|
ListChangeEvent(List<E> source,
ListChangeType type,
int index)
Creates a new event object.
|
ListChangeEvent(List<E> source,
ListChangeType type,
int index)
Creates a new event object.
|
ListMultipleChangesEvent(List<E> source,
ListChangeType type,
int index,
Collection<? extends E> affectedElements)
Creates a new event object.
|
ListMultipleChangesEvent(List<E> source,
ListChangeType type,
int index,
Collection<? extends E> affectedElements)
Creates a new event object.
|
ListMultipleChangesEvent(List<E> source,
ListChangeType type,
int index,
E affectedElement)
Creates a new event object.
|
ListMultipleChangesEvent(List<E> source,
ListChangeType type,
int index,
E affectedElement)
Creates a new event object.
|