Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for set_field (0.1 sec)

  1. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            this.userBoost = userBoost;
        }
    
        public void setReadings(final String[][] readings) {
            this.readings = readings;
        }
    
        public void setFields(final String[] fields) {
            this.fields = fields;
        }
    
        public void setTags(final String[] tags) {
            this.tags = tags;
        }
    
        public void setRoles(final String[] roles) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

                    continue;
                }
                if (hasPropertyDesc(fname)) {
                    final PropertyDescImpl pd = (PropertyDescImpl) propertyDescCache.get(field.getName());
                    pd.setField(field);
                    continue;
                }
                if (FieldUtil.isPublicField(field)) {
                    final PropertyDescImpl pd = new PropertyDescImpl(field.getName(), field.getType(), null, null, field, this);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top