Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeEmptyElement (0.15 sec)

  1. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeWriter.java

                anew = false;
            }
    
            @Override
            public void writeEmptyElement(String localName) throws XMLStreamException {
                indent();
                super.writeEmptyElement(localName);
                hasChildren = true;
                anew = false;
            }
    
            @Override
            public void writeEmptyElement(String namespaceURI, String localName) throws XMLStreamException {
                indent();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. src/mdo/writer-stax.vm

                super(parent);
            }
    
            @Override
            public void writeEmptyElement(String localName) throws XMLStreamException {
                indent();
                super.writeEmptyElement(localName);
                hasChildren = true;
            }
    
            @Override
            public void writeEmptyElement(String namespaceURI, String localName) throws XMLStreamException {
                indent();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
Back to top