Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Unknown.java 923B

1234567891011121314151617181920212223242526272829303132333435363738
  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;
  8. // FOP
  9. import org.apache.fop.fo.*;
  10. import org.apache.fop.layout.*;
  11. import org.apache.fop.fo.flow.*;
  12. import org.apache.fop.fo.properties.*;
  13. import org.apache.fop.apps.FOPException;
  14. /**
  15. * This represents an unknown element.
  16. * For example with unsupported namespaces.
  17. * This prevents any further problems arising from the unknown
  18. * data.
  19. */
  20. public class Unknown extends FONode {
  21. public static class Maker extends ElementMapping.Maker {
  22. public FONode make(FONode parent) {
  23. return new Unknown(parent);
  24. }
  25. }
  26. public Unknown(FONode parent) {
  27. super(parent);
  28. }
  29. public void setup() {
  30. getLogger().debug("Layout Unknown element");
  31. }
  32. }