...
Note each data structure is having its own set of listeners.
Notes:
- Be sure to include oldValue and newValue in the StyleEvent
New Methods for FeatureTypeStyle
...
| Code Block | ||
|---|---|---|
| ||
public interface ColorMap {
/** This is a live view of the ColorMap in function form*/
Function getFunction();
}
|
NOTES:
- Is the Function a copy? Or is the Function another "view" on the same data structure? Can ColorMap implement Function and get it over with?
Those are only the most interesting/problematic changes, feel free to explore the interfaces to find other changes.
...