Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getSystemId (0.23 sec)

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

            return location.getCharacterOffset();
        }
    
        @Override
        public String getPublicId() {
            return location.getPublicId();
        }
    
        @Override
        public String getSystemId() {
            return location.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. src/main/java/org/codelibs/core/exception/SAXRuntimeException.java

            buf.append(cause);
            if (cause instanceof SAXParseException) {
                final SAXParseException e = (SAXParseException) cause;
                if (e.getSystemId() != null) {
                    buf.append(" at ").append(e.getSystemId());
                }
                final int lineNumber = e.getLineNumber();
                final int columnNumber = e.getColumnNumber();
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java

         * @return the public ID, or null if not available
         */
        String getPublicId();
    
        /**
         * Returns the system ID of the XML
         * @return the system ID, or null if not available
         */
        String getSystemId();
    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