Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getPropertyNames (0.18 sec)

  1. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractEntity.java

        //                                                                 ===================
        public Set<String> mymodifiedProperties() {
            return __modifiedProperties.getPropertyNames();
        }
    
        public void mymodifyProperty(String propertyName) {
            registerModifiedProperty(propertyName);
        }
    
        public void mymodifyPropertyCancel(String propertyName) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

        //                                                                 ===================
        public Set<String> mymodifiedProperties() {
            return __modifiedProperties.getPropertyNames();
        }
    
        public void mymodifyProperty(String propertyName) {
            registerModifiedProperty(propertyName);
        }
    
        public void mymodifyPropertyCancel(String propertyName) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

        //                                                                 ===================
        public Set<String> mymodifiedProperties() {
            return __modifiedProperties.getPropertyNames();
        }
    
        public void mymodifyProperty(String propertyName) {
            registerModifiedProperty(propertyName);
        }
    
        public void mymodifyPropertyCancel(String propertyName) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/ClassMetaData.java

         *
         * @return The set of property names.
         */
        public Set<String> getPropertyNames() {
            Set<String> propertyNames = new TreeSet<String>();
            propertyNames.addAll(declaredProperties.keySet());
            ClassMetaData superClass = getSuperClass();
            if (superClass != null) {
                propertyNames.addAll(superClass.getPropertyNames());
            }
            return propertyNames;
        }
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/mail/TestmailPostcard.java

        //                                                                           =========
        @Override
        protected String getBodyFile() {
            return PATH;
        }
    
        @Override
        protected String[] getPropertyNames() {
            return new String[] { "hostname" };
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

        //                                                                           =========
        @Override
        protected String getBodyFile() {
            return PATH;
        }
    
        @Override
        protected String[] getPropertyNames() {
            return new String[] { "hostname", "clustername", "clusterstatus" };
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilder.java

                if (property == null) {
                    throw new RuntimeException(String.format("No metadata for property '%s.%s'. Available properties: %s", classDoc.getName(), propName, classDoc.getClassMetaData().getPropertyNames()));
                }
    
                Map<String, ExtraAttributeDoc> additionalValues = new LinkedHashMap<String, ExtraAttributeDoc>();
    
                if (!superTypes.isEmpty()) {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java

        //                                                                           =========
        @Override
        protected String getBodyFile() {
            return PATH;
        }
    
        @Override
        protected String[] getPropertyNames() {
            return new String[] { "hostname", "jobname", "webFsCrawlStartTime", "webFsCrawlEndTime", "webFsCrawlExecTime", "webFsIndexExecTime",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top