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 MultiToggle 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 MultiToggle(parent, propertyList, systemId, line, column); 67 } 68 69 } 70 71 public static FObj.Maker maker() { 72 return new MultiToggle.Maker(); 73 } 74 75 protected MultiToggle(FObj parent, PropertyList propertyList, 76 String systemId, int line, int column) 77 throws FOPException { 78 super(parent, propertyList, systemId, line, column); 79 } 80 81 public String getName() { 82 return "fo:multi-toggle"; 83 } 84 85 public int layout(Area area) throws FOPException { 86 87 AccessibilityProps mAccProps = propMgr.getAccessibilityProps(); 89 90 93 return super.layout(area); 94 } 95 } 96 | Popular Tags |