Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for osddPath (0.03 sec)

  1. src/main/java/org/codelibs/fess/helper/OsddHelper.java

                    out.write(ins);
                }
            });
        }
    
        /**
         * Sets the OSDD path.
         *
         * @param osddPath the OSDD path
         */
        public void setOsddPath(final String osddPath) {
            this.osddPath = osddPath;
        }
    
        /**
         * Sets the encoding.
         *
         * @param encoding the encoding
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/OsddHelperTest.java

        }
    
        public void test_setOsddPath() {
            final OsddHelper osddHelper = new OsddHelper();
            osddHelper.setOsddPath("test/path/osdd.xml");
            assertEquals("test/path/osdd.xml", osddHelper.osddPath);
        }
    
        public void test_setEncoding() {
            final OsddHelper osddHelper = new OsddHelper();
            osddHelper.setEncoding("ISO-8859-1");
            assertEquals("ISO-8859-1", osddHelper.encoding);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 23.9K bytes
    - Viewed (0)
Back to top