com.helger.pdflayout.base.IPLHasOutline Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-pdf-layout Show documentation
Show all versions of ph-pdf-layout Show documentation
Library for creating nicely layouted PDF documents based on PDFBox
package com.helger.pdflayout.base;
public interface IPLHasOutline
{
default float getFullTop ()
{
return 0;
}
default float getFullRight ()
{
return 0;
}
default float getFullBottom ()
{
return 0;
}
default float getFullLeft ()
{
return 0;
}
default float getFullXSum ()
{
return 0;
}
default float getFullYSum ()
{
return 0;
}
}