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.

BlockProps.java 649B

12345678910111213141516171819202122232425
  1. /*
  2. * $Id$
  3. * Copyright (C) 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.traits;
  8. import org.apache.fop.datatypes.Length;
  9. /**
  10. * Store all block-level layout properties on an FO.
  11. * Public "structure" allows direct member access.
  12. */
  13. public class BlockProps {
  14. public int firstIndent; // text-indent
  15. public int lastIndent; // last-line-indent
  16. public int textAlign;
  17. public int textAlignLast;
  18. public int lineStackType; // line-stacking-strategy (enum)
  19. public BlockProps() {}
  20. }