1 17 18 19 20 package org.apache.fop.render.rtf.rtflib.rtfdoc; 21 22 28 29 import java.io.IOException ; 31 32 import org.apache.fop.render.rtf.rtflib.rtfdoc.RtfElement; 34 35 38 public class RtfListStyle { 39 private RtfListItem rtfListItem; 40 41 45 public void setRtfListItem(RtfListItem item) { 46 rtfListItem = item; 47 } 48 49 53 public RtfListItem getRtfListItem() { 54 return rtfListItem; 55 } 56 57 61 public RtfList getRtfList() { 62 return rtfListItem.getParentList(); 63 } 64 65 70 public void writeListPrefix(RtfListItem item) 71 throws IOException { 72 } 73 78 public void writeParagraphPrefix(RtfElement element) 79 throws IOException { 80 } 81 82 87 public void writeLevelGroup(RtfElement element) 88 throws IOException { 89 } 90 } | Popular Tags |