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.

1234567891011121314151617181920212223242526
  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.area;
  8. /**
  9. * base object for all areas
  10. */
  11. public class Area {
  12. // stacking directions
  13. public static final int LR = 0;
  14. public static final int RL = 1;
  15. public static final int TB = 2;
  16. public static final int BT = 3;
  17. // orientations for reference areas
  18. public static final int ORIENT_0 = 0;
  19. public static final int ORIENT_90 = 1;
  20. public static final int ORIENT_180 = 2;
  21. public static final int ORIENT_270 = 3;
  22. }