All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lowagie.text.TableRectangle Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
package com.lowagie.text;

public class TableRectangle extends Rectangle {
    public TableRectangle(float llx, float lly, float urx, float ury) {
        super(llx, lly, urx, ury);
    }

    public TableRectangle(float urx, float ury) {
        super(urx, ury);
    }

    public TableRectangle(float llx, float lly, float urx, float ury, int rotation) {
        super(llx, lly, urx, ury, rotation);
    }

    public TableRectangle(float urx, float ury, int rotation) {
        super(urx, ury, rotation);
    }

    public TableRectangle(Rectangle rect) {
        super(rect);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy