1 51 package org.apache.fop.fo.flow; 52 53 import org.apache.fop.fo.*; 55 import org.apache.fop.apps.FOPException; 56 57 public class TableBody extends AbstractTableBody { 58 59 public static class Maker extends FObj.Maker { 60 public FObj make(FObj parent, PropertyList propertyList, 61 String systemId, int line, int column) 62 throws FOPException { 63 return new TableBody(parent, propertyList, systemId, line, column); 64 } 65 66 } 67 68 public static FObj.Maker maker() { 69 return new TableBody.Maker(); 70 } 71 72 public TableBody(FObj parent, PropertyList propertyList, 73 String systemId, int line, int column) 74 throws FOPException { 75 super(parent, propertyList, systemId, line, column); 76 } 77 78 public String getName() { 79 return "fo:table-body"; 80 } 81 82 } 83 | Popular Tags |