Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCharacterOffset (0.59 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/StaxLocation.java

            return location.getLineNumber();
        }
    
        @Override
        public int getColumnNumber() {
            return location.getColumnNumber();
        }
    
        @Override
        public int getCharacterOffset() {
            return location.getCharacterOffset();
        }
    
        @Override
        public String getPublicId() {
            return location.getPublicId();
        }
    
        @Override
        public String getSystemId() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java

         * a character media then the offset is the character offset.
         * Returns -1 if there is no offset available.
         * @return the current offset
         */
        int getCharacterOffset();
    
        /**
         * Returns the public ID of the XML
         * @return the public ID, or null if not available
         */
        String getPublicId();
    
        /**
         * Returns the system ID of the XML
    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)
Back to top