Re: Java 8 optionals

2015-05-25 Thread Henrique Prange
> > On 25/05/2015, at 05:37, Johann Werner wrote: > > Hi Mark, > > NSKeyValueCoding.DefaultImplementation is a static class which renders it > quite difficult to modify or replace some functionality. One way to do so > would be to reimplement the class with your modifications and put that pri

Re: Java 8 optionals

2015-05-25 Thread Johann Werner
Hi Mark, NSKeyValueCoding.DefaultImplementation is a static class which renders it quite difficult to modify or replace some functionality. One way to do so would be to reimplement the class with your modifications and put that prior to the original class on your build path so that it is loaded

Java 8 optionals

2015-05-23 Thread Mark Wardle
Dear all, I’ve migrated to java 8 in development and deployment and am now dabbling with new “features”. Optionals seem a potentially good way of documenting nullability although the syntax is currently rather cumbersome it seems likely that in future versions, the syntax will improve. Howeve