Community
Participate
Working Groups
In the class EmfMasterDetailBlock, the method getTreeFilter() is defined as abstract. However, I think that in most cases, subclasses will implement it using the following code : protected ViewerFilter getTreeFilter() { return new ViewerFilter() { @Override public boolean select(Viewer viewer, Object parentElement, Object element) { return true; } }; } So it would be better to provide this as the default implementation and inform users through the JavaDoc that he could override that method in order to provide its own filter.
Agreed, I've release the modification. Thanks!