1 51 package org.apache.fop.fo.flow; 52 53 import org.apache.fop.fo.*; 55 import org.apache.fop.layout.*; 56 import org.apache.fop.apps.FOPException; 57 58 60 public class BidiOverride extends ToBeImplementedElement { 61 62 public static class Maker extends FObj.Maker { 63 public FObj make(FObj parent, PropertyList propertyList, 64 String systemId, int line, int column) 65 throws FOPException { 66 return new BidiOverride(parent, propertyList, systemId, line, column); 67 } 68 } 69 70 public static FObj.Maker maker() { 71 return new BidiOverride.Maker(); 72 } 73 74 protected BidiOverride(FObj parent, PropertyList propertyList, 75 String systemId, int line, int column) 76 throws FOPException { 77 super(parent, propertyList, systemId, line, column); 78 } 79 80 public String getName() { 81 return "fo:bidi-override"; 82 } 83 84 public int layout(Area area) throws FOPException { 85 86 AuralProps mAurProps = propMgr.getAuralProps(); 88 89 92 RelativePositionProps mProps = propMgr.getRelativePositionProps(); 94 95 107 return super.layout(area); 108 } 109 } 110 | Popular Tags |