Browse Source

Previous commit would have caused compile error, unless others included as well.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059215 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_1rc1old
Andreas L. Delmelle 13 years ago
parent
commit
503980704c
1 changed files with 31 additions and 31 deletions
  1. 31
    31
      src/java/org/apache/fop/area/Trait.java

+ 31
- 31
src/java/org/apache/fop/area/Trait.java View File

* Internal link trait. * Internal link trait.
* Contains the PageViewport key and the PROD_ID of the target area * Contains the PageViewport key and the PROD_ID of the target area
*/ */
public static final int INTERNAL_LINK = 1;
public static final Integer INTERNAL_LINK = 1;


/** * External link. A URL link to an external resource. */ /** * External link. A URL link to an external resource. */
public static final int EXTERNAL_LINK = 2;
public static final Integer EXTERNAL_LINK = 2;


/** The font triplet for the current font. */ /** The font triplet for the current font. */
public static final int FONT = 3;
public static final Integer FONT = 3;


/** Font size for the current font. */ /** Font size for the current font. */
public static final int FONT_SIZE = 4;
public static final Integer FONT_SIZE = 4;


/** The current color. */ /** The current color. */
public static final int COLOR = 7;
public static final Integer COLOR = 7;


/** The ID of the FO that produced an area. */ /** The ID of the FO that produced an area. */
public static final int PROD_ID = 8;
public static final Integer PROD_ID = 8;


/** Background trait for an area. */ /** Background trait for an area. */
public static final int BACKGROUND = 9;
public static final Integer BACKGROUND = 9;


/** Underline trait used when rendering inline parent. */ /** Underline trait used when rendering inline parent. */
public static final int UNDERLINE = 10;
public static final Integer UNDERLINE = 10;


/** Overline trait used when rendering inline parent. */ /** Overline trait used when rendering inline parent. */
public static final int OVERLINE = 11;
public static final Integer OVERLINE = 11;


/** Linethrough trait used when rendering inline parent. */ /** Linethrough trait used when rendering inline parent. */
public static final int LINETHROUGH = 12;
public static final Integer LINETHROUGH = 12;


/** Shadow offset. */ /** Shadow offset. */
//public static final Integer OFFSET = new Integer(13); //public static final Integer OFFSET = new Integer(13);
//public static final Integer SHADOW = new Integer(14); //public static final Integer SHADOW = new Integer(14);


/** The border start. */ /** The border start. */
public static final int BORDER_START = 15;
public static final Integer BORDER_START = 15;


/** The border end. */ /** The border end. */
public static final int BORDER_END = 16;
public static final Integer BORDER_END = 16;


/** The border before. */ /** The border before. */
public static final int BORDER_BEFORE = 17;
public static final Integer BORDER_BEFORE = 17;


/** The border after. */ /** The border after. */
public static final int BORDER_AFTER = 18;
public static final Integer BORDER_AFTER = 18;


/** The padding start. */ /** The padding start. */
public static final int PADDING_START = 19;
public static final Integer PADDING_START = 19;


/** The padding end. */ /** The padding end. */
public static final int PADDING_END = 20;
public static final Integer PADDING_END = 20;


/** The padding before. */ /** The padding before. */
public static final int PADDING_BEFORE = 21;
public static final Integer PADDING_BEFORE = 21;


/** The padding after. */ /** The padding after. */
public static final int PADDING_AFTER = 22;
public static final Integer PADDING_AFTER = 22;


/** The space start. */ /** The space start. */
public static final int SPACE_START = 23;
public static final Integer SPACE_START = 23;


/** The space end. */ /** The space end. */
public static final int SPACE_END = 24;
public static final Integer SPACE_END = 24;


/** break before */ /** break before */
//public static final Integer BREAK_BEFORE = new Integer(25); //public static final Integer BREAK_BEFORE = new Integer(25);
//public static final Integer BREAK_AFTER = new Integer(26); //public static final Integer BREAK_AFTER = new Integer(26);


/** The start-indent trait. */ /** The start-indent trait. */
public static final int START_INDENT = 27;
public static final Integer START_INDENT = 27;


/** The end-indent trait. */ /** The end-indent trait. */
public static final int END_INDENT = 28;
public static final Integer END_INDENT = 28;


/** The space-before trait. */ /** The space-before trait. */
public static final int SPACE_BEFORE = 29;
public static final Integer SPACE_BEFORE = 29;


/** The space-after trait. */ /** The space-after trait. */
public static final int SPACE_AFTER = 30;
public static final Integer SPACE_AFTER = 30;


/** The is-reference-area trait. */ /** The is-reference-area trait. */
public static final int IS_REFERENCE_AREA = 31;
public static final Integer IS_REFERENCE_AREA = 31;


/** The is-viewport-area trait. */ /** The is-viewport-area trait. */
public static final int IS_VIEWPORT_AREA = 32;
public static final Integer IS_VIEWPORT_AREA = 32;


/** Blinking trait used when rendering inline parent. */ /** Blinking trait used when rendering inline parent. */
public static final int BLINK = 33;
public static final Integer BLINK = 33;


/** Trait for color of underline decorations when rendering inline parent. */ /** Trait for color of underline decorations when rendering inline parent. */
public static final int UNDERLINE_COLOR = 34;
public static final Integer UNDERLINE_COLOR = 34;
/** Trait for color of overline decorations when rendering inline parent. */ /** Trait for color of overline decorations when rendering inline parent. */
public static final int OVERLINE_COLOR = 35;
public static final Integer OVERLINE_COLOR = 35;
/** Trait for color of linethrough decorations when rendering inline parent. */ /** Trait for color of linethrough decorations when rendering inline parent. */
public static final int LINETHROUGH_COLOR = 36;
public static final Integer LINETHROUGH_COLOR = 36;


/** The ptr trait. Used for accessibility */ /** The ptr trait. Used for accessibility */
public static final int PTR = 37;
public static final Integer PTR = 37;


/** Maximum value used by trait keys */ /** Maximum value used by trait keys */
public static final int MAX_TRAIT_KEY = 37; public static final int MAX_TRAIT_KEY = 37;

Loading…
Cancel
Save