public static List<Property> getSearchCheckboxFieldPropertiesFromSimple(Class element) {
   List<Property> propertyList = new ArrayList<Property>();
   Iterator<Property> i = ClassHelper.getAllSimpleProperties(element);
   for (; i.hasNext(); ) {
     Property property = (Property) i.next();
     if (isSearch(property)) {
       if (ViewInputHelper.isViewInputCheckbox(property)) {
         propertyList.add(property);
       }
     }
   }
   return propertyList;
 }