|
|
|
@ -132,15 +132,6 @@ public class FactoryProperties {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void createParagraph(Paragraph p, ChainedProperties props) { |
|
|
|
|
String value = props.getProperty("align"); |
|
|
|
|
if (value != null) { |
|
|
|
|
if (value.equalsIgnoreCase("center")) |
|
|
|
|
p.setAlignment(Element.ALIGN_CENTER); |
|
|
|
|
else if (value.equalsIgnoreCase("right")) |
|
|
|
|
p.setAlignment(Element.ALIGN_RIGHT); |
|
|
|
|
else if (value.equalsIgnoreCase("justify")) |
|
|
|
|
p.setAlignment(Element.ALIGN_JUSTIFIED); |
|
|
|
|
} |
|
|
|
|
Map<String, String> bgAttrMap = BackgroundUtil.parseBgAttr4BlockTag(props); |
|
|
|
|
if (null != bgAttrMap) { |
|
|
|
|
for (Map.Entry<String, String> entry : bgAttrMap.entrySet()) { |
|
|
|
@ -174,7 +165,7 @@ public class FactoryProperties {
|
|
|
|
|
|
|
|
|
|
p.setHyphenation(getHyphenation(props)); |
|
|
|
|
setParagraphLeading(p, props.getProperty("leading")); |
|
|
|
|
value = props.getProperty("before"); |
|
|
|
|
String value = props.getProperty("before"); |
|
|
|
|
if (value != null) { |
|
|
|
|
try { |
|
|
|
|
p.setSpacingBefore(Float.parseFloat(value)); |
|
|
|
|