Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for CharSequence (0.81 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    boolean isDebugEnabled(); public abstract void debug(CharSequence); public abstract void debug(CharSequence, Throwable); public abstract void debug(Throwable); public abstract boolean isInfoEnabled(); public abstract void info(CharSequence); public abstract void info(CharSequence, Throwable); public abstract void info(Throwable); public abstract boolean isWarnEnabled(); public abstract void warn(CharSequence); public abstract void warn(CharSequence, Throwable); public abstract void warn(Throwable);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. maven-settings-builder/src/main/java/org/apache/maven/settings/building/StringSettingsSource.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.settings.building;
    
    import org.apache.maven.building.StringSource;
    
    /**
     * Wraps an ordinary {@link CharSequence} as a settings source.
     *
     *
     * @deprecated instead use {@link StringSource}
     */
    @Deprecated
    public class StringSettingsSource extends StringSource implements SettingsSource {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLog.java

        public DefaultLog(Logger logger) {
            this.logger = requireNonNull(logger);
        }
    
        public void debug(CharSequence content) {
            if (isDebugEnabled()) {
                logger.debug(toString(content));
            }
        }
    
        @Override
        public void debug(CharSequence content, Throwable error) {
            if (isDebugEnabled()) {
                logger.debug(toString(content), error);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/SystemStreamLog.java

        /**
         * @see org.apache.maven.plugin.logging.Log#debug(java.lang.CharSequence)
         */
        public void debug(CharSequence content) {
            print("debug", content);
        }
    
        /**
         * @see org.apache.maven.plugin.logging.Log#debug(java.lang.CharSequence, java.lang.Throwable)
         */
        public void debug(CharSequence content, Throwable error) {
            print("debug", content, error);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. maven-builder-support/src/main/java/org/apache/maven/building/StringSource.java

         */
        public StringSource(CharSequence content) {
            this(content, null);
        }
    
        /**
         * Creates a new source backed by the specified string.
         *
         * @param content The String representation, may be empty or {@code null}.
         * @param location The location to report for this use, may be {@code null}.
         */
        public StringSource(CharSequence content, String location) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

        //
        // message building methods modelled after Ansi methods
        //
    
        @Nonnull
        @Override
        MessageBuilder append(CharSequence cs);
    
        @Nonnull
        @Override
        MessageBuilder append(CharSequence cs, int start, int end);
    
        @Nonnull
        @Override
        MessageBuilder append(char c);
    
        /**
         * Append content to the message buffer.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/Log.java

         *
         * @param content
         */
        void debug(CharSequence content);
    
        /**
         * Send a message (and accompanying exception) to the user in the <b>debug</b> error level.<br>
         * The error's stacktrace will be output when this error level is enabled.
         *
         * @param content
         * @param error
         */
        void debug(CharSequence content, Throwable error);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/StringModelSource.java

         */
        public StringModelSource(CharSequence pom) {
            this(pom, null);
        }
    
        /**
         * Creates a new model source backed by the specified string.
         *
         * @param pom The POM's string representation, may be empty or {@code null}.
         * @param location The location to report for this use, may be {@code null}.
         */
        public StringModelSource(CharSequence pom, String location) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultMessageBuilder.java

        }
    
        @Override
        public MessageBuilder resetStyle() {
            return this;
        }
    
        @Override
        public MessageBuilder append(CharSequence cs) {
            buffer.append(cs);
            return this;
        }
    
        @Override
        public MessageBuilder append(CharSequence cs, int start, int end) {
            buffer.append(cs, start, end);
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/internal/MojoLogWrapper.java

        public MojoLogWrapper(Logger logger) {
            this.logger = requireNonNull(logger);
        }
    
        public void debug(CharSequence content) {
            if (isDebugEnabled()) {
                logger.debug(toString(content));
            }
        }
    
        private String toString(CharSequence content) {
            if (content == null) {
                return "";
            } else {
                return content.toString();
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top