Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for getContextualLabel (0.56 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/problem/InternalContextualLabel.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol.problem;
    
    public interface InternalContextualLabel {
    
        String getContextualLabel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 751 bytes
    - Viewed (0)
  2. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultContextualLabel.java

        private final String contextualLabel;
    
        public DefaultContextualLabel(String contextualLabel) {
            this.contextualLabel = contextualLabel;
        }
    
        @Override
        public String getContextualLabel() {
            return contextualLabel;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultContextualLabel.java

        private final String contextualLabel;
    
        public DefaultContextualLabel(@Nullable String contextualLabel) {
            this.contextualLabel = contextualLabel;
        }
    
        @Override
        public String getContextualLabel() {
            return contextualLabel;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ContextualLabel.java

    @Incubating
    public interface ContextualLabel {
    
        /**
         * Returns the contextual description of a problem.
         *
         * @return the contextual label
         * @since 8.9
         */
        @Nullable
        String getContextualLabel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 10:17:39 UTC 2024
    - 1021 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBasicProblemDetailsVersion3.java

        InternalProblemDefinition getDefinition();
    
        List<InternalSolution> getSolutions();
    
        @Nullable
        InternalDetails getDetails();
    
        @Nullable
        InternalContextualLabel getContextualLabel();
    
        List<InternalLocation> getLocations();
    
        @Nullable
        InternalFailure getFailure();
    
        InternalAdditionalData getAdditionalData();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

         * @since 8.9
         */
        ProblemDefinition getDefinition();
    
        /**
         * Returns the contextual label.
         *
         * @return the problem label
         * @since 8.9
         */
        ContextualLabel getContextualLabel();
    
        /**
         * Returns the details string.
         *
         * @return the problem details
         * @since 8.8
         */
        Details getDetails();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalProblemContextDetails.java

        List<InternalLocation> getLocations();
    
        List<InternalSolution> getSolutions();
    
        @Nullable
        InternalFailure getFailure();
    
        @Nullable
        InternalContextualLabel getContextualLabel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:20 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/Problem.java

    public interface Problem {
    
        /**
         * Returns the problem definition, i.e. the data that is independent of the report context.
         */
        ProblemDefinition getDefinition();
    
        @Nullable
        String getContextualLabel();
    
        /**
         * Returns solutions and advice that contain context-sensitive data, e.g. the message contains references to variables, locations, etc.
         */
        List<String> getSolutions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultInternalProblemContextDetails.java

            return solutions;
        }
    
        @Nullable
        @Override
        public InternalFailure getFailure() {
            return failure;
        }
    
        @Nullable
        @Override
        public InternalContextualLabel getContextualLabel() {
            return contextualLabel;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:20 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblem.java

            this.additionalData = additionalData;
        }
    
        @Override
        public ProblemDefinition getDefinition() {
            return problemDefinition;
        }
    
        @Nullable
        @Override
        public String getContextualLabel() {
            return contextualLabel;
        }
    
        @Override
        public List<String> getSolutions() {
            return solutions;
        }
    
        @Nullable
        @Override
        public String getDetails() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top