Examples of filterChanged()


Examples of com.dci.intellij.dbn.browser.options.ObjectFilterChangeListener.filterChanged()

        ObjectTypeFilterSettings objectFilterSettings = getConfiguration();
        boolean notifyFilterListeners = objectFilterSettings.isModified();
        visibleObjectsList.applyChanges();
        if (notifyFilterListeners) {
            ObjectFilterChangeListener listener = EventManager.notify(objectFilterSettings.getProject(), ObjectFilterChangeListener.TOPIC);
            listener.filterChanged(objectFilterSettings.getElementFilter());
        }

        objectFilterSettings.getUseMasterSettings().applyChanges(useMasterSettingsCheckBox);
    }
View Full Code Here

Examples of org.openfaces.component.FilterableComponent.filterChanged()

            throw new FacesException("A filter is not associated with a component (DataTable or TreeTable): " +
                    filterId + ". It should either be placed into some table facet, or its \"for\" attribute should " +
                    "be used to explicitly attach this filter to a filtered component.");
        }
        TableUtil.markFilteringToggledInThisRequest(FacesContext.getCurrentInstance());
        filteredComponent.filterChanged(filter);
    }

    protected boolean isEmptyItem(Object item) {
        return item == null || item.equals("");
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.