Example usage for com.lowagie.text.pdf.draw DrawInterface DrawInterface

List of usage examples for com.lowagie.text.pdf.draw DrawInterface DrawInterface

Introduction

In this page you can find the example usage for com.lowagie.text.pdf.draw DrawInterface DrawInterface.

Prototype

DrawInterface

Source Link

Usage

From source file:nl.dykema.jxmlnote.report.pdf.PdfTab.java

License:Open Source License

public PdfTab(PdfReport rep, float nextTab) {
    super(new DrawInterface() {
        public void draw(PdfContentByte cn, float a1, float a2, float a3, float a4, float a5) {
            // draws nothing
        }/*from   ww  w.j  a v a2s.c om*/
    }, nextTab);
    _nextTab = nextTab;
}