Class MarkupWriterImpl

    • Method Detail

      • cdata

        public void cdata​(String content)
        Description copied from interface: MarkupWriter
        Adds parsed character content. This will be enclosed in a CDATA block if supported. When not supported, this is the same as MarkupWriter.write(String).
        Specified by:
        cdata in interface MarkupWriter
        Parameters:
        content - pre-parsed content
      • attributes

        public void attributes​(Object... namesAndValues)
        Description copied from interface: MarkupWriter
        Adds a series of attributes and values. Null values are quietly skipped. If a name already has a value, then the new value is ignored.
        Specified by:
        attributes in interface MarkupWriter
      • element

        public Element element​(String name,
                               Object... namesAndValues)
        Description copied from interface: MarkupWriter
        Begins a new element as a child of the current element. The new element becomes the current element. The new Element is returned and can be directly manipulated (possibly at a later date). Optionally, attributes for the new element can be specified directly.
        Specified by:
        element in interface MarkupWriter
        Parameters:
        name - the name of the element to create
        namesAndValues - an even number of values, alternating names and values
        Returns:
        the new DOM Element node
        See Also:
        MarkupWriter.attributes(Object[])
      • writeRaw

        public void writeRaw​(String text)
        Description copied from interface: MarkupWriter
        Writes raw text, text with existing markup that should be passed through the client without change. This can be useful when the markup is read from an external source (a file or a database) and is simply to be included.
        Specified by:
        writeRaw in interface MarkupWriter
        See Also:
        Raw
      • end

        public Element end()
        Description copied from interface: MarkupWriter
        Ends the current element. The new current element will be the parent element. Returns the new current element (which may be null when ending the root element for the document).
        Specified by:
        end in interface MarkupWriter
      • comment

        public void comment​(String text)
        Description copied from interface: MarkupWriter
        Adds an XML comment. The text should be just the comment content, the comment delimiters will be provided. Note that, as of Tapestry 5.2., no extra whitespace is added (previous releases added a space around the text).
        Specified by:
        comment in interface MarkupWriter
      • attributeNS

        public Element attributeNS​(String namespace,
                                   String attributeName,
                                   String attributeValue)
        Description copied from interface: MarkupWriter
        Creates an attribute within the namespace for the current element.
        Specified by:
        attributeNS in interface MarkupWriter
        Parameters:
        namespace - URI containing the element
        attributeName - name of the attribute within the namespace
        attributeValue - the value for the attribute
        Returns:
        the currently active element
      • defineNamespace

        public Element defineNamespace​(String namespace,
                                       String namespacePrefix)
        Description copied from interface: MarkupWriter
        Defines a namespace for the currently active element. The namespace URI will be mapped to the provided namespace prefix within the Element.
        Specified by:
        defineNamespace in interface MarkupWriter
        Parameters:
        namespace - the namespace URI
        namespacePrefix - the prefix for elements and attributes associated with the namespace (may be the empty string for the default namespace)
        Returns:
        the currently active element
      • elementNS

        public Element elementNS​(String namespace,
                                 String elementName)
        Description copied from interface: MarkupWriter
        Starts an element within the given namespace. The correct namespace prefix will be identified and used. Must be balanced by a call to MarkupWriter.end().
        Specified by:
        elementNS in interface MarkupWriter
        Parameters:
        namespace - URI containing the element
        elementName - name of the element within the namespace
        Returns:
        the new Element