Example usage for com.lowagie.text MarkedSection MarkedSection

List of usage examples for com.lowagie.text MarkedSection MarkedSection

Introduction

In this page you can find the example usage for com.lowagie.text MarkedSection MarkedSection.

Prototype

public MarkedSection(Section section) 

Source Link

Document

Creates a MarkedObject with a Section or Chapter object.

Usage

From source file:fr.opensagres.xdocreport.itext.extension.ExtendedChapter.java

License:Open Source License

public MarkedSection addMarkedSection() {
    MarkedSection section = new MarkedSection(new ExtendedSection(null, numberDepth + 1));
    add(section);/*from w  w  w  .  j a  v  a 2 s  .c o m*/
    return section;
}