aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/flow/ListItemLabel.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/fop/fo/flow/ListItemLabel.java')
-rw-r--r--src/org/apache/fop/fo/flow/ListItemLabel.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/org/apache/fop/fo/flow/ListItemLabel.java b/src/org/apache/fop/fo/flow/ListItemLabel.java
index da2ef5d30..3115b3406 100644
--- a/src/org/apache/fop/fo/flow/ListItemLabel.java
+++ b/src/org/apache/fop/fo/flow/ListItemLabel.java
@@ -13,6 +13,7 @@ import org.apache.fop.fo.properties.*;
import org.apache.fop.layout.*;
import org.apache.fop.layout.FontState;
import org.apache.fop.apps.FOPException;
+import org.apache.fop.layoutmgr.list.Item;
// Java
import java.util.Enumeration;
@@ -23,7 +24,12 @@ public class ListItemLabel extends FObj {
super(parent);
}
- public void setup() throws FOPException {
+ public Item getItemLayoutManager() {
+ Item itemLabel = new Item(this);
+ return itemLabel;
+ }
+
+ public void setup() {
// Common Accessibility Properties
AccessibilityProps mAccProps = propMgr.getAccessibilityProps();