Package org.apache.maven.doxia.sink

Examples of org.apache.maven.doxia.sink.SinkEventAttributes


    private void tableHeaderCell( String text, String title )
    {
        if ( title != null )
        {
            SinkEventAttributes attributes = new SinkEventAttributeSet( SinkEventAttributes.TITLE, title );
            sink.tableHeaderCell( attributes );
        }
        else
        {
            sink.tableHeaderCell();
View Full Code Here

TOP

Related Classes of org.apache.maven.doxia.sink.SinkEventAttributes

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.