Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AbstractConfigurationReportRenderer (0.44 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/AbstractConfigurationReportRenderer.java

     */
    public abstract class AbstractConfigurationReportRenderer<E> extends ReportRenderer<ConfigurationReportModel, E> {
        protected final AbstractConfigurationReportSpec spec;
    
        protected AbstractConfigurationReportRenderer(AbstractConfigurationReportSpec spec) {
            this.spec = spec;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 25 13:50:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/AbstractWritableConfigurationReportRenderer.java

    /**
     * An {@code abstract} {@link AbstractConfigurationReportRenderer} extension that can be used to render a {@link ConfigurationReportModel}
     * to a {@link Writer}.
     *
     * This is meant to be the base class for any such renderer which does <strong>NOT</strong> output directly to the console.
     */
    public abstract class AbstractWritableConfigurationReportRenderer extends AbstractConfigurationReportRenderer<Writer> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 25 13:50:45 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/ConsoleConfigurationReportRenderer.java

    import java.util.Optional;
    import java.util.stream.Collectors;
    
    /**
     * The {@link AbstractConfigurationReportRenderer} extension that can be used to render a {@link ConfigurationReportModel}
     * to the console with richly formatted output.
     */
    public final class ConsoleConfigurationReportRenderer extends AbstractConfigurationReportRenderer<StyledTextOutput> {
        @Nullable private StyledTextOutput output;
        private int depth;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 16:17:12 UTC 2022
    - 18.3K bytes
    - Viewed (0)
Back to top