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.

DisplaySpace.java 460B

1234567891011121314151617181920212223
  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.layout;
  8. import org.apache.fop.render.Renderer;
  9. public class DisplaySpace extends Space {
  10. private int size;
  11. public DisplaySpace(int size) {
  12. this.size = size;
  13. }
  14. public int getSize() {
  15. return size;
  16. }
  17. }