Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for columns (0.2 sec)

  1. 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 May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  2. 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 May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  3. 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 May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  4. 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 May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. api/maven-api-model/src/main/mdo/maven.mdo

            </codeSegment>
          </codeSegments>
        </class>
        <class locationTracker="locations">
          <name>InputLocation</name>
          <version>4.0.0/4.0.99</version>
          <fields>
            <!-- line, column and source fields are auto-generated by Modello -->
          </fields>
          <codeSegments>
            <codeSegment>
              <version>4.0.0+</version>
              <code>
                <![CDATA[
    
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  8. maven-builder-support/src/main/java/org/apache/maven/building/Problem.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 May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  9. maven-builder-support/src/main/java/org/apache/maven/building/DefaultProblem.java

         * @param lineNumber The one-based index of the line containing the problem or {@code -1} if unknown.
         * @param columnNumber The one-based index of the column containing the problem or {@code -1} if unknown.
         * @param exception The exception that caused this problem, may be {@code null}.
         */
        DefaultProblem(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/ProjectBuildingResultWithLocationMatcher.java

                    .appendText(formatLocation(columnNumber, lineNumber));
        }
    
        private String formatLocation(int columnNumber, int lineNumber) {
            return String.format("line %d, column %d", lineNumber, columnNumber);
        }
    
        @Override
        public void describeMismatch(final Object o, final Description description) {
            if (!(o instanceof ProjectBuildingResult)) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.9K bytes
    - Viewed (0)
Back to top