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 MultiCase 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 MultiCase(parent, propertyList, systemId, line, column); 67 } 68 } 69 70 public static FObj.Maker maker() { 71 return new MultiCase.Maker(); 72 } 73 74 protected MultiCase(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:multi-case"; 82 } 83 84 public int layout(Area area) throws FOPException { 85 86 AccessibilityProps mAccProps = propMgr.getAccessibilityProps(); 88 89 94 return super.layout(area); 95 } 96 } 97 | Popular Tags |