/** * Copyright 2012 Universitat Pompeu Fabra. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * */ package org.onexus.website.api.pages.browser.filters.panels; import org.apache.wicket.markup.html.form.FormComponent; import org.apache.wicket.markup.html.form.TextField; import org.apache.wicket.validation.validator.StringValidator; import org.onexus.website.api.pages.browser.filters.operations.*; import org.onexus.website.api.widgets.tableviewer.headers.FieldHeader; import java.util.Arrays; import java.util.List; public abstract class StringFilterPanel extends AbstractFilterPanel<String> { private static final List<FilterOperation> OPERATIONS = Arrays.asList(new FilterOperation[]{ ContainsOperation.INSTANCE, EqualOperation.INSTANCE, InListOperation.INSTANCE, IsEmptyOperation.INSTANCE, IsNotEmptyOperation.INSTANCE }); public StringFilterPanel(String id, FieldHeader fieldHeader) { super(id, fieldHeader, new FilterOption<String>(ContainsOperation.INSTANCE), OPERATIONS); } @Override protected FormComponent<String> createValueFormComponent(String componentId) { return new TextField<String>(componentId).add(new StringValidator(1, 200)); } }