Class TobagoResponseWriter

    • Constructor Detail

      • TobagoResponseWriter

        public TobagoResponseWriter()
    • Method Detail

      • startElement

        @Deprecated
        public abstract void startElement​(String name,
                                          javax.faces.component.UIComponent component)
                                   throws IOException
        Deprecated.
        Should not directly called via this interface. There is be a special method which might be better.
        Specified by:
        startElement in class javax.faces.context.ResponseWriter
        Throws:
        IOException
      • endElement

        @Deprecated
        public abstract void endElement​(String name)
                                 throws IOException
        Deprecated.
        Should not directly called via this interface. There is be a special method which might be better.
        Specified by:
        endElement in class javax.faces.context.ResponseWriter
        Throws:
        IOException
      • writeComment

        public abstract void writeComment​(Object comment)
                                   throws IOException
        Specified by:
        writeComment in class javax.faces.context.ResponseWriter
        Throws:
        IOException
      • cloneWithWriter

        public abstract javax.faces.context.ResponseWriter cloneWithWriter​(Writer writer)
        Specified by:
        cloneWithWriter in class javax.faces.context.ResponseWriter
      • writeAttribute

        @Deprecated
        public abstract void writeAttribute​(String name,
                                            Object value,
                                            String property)
                                     throws IOException
        Deprecated.
        since 1.0.11, should not directly called via this interface. There is be a special method which might be better.
        Specified by:
        writeAttribute in class javax.faces.context.ResponseWriter
        Throws:
        IOException
      • writeURIAttribute

        @Deprecated
        public abstract void writeURIAttribute​(String name,
                                               Object value,
                                               String property)
                                        throws IOException
        Deprecated.
        since 1.0.11, should not directly called via this interface. There is be a special method which might be better.
        Specified by:
        writeURIAttribute in class javax.faces.context.ResponseWriter
        Throws:
        IOException
      • writeText

        @Deprecated
        public abstract void writeText​(Object text,
                                       String property)
                                throws IOException
        Deprecated.
        Should not directly called via this interface. There is be a special method which might be better.
        Specified by:
        writeText in class javax.faces.context.ResponseWriter
        Throws:
        IOException
      • flush

        public abstract void flush()
                            throws IOException
        Specified by:
        flush in interface Flushable
        Specified by:
        flush in class javax.faces.context.ResponseWriter
        Throws:
        IOException
      • writeAttribute

        public abstract void writeAttribute​(MarkupLanguageAttributes name,
                                            String string,
                                            boolean escape)
                                     throws IOException
        Writes a string attribute. The renderer may set escape=false to switch of escaping of the string, if it is not necessary.
        Throws:
        IOException
      • writeIdAttribute

        public void writeIdAttribute​(String id)
                              throws IOException
        Write the id attribute. The value will not escaped.
        Throws:
        IOException
      • writeNameAttribute

        public void writeNameAttribute​(String name)
                                throws IOException
        Write the name attribute. The value will not escaped.
        Throws:
        IOException
      • writeCommandMapAttribute

        public void writeCommandMapAttribute​(String map)
                                      throws IOException
        Write the command map data attribute.
        Throws:
        IOException
      • writeClassAttribute

        public void writeClassAttribute​(CssItem... first)
                                 throws IOException
        Write the class attribute. The value will not escaped.
        Throws:
        IOException
      • writeStyleAttribute

        @Deprecated
        public void writeStyleAttribute​(Style style)
                                 throws IOException
        Deprecated.
        since 4.0.0. UIStyle now renders itself.
        Write the style attribute. The value may be escaped (depending of the content).
        Throws:
        IOException
      • getContentTypeWithCharSet

        public String getContentTypeWithCharSet()
      • startCDATA

        public void startCDATA()
                        throws IOException
        Overrides:
        startCDATA in class javax.faces.context.ResponseWriter
        Throws:
        IOException
      • endCDATA

        public void endCDATA()
                      throws IOException
        Overrides:
        endCDATA in class javax.faces.context.ResponseWriter
        Throws:
        IOException