Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for labelTypeIds (0.14 sec)

  1. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_edit.jsp

                                        <label for="labelTypeIds" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.label_type"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="labelTypeIds"/>
                                            <la:select styleId="labelTypeIds" property="labelTypeIds" multiple="true"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/ElevateWord.java

        private String[] labelTypeIds;
    
        private volatile List<LabelType> labelTypeList;
    
        /* (non-Javadoc)
         * @see org.codelibs.fess.db.exentity.CrawlingConfig#getLabelTypeIds()
         */
        public String[] getLabelTypeIds() {
            if (labelTypeIds == null) {
                return StringUtil.EMPTY_STRINGS;
            }
            return labelTypeIds;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_edit.jsp

                                        <label for="labelTypeIds" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.label_type"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="labelTypeIds"/>
                                            <la:select styleId="labelTypeIds" property="labelTypeIds" multiple="true"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 15.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

                if (!wctltmList.isEmpty()) {
                    final List<String> labelTypeIds = new ArrayList<>(wctltmList.size());
                    for (final ElevateWordToLabel mapping : wctltmList) {
                        labelTypeIds.add(mapping.getLabelTypeId());
                    }
                    entity.setLabelTypeIds(labelTypeIds.toArray(new String[labelTypeIds.size()]));
                }
                return entity;
            });
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_edit.jsp

                                        <label for="labelTypeIds" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.label_type"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="labelTypeIds"/>
                                            <la:select styleId="labelTypeIds" property="labelTypeIds" multiple="true"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 15.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/elevateword/CreateForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * @author codelibs
     * @author Keiichi Watanabe
     */
    public class CreateForm {
    
        public String[] labelTypeIds;
    
        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
        public String suggestWord;
    
        public String reading;
    
        public String targetLabel;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

    import jakarta.validation.constraints.Min;
    import jakarta.validation.constraints.Size;
    
    /**
     * @author codelibs
     * @author Keiichi Watanabe
     */
    public class CreateForm {
    
        public String[] labelTypeIds;
    
        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
        @Size(max = 200)
        public String name;
    
        @Size(max = 1000)
        public String description;
    
        @Required
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_details.jsp

                                                           items="${labelTypeItems}">
                                                    <c:forEach var="ltid" varStatus="s"
                                                               items="${labelTypeIds}">
                                                        <c:if test="${ltid==l.id}">
                                                            ${f:h(l.name)}<br/>
                                                        </c:if>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.6K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_details.jsp

                                                           items="${labelTypeItems}">
                                                <c:forEach var="ltid" varStatus="s"
                                                           items="${labelTypeIds}">
                                                    <c:if test="${ltid==l.id}">
                                                        ${f:h(l.name)}<br/>
                                                    </c:if>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.7K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_details.jsp

                                                           items="${labelTypeItems}">
                                                <c:forEach var="ltid" varStatus="s"
                                                           items="${labelTypeIds}">
                                                    <c:if test="${ltid==l.id}">
                                                        ${f:h(l.name)}<br/>
                                                    </c:if>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 8.3K bytes
    - Viewed (0)
Back to top