|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object groovy.util.ObservableList.ChangeType
public enum ObservableList.ChangeType
Enum Constant Summary | |
---|---|
ADDED
|
|
CLEARED
|
|
MULTI_ADD
|
|
MULTI_REMOVE
|
|
NONE
|
|
REMOVED
|
|
UPDATED
|
Field Summary | |
---|---|
static Object |
newValue
|
static Object |
oldValue
List decorator that will trigger PropertyChangeEvents when a value changes. |
Method Summary | |
---|---|
static ChangeType
|
resolve(int ordinal)
|
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Enum Constant Detail |
---|
ObservableList.ChangeType ADDED
ObservableList.ChangeType CLEARED
ObservableList.ChangeType MULTI_ADD
ObservableList.ChangeType MULTI_REMOVE
ObservableList.ChangeType NONE
ObservableList.ChangeType REMOVED
ObservableList.ChangeType UPDATED
Field Detail |
---|
public static final Object newValue
public static final Object oldValue
// skip all properties whose value is a closure def map = new ObservableList( {!(it instanceof Closure)} ) // skip all properties whose name matches a regex def map = new ObservableList( { name, value -> !(name =˜ /[A-Z+]/) } )The current implementation will trigger specialized events in the following scenarios, you need not register a different listener as those events extend from PropertyChangeEvent
Bound properties
Method Detail |
---|
public static ChangeType resolve(int ordinal)
Copyright © 2003-2013 The Codehaus. All rights reserved.