Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getSystemId (0.07 seconds)

  1. 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();
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Thu Jun 19 09:12:22 GMT 2025
    - 2K bytes
    - Click Count (0)
  2. 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();
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 1.9K bytes
    - Click Count (0)
Back to Top