Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getDisplay (0.1 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ConsoleStub.java

                this.buildProgressLabelCount = buildProgressLabelCount;
            }
    
            public List<String> getDisplay() {
                List<String> display = new ArrayList<String>(testableLabels.size());
                for (TestableRedrawableLabel label : testableLabels) {
                    display.add(label.getDisplay());
                }
                return display;
            }
    
            void redraw() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/TestStyledLabel.groovy

    import org.gradle.internal.logging.text.StyledTextOutput
    
    class TestStyledLabel implements StyledLabel {
        String display = ""
        Map<String, StyledTextOutput.Style> stringToStyleMap = new HashMap<>()
    
        String getDisplay() {
            display
        }
    
        void setText(String text) {
            display = text
        }
    
        @Override
        void setText(StyledTextOutputEvent.Span span) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top