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.

FODimension.java 547B

1234567891011121314151617181920212223242526
  1. /*
  2. * $Id$
  3. * Copyright (C) 2001-2002 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.datatypes;
  8. /**
  9. * This datatype hold a pair of resolved lengths,
  10. * specifiying the dimensions in
  11. * both inline and block-progression-directions.
  12. */
  13. public class FODimension {
  14. public int ipd;
  15. public int bpd;
  16. public FODimension(int ipd, int bpd) {
  17. this.ipd = ipd;
  18. this.bpd = bpd;
  19. }
  20. }