Package com.vaadin.addon.sqlcontainer.query

Examples of com.vaadin.addon.sqlcontainer.query.Filter


        /* Generate Filter -object */
        Filter.ComparisonType ct = Filter.ComparisonType.CONTAINS;
        if (onlyMatchPrefix) {
            ct = Filter.ComparisonType.STARTS_WITH;
        }
        Filter f = new Filter((String) propertyId, ct, filterString);
        f.setCaseSensitive(!ignoreCase);
        filters.add(f);
        refresh();
    }
View Full Code Here


        }
        Object refKey = getContainerProperty(itemId, r.getReferencingColumn())
                .getValue();

        refdCont.removeAllContainerFilters();
        refdCont.addFilter(new Filter(r.getReferencedColumn(),
                ComparisonType.EQUALS, refKey));
        Object toReturn = refdCont.firstItemId();
        refdCont.removeAllContainerFilters();
        return toReturn;
    }
View Full Code Here

TOP

Related Classes of com.vaadin.addon.sqlcontainer.query.Filter

Copyright © 2018 www.massapicom. 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.