16 lines
255 B
Java
16 lines
255 B
Java
package net.sf.jasperreports.engine.fill;
|
|
|
|
public interface JRMeasuredText {
|
|
float getLeadingOffset();
|
|
|
|
float getLineSpacingFactor();
|
|
|
|
float getTextHeight();
|
|
|
|
int getTextOffset();
|
|
|
|
boolean isLeftToRight();
|
|
|
|
String getTextSuffix();
|
|
}
|