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.

Wrapper.java 689B

123456789101112131415161718192021222324252627282930
  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.apps.FOPException;
  11. import org.apache.fop.fo.properties.*;
  12. import org.apache.fop.layout.*;
  13. /**
  14. * Implementation for fo:wrapper formatting object.
  15. * The wrapper object serves as
  16. * a property holder for it's children objects.
  17. *
  18. * Content: (#PCDATA|%inline;|%block;)*
  19. * Properties: id
  20. */
  21. public class Wrapper extends FObjMixed {
  22. public Wrapper(FONode parent) {
  23. super(parent);
  24. }
  25. }