net.sf.tacos.markup
Interface IExtendedMarkupWriter

All Superinterfaces:
org.apache.tapestry.IMarkupWriter
All Known Implementing Classes:
ExtendedMarkupWriterImpl

public interface IExtendedMarkupWriter
extends org.apache.tapestry.IMarkupWriter

An easier to use IMarkupWriter.

Author:
Andreas Andreou

Method Summary
 IExtendedMarkupWriter create(String tag, String... attributes)
          Starts a new element and appends the given attributes and values.
 IExtendedMarkupWriter createEmpty(String tag, String... attributes)
          Starts an element that will not later be matched with an end() call ( this is useful for elements that do not need closing tags ) and appends the given attributes and values.
 
Methods inherited from interface org.apache.tapestry.IMarkupWriter
appendAttribute, appendAttribute, appendAttribute, appendAttributeRaw, attribute, attribute, attribute, attributeRaw, begin, beginEmpty, checkError, clearAttributes, close, closeTag, comment, end, end, flush, getAttribute, getContentType, getNestedWriter, hasAttribute, print, print, print, print, print, print, println, printRaw, printRaw, removeAttribute
 

Method Detail

createEmpty

IExtendedMarkupWriter createEmpty(String tag,
                                  String... attributes)
Starts an element that will not later be matched with an end() call ( this is useful for elements that do not need closing tags ) and appends the given attributes and values.

Parameters:
tag - The html tag to generate.
attributes - An alterating list of attributes and values.
Returns:
See Also:
IMarkupWriter.beginEmpty(String)

create

IExtendedMarkupWriter create(String tag,
                             String... attributes)
Starts a new element and appends the given attributes and values.

Parameters:
tag -
attributes -
Returns:
See Also:
IMarkupWriter.begin(String)


Copyright © 2005-2008 SourceForge.net. All Rights Reserved.