Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for helpFile (3.32 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * <p>
         * javadoc -helpfile C:/user/myhelp.html java.awt
         */
        @Nullable @Optional @PathSensitive(NAME_ONLY) @InputFile
        public File getHelpFile() {
            return helpFile.getValue();
        }
    
        public void setHelpFile(@Nullable File helpFile) {
            this.helpFile.setValue(helpFile);
        }
    
        public StandardJavadocDocletOptions helpFile(File helpFile) {
            setHelpFile(helpFile);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            assertTrue(options.isNoNavBar());
        }
    
        @Test
        public void testFluentHelpFile() {
            final File helpFileValue = new File("help-file.txt");
            assertEquals(options, options.helpFile(helpFileValue));
            assertEquals(helpFileValue, options.getHelpFile());
        }
    
        @Test
        public void testFluentStylesheetFile() {
            final File stylesheetFileValue = new File("stylesheet.css");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top