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.

Property.java 1.0KB

123456789101112131415161718192021222324252627282930313233
  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. import java.io.Serializable;
  9. // properties should be serialized by the holder
  10. public class Property implements Serializable {
  11. public static final int ID_LINK = 0;
  12. public static final int INTERNAL_LINK = 1; //resolved
  13. public static final int EXTERNAL_LINK = 2;
  14. public static final int FONT_FAMILY = 3;
  15. public static final int FONT_SIZE = 4;
  16. public static final int FONT_WEIGHT = 5;
  17. public static final int FONT_STYLE = 6;
  18. public static final int COLOR = 7;
  19. public static final int ID_AREA = 8;
  20. public static final int BACKGROUND = 9;
  21. public static final int UNDERLINE = 10;
  22. public static final int OVERLINE = 11;
  23. public static final int LINETHROUGH = 12;
  24. public static final int OFFSET = 13;
  25. public static final int SHADOW = 14;
  26. public int propType;
  27. public Object data;
  28. }