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.

ExtensionArea.java 687B

12345678910111213141516171819202122232425262728293031323334
  1. /* $Id$
  2. * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
  3. * For details on use and redistribution please refer to the
  4. * LICENSE file included with these sources.
  5. */
  6. package org.apache.fop.layout;
  7. import org.apache.fop.fo.*;
  8. import org.apache.fop.extensions.*;
  9. import org.apache.fop.render.*;
  10. public class ExtensionArea extends Area
  11. {
  12. private ExtensionObj _extensionObj;
  13. public ExtensionArea (ExtensionObj obj) {
  14. super(null);
  15. _extensionObj = obj;
  16. }
  17. public FObj getExtensionObj()
  18. {
  19. return _extensionObj;
  20. }
  21. public void render(Renderer renderer)
  22. {
  23. // renderer.renderExtensionArea(this);
  24. }
  25. }