Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for setDeprecation (0.21 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MinimalScalaCompileOptions.java

        }
    
        public void setFailOnError(boolean failOnError) {
            this.failOnError = failOnError;
        }
    
        public boolean isDeprecation() {
            return deprecation;
        }
    
        public void setDeprecation(boolean deprecation) {
            this.deprecation = deprecation;
        }
    
        public boolean isUnchecked() {
            return unchecked;
        }
    
        public void setUnchecked(boolean unchecked) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDocOptions.java

         */
        @Input
        public boolean isDeprecation() {
            return deprecation;
        }
    
        /**
         * Sets whether to generate deprecation information.
         */
        public void setDeprecation(boolean deprecation) {
            this.deprecation = deprecation;
        }
    
        /**
         * Tells whether to generate unchecked information.
         */
        @Input
        public boolean isUnchecked() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

        }
    
        /**
         * Generate deprecation information.
         */
        @Console
        public boolean isDeprecation() {
            return deprecation;
        }
    
        public void setDeprecation(boolean deprecation) {
            this.deprecation = deprecation;
        }
    
        /**
         * Generate unchecked information.
         */
        @Console
        public boolean isUnchecked() {
            return unchecked;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

        }
    
        public void setDebug(boolean debug) {
            this.debug = debug;
        }
    
        public boolean isDeprecation() {
            return deprecation;
        }
    
        public void setDeprecation(boolean deprecation) {
            this.deprecation = deprecation;
        }
    
        public boolean isFailOnError() {
            return failOnError;
        }
    
        public void setFailOnError(boolean failOnError) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            return deprecation;
        }
    
        /**
         * Sets whether to log details of usage of deprecated members or classes. Defaults to {@code false}.
         */
        public void setDeprecation(boolean deprecation) {
            this.deprecation = deprecation;
        }
    
        /**
         * Tells whether to log warning messages. The default is {@code true}.
         */
        @Console
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolInfoProvider.kt

            get() = analysisSession.token
    
        override fun getDeprecation(symbol: KaSymbol): DeprecationInfo? {
            val descriptor = getSymbolDescriptor(symbol) ?: return null
            ForceResolveUtil.forceResolveAllContents(descriptor)
            return getDeprecation(descriptor)
        }
    
        override fun getDeprecation(symbol: KaSymbol, annotationUseSiteTarget: AnnotationUseSiteTarget?): DeprecationInfo? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolInfoProvider.kt

    import org.jetbrains.kotlin.resolve.deprecation.DeprecationInfo
    
    public abstract class KaSymbolInfoProvider : KaSessionComponent() {
        public abstract fun getDeprecation(symbol: KaSymbol): DeprecationInfo?
        public abstract fun getDeprecation(symbol: KaSymbol, annotationUseSiteTarget: AnnotationUseSiteTarget?): DeprecationInfo?
        public abstract fun getGetterDeprecation(symbol: KaPropertySymbol): DeprecationInfo?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

        override val token: KaLifetimeToken
    ) : KaSymbolInfoProvider(), KaFirSessionComponent {
        private val apiVersion = analysisSession.useSiteSession.languageVersionSettings.apiVersion
    
        override fun getDeprecation(symbol: KaSymbol): DeprecationInfo? {
            if (symbol is KaFirPackageSymbol || symbol is KaReceiverParameterSymbol) return null
            require(symbol is KaFirSymbol<*>) { "${this::class}" }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top