You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MultiToggle.java 850B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * $Id$
  3. * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
  4. * For details on use and redistribution please refer to the
  5. * LICENSE file included with these sources.
  6. */
  7. package org.apache.fop.fo.flow;
  8. // FOP
  9. import org.apache.fop.fo.*;
  10. import org.apache.fop.fo.flow.*;
  11. import org.apache.fop.fo.properties.*;
  12. import org.apache.fop.layout.*;
  13. import org.apache.fop.apps.FOPException;
  14. /**
  15. */
  16. public class MultiToggle extends ToBeImplementedElement {
  17. public MultiToggle(FONode parent) {
  18. super(parent);
  19. }
  20. public Status layout(Area area) throws FOPException {
  21. // Common Accessibility Properties
  22. AccessibilityProps mAccProps = propMgr.getAccessibilityProps();
  23. // this.properties.get("id");
  24. // this.properties.get("switch-to");
  25. return super.layout(area);
  26. }
  27. }