aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/PropertyManager.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/fo/PropertyManager.java')
-rw-r--r--src/java/org/apache/fop/fo/PropertyManager.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/java/org/apache/fop/fo/PropertyManager.java b/src/java/org/apache/fop/fo/PropertyManager.java
index 6dbbc85ef..dc5d9f918 100644
--- a/src/java/org/apache/fop/fo/PropertyManager.java
+++ b/src/java/org/apache/fop/fo/PropertyManager.java
@@ -58,7 +58,7 @@ import java.awt.geom.Rectangle2D;
import org.apache.fop.area.CTM;
import org.apache.fop.datatypes.FODimension;
import org.apache.fop.layout.FontState;
-import org.apache.fop.layout.FontInfo;
+import org.apache.fop.control.Document;
import org.apache.fop.fo.properties.CommonBorderAndPadding;
import org.apache.fop.fo.properties.CommonMarginBlock;
import org.apache.fop.fo.properties.CommonMarginInline;
@@ -83,7 +83,7 @@ import org.apache.fop.fo.properties.CommonHyphenation;
public class PropertyManager {
private PropertyList properties;
- private FontInfo fontInfo = null;
+ private Document fontInfo = null;
private FontState fontState = null;
private CommonBorderAndPadding borderAndPadding = null;
private CommonHyphenation hyphProps = null;
@@ -122,7 +122,7 @@ public class PropertyManager {
* available.
* @param fontInfo available fonts
*/
- public void setFontInfo(FontInfo fontInfo) {
+ public void setFontInfo(Document fontInfo) {
this.fontInfo = fontInfo;
}
@@ -133,7 +133,7 @@ public class PropertyManager {
* @param fontInfo FontInfo to work with
* @return a FontState object
*/
- public FontState getFontState(FontInfo fontInfo) {
+ public FontState getFontState(Document fontInfo) {
if (fontState == null) {
if (fontInfo == null) {
fontInfo = this.fontInfo;
@@ -479,7 +479,7 @@ public class PropertyManager {
* @param fontInfo available fonts
* @return a TextInfo object
*/
- public TextInfo getTextLayoutProps(FontInfo fontInfo) {
+ public TextInfo getTextLayoutProps(Document fontInfo) {
if (textInfo == null) {
textInfo = new TextInfo();
textInfo.fs = getFontState(fontInfo);