Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for noDeprecatedList (0.13 sec)

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

        @Input
        public boolean isNoDeprecatedList() {
            return noDeprecatedList.getValue();
        }
    
        public void setNoDeprecatedList(boolean noDeprecatedList) {
            this.noDeprecatedList.setValue(noDeprecatedList);
        }
    
        public StandardJavadocDocletOptions noDeprecatedList(boolean noDeprecatedList) {
            setNoDeprecatedList(noDeprecatedList);
            return this;
        }
    
    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

            assertEquals(options, options.noDeprecated());
            assertTrue(options.isNoDeprecated());
        }
    
        @Test
        public void testFluentNoDeprecatedList() {
            assertEquals(options, options.noDeprecatedList());
            assertTrue(options.isNoDeprecatedList());
        }
    
        @Test
        public void testFluentNoSince() {
            assertEquals(options, options.noSince());
            assertTrue(options.isNoSince());
    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