Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for _columns (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/settings/SettingsConfigurationException.java

            super(
                    message
                            + (lineNumber > 0 ? System.lineSeparator() + "  Line:   " + lineNumber : "")
                            + (columnNumber > 0 ? System.lineSeparator() + "  Column: " + columnNumber : ""),
                    cause);
            this.lineNumber = lineNumber;
            this.columnNumber = columnNumber;
        }
    
        public int getColumnNumber() {
            return columnNumber;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  2. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParserException.java

    public class ModelParserException extends MavenException {
    
        /**
         * The one-based index of the line containing the error.
         */
        private final int lineNumber;
    
        /**
         * The one-based index of the column containing the error.
         */
        private final int columnNumber;
    
        public ModelParserException() {
            this(null, null);
        }
    
        public ModelParserException(String message) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 07:25:10 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    void <clinit>(); } org/codehaus/plexus/util/xml/pull/XmlPullParserExcepti.class package org.codehaus.plexus.util.xml.pull; public synchronized class XmlPullParserExcepti extends Exception { protected Throwable detail; protected int row; protected int column; public void XmlPullParserExcepti(String); public void XmlPullParserExcepti(String, XmlPullParser, Throwable); public Throwable getDetail(); public int getLineNumber(); public int getColumnNumber(); public void printStackTrace(); } org/codehaus/p...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 200.2K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    Exception; protected void runFailed(String); public void setPrinter(ResultPrinter); } junit/textui/ResultPrinter.class package junit.textui; public synchronized class ResultPrinter implements junit.framework.TestListener { java.io.PrintStream fWriter; int fColumn; public void ResultPrinter(java.io.PrintStream); synchronized void print(junit.framework.TestResult, long); void printWaitPrompt(); protected void printHeader(long); protected void printErrors(junit.framework.TestResult); protected void printFail...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  5. maven-builder-support/src/main/java/org/apache/maven/building/ProblemCollector.java

         * @param line The one-based index of the line containing the problem or {@code -1} if unknown.
         * @param column The one-based index of the column containing the problem or {@code -1} if unknown.
         * @param cause The cause of the problem, may be {@code null}.
         */
        void add(Problem.Severity severity, String message, int line, int column, Exception cause);
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

         */
        int getLineNumber();
    
        /**
         * Gets the one-based index of the column containing the problem. The column number should refer to some text file
         * that is given by {@link #getSource()}.
         *
         * @return the one-based index of the column containing the problem or non-positive value if unknown
         */
        int getColumnNumber();
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  7. maven-builder-support/src/main/java/org/apache/maven/building/DefaultProblemCollector.java

        public void setSource(String source) {
            this.source = source;
        }
    
        @Override
        public void add(Problem.Severity severity, String message, int line, int column, Exception cause) {
            Problem problem = new DefaultProblem(message, severity, source, line, column, cause);
    
            problems.add(problem);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java

         * returns -1 if none is available.
         * @return the current line number
         */
        int getLineNumber();
    
        /**
         * Return the column number where the current event ends,
         * returns -1 if none is available.
         * @return the current column number
         */
        int getColumnNumber();
    
        /**
         * Return the byte or character offset into the input source this location
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    void <clinit>(); } org/codehaus/plexus/util/xml/pull/XmlPullParserExcepti.class package org.codehaus.plexus.util.xml.pull; public synchronized class XmlPullParserExcepti extends Exception { protected Throwable detail; protected int row; protected int column; public void XmlPullParserExcepti(String); public void XmlPullParserExcepti(String, XmlPullParser, Throwable); public Throwable getDetail(); public int getLineNumber(); public int getColumnNumber(); public void printStackTrace(); } org/codehaus/p...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 164.6K bytes
    - Viewed (0)
  10. maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    void <clinit>(); } org/codehaus/plexus/util/xml/pull/XmlPullParserExcepti.class package org.codehaus.plexus.util.xml.pull; public synchronized class XmlPullParserExcepti extends Exception { protected Throwable detail; protected int row; protected int column; public void XmlPullParserExcepti(String); public void XmlPullParserExcepti(String, XmlPullParser, Throwable); public Throwable getDetail(); public int getLineNumber(); public int getColumnNumber(); public void printStackTrace(); } org/codehaus/p...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 164.6K bytes
    - Viewed (0)
Back to top