first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
package net.sf.jasperreports.engine;
public interface JRCommonText extends JRCommonElement, JRBoxContainer {
public static final String MARKUP_NONE = "none";
public static final String MARKUP_STYLED_TEXT = "styled";
public static final String MARKUP_HTML = "html";
public static final String MARKUP_RTF = "rtf";
int getWidth();
int getHeight();
byte getRotation();
Byte getOwnRotation();
byte getLineSpacing();
Byte getOwnLineSpacing();
boolean isStyledText();
Boolean isOwnStyledText();
String getMarkup();
String getOwnMarkup();
int getFontSize();
}