Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AttributedStyle (0.21 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/EncryptContext.java

        }
    
        public Map<String, Goal> goals;
    
        public List<AttributedString> header;
        public AttributedStyle style;
        public LineReader reader;
    
        public void addInHeader(String text) {
            addInHeader(AttributedStyle.DEFAULT, text);
        }
    
        public void addInHeader(AttributedStyle style, String text) {
            AttributedStringBuilder asb = new AttributedStringBuilder();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 2K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeContext.java

        public List<AttributedString> header;
        public AttributedStyle style;
        public LineReader reader;
    
        // Indentation control for nested logging
        private int indentLevel = 0;
        private String indentString = Indentation.DEFAULT;
    
        public void addInHeader(String text) {
            addInHeader(AttributedStyle.DEFAULT, text);
        }
    
        public void addInHeader(AttributedStyle style, String text) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/EncryptInvoker.java

    import org.apache.maven.cling.utils.CLIReportingUtils;
    import org.jline.reader.LineReaderBuilder;
    import org.jline.reader.UserInterruptException;
    import org.jline.terminal.Terminal;
    import org.jline.utils.AttributedStyle;
    import org.jline.utils.Colors;
    
    /**
     * mvnenc invoker implementation.
     */
    public class EncryptInvoker extends LookupInvoker<EncryptContext> {
    
        public static final int OK = 0; // OK
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeInvoker.java

    import org.apache.maven.cling.utils.CLIReportingUtils;
    import org.jline.reader.LineReaderBuilder;
    import org.jline.reader.UserInterruptException;
    import org.jline.terminal.Terminal;
    import org.jline.utils.AttributedStyle;
    import org.jline.utils.Colors;
    
    /**
     * mvnup invoker implementation.
     */
    public class UpgradeInvoker extends LookupInvoker<UpgradeContext> {
    
        public static final int OK = 0; // OK
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 4.4K bytes
    - Viewed (0)
Back to top