Changeset 6493


Ignore:
Timestamp:
09/04/15 11:05:41 (9 years ago)
Author:
davor.ostojic@oeaw.ac.at
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/vlo-3.3-oeaw/vlo-web-app/src/main/java/eu/clarin/cmdi/vlo/wicket/panels/search/AdvancedSearchOptionsPanel.java

    r6486 r6493  
    4444 */
    4545public abstract class AdvancedSearchOptionsPanel extends ExpandablePanel<QueryFacetsSelection> {
    46         public static final String UNSPECIFIED_VALUES = "_unspecified_values";
    4746
    4847    /**
     
    5150    public final static Collection<String> OPTIONS_FIELDS = ImmutableSet.of(
    5251            FacetConstants.FIELD_HAS_PART_COUNT,
    53             FacetConstants.FIELD_SEARCH_SERVICE,
    54             UNSPECIFIED_VALUES);
     52            FacetConstants.FIELD_SEARCH_SERVICE);
    5553
    5654    public AdvancedSearchOptionsPanel(String id, IModel<QueryFacetsSelection> model) {
     
    6260        final CheckBox collectionCheck = createFieldNotEmptyOption("collection", FacetConstants.FIELD_HAS_PART_COUNT);
    6361        options.add(collectionCheck);
    64        
    65         //unspecified values
    66         final CheckBox unspecifiedValuesCheck = createFieldNotEmptyOption("unspecified_values", UNSPECIFIED_VALUES);
    67         options.add(unspecifiedValuesCheck);
    6862       
    6963        add(options);
Note: See TracChangeset for help on using the changeset viewer.