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.

InlineProps.java 568B

12345678910111213141516171819202122232425
  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.traits;
  8. /**
  9. * Store all inline "margin" related properties
  10. * Public "structure" allows direct member access.
  11. */
  12. public class InlineProps {
  13. public int marginTop;
  14. public int marginBottom;
  15. public int marginLeft;
  16. public int marginRight;
  17. public SpaceVal spaceStart;
  18. public SpaceVal spaceEnd;
  19. public InlineProps() {}
  20. }