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.

Constants.java 38KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /* $Id$ */
  18. package org.apache.fop.fo;
  19. /**
  20. * Definition of constants used throughout FOP.
  21. * There are sets of constants describing:
  22. * <ul>
  23. * <li>Input and output formats</li>
  24. * <li>Formatting objects (<em>FO_XXX</em>)</li>
  25. * <li>Formatting properties (<em>PR_XXX</em>)</li>
  26. * <li>Enumerated values used in formatting properties (<em>EN_XXX</em>)</li>
  27. * </ul>
  28. */
  29. public interface Constants {
  30. /** not set */
  31. int NOT_SET = 0;
  32. // element constants
  33. /** FObj base class */
  34. int FO_UNKNOWN_NODE = 0;
  35. /** FO element constant */
  36. int FO_BASIC_LINK = 1;
  37. /** FO element constant */
  38. int FO_BIDI_OVERRIDE = 2;
  39. /** FO element constant */
  40. int FO_BLOCK = 3;
  41. /** FO element constant */
  42. int FO_BLOCK_CONTAINER = 4;
  43. /** FO element constant - XSL 1.1 */
  44. int FO_BOOKMARK_TREE = 5;
  45. /** FO element constant - XSL 1.1 */
  46. int FO_BOOKMARK = 6;
  47. /** FO element constant - XSL 1.1 */
  48. int FO_BOOKMARK_TITLE = 7;
  49. /** FO element constant - XSL 1.1 */
  50. int FO_CHANGE_BAR_BEGIN = 8;
  51. /** FO element constant - XSL 1.1 */
  52. int FO_CHANGE_BAR_END = 9;
  53. /** FO element constant */
  54. int FO_CHARACTER = 10;
  55. /** FO element constant */
  56. int FO_COLOR_PROFILE = 11;
  57. /** FO element constant */
  58. int FO_CONDITIONAL_PAGE_MASTER_REFERENCE = 12;
  59. /** FO element constant */
  60. int FO_DECLARATIONS = 13;
  61. /** FO element constant */
  62. int FO_EXTERNAL_GRAPHIC = 14;
  63. /** FO element constant */
  64. int FO_FLOAT = 15;
  65. /** FO element constant */
  66. int FO_FLOW = 16;
  67. /** FO element constant - XSL 1.1 */
  68. int FO_FLOW_ASSIGNMENT = 17;
  69. /** FO element constant - XSL 1.1 */
  70. int FO_FLOW_MAP = 18;
  71. /** FO element constant - XSL 1.1 */
  72. int FO_FLOW_NAME_SPECIFIER = 19;
  73. /** FO element constant - XSL 1.1 */
  74. int FO_FLOW_SOURCE_LIST = 20;
  75. /** FO element constant - XSL 1.1 */
  76. int FO_FLOW_TARGET_LIST = 21;
  77. /** FO element constant - XSL 1.1 */
  78. int FO_FOLIO_PREFIX = 22;
  79. /** FO element constant - XSL 1.1 */
  80. int FO_FOLIO_SUFFIX = 23;
  81. /** FO element constant */
  82. int FO_FOOTNOTE = 24;
  83. /** FO element constant */
  84. int FO_FOOTNOTE_BODY = 25;
  85. /** FO element constant - XSL 1.1 */
  86. int FO_INDEX_KEY_REFERENCE = 26;
  87. /** FO element constant - XSL 1.1 */
  88. int FO_INDEX_PAGE_NUMBER_PREFIX = 27;
  89. /** FO element constant - XSL 1.1 */
  90. int FO_INDEX_PAGE_NUMBER_SUFFIX = 28;
  91. /** FO element constant - XSL 1.1 */
  92. int FO_INDEX_PAGE_CITATION_LIST = 29;
  93. /** FO element constant - XSL 1.1 */
  94. int FO_INDEX_PAGE_CITATION_LIST_SEPARATOR = 30;
  95. /** FO element constant - XSL 1.1 */
  96. int FO_INDEX_PAGE_CITATION_RANGE_SEPARATOR = 31;
  97. /** FO element constant - XSL 1.1 */
  98. int FO_INDEX_RANGE_BEGIN = 32;
  99. /** FO element constant - XSL 1.1 */
  100. int FO_INDEX_RANGE_END = 33;
  101. /** FO element constant */
  102. int FO_INITIAL_PROPERTY_SET = 34;
  103. /** FO element constant */
  104. int FO_INLINE = 35;
  105. /** FO element constant */
  106. int FO_INLINE_CONTAINER = 36;
  107. /** FO element constant */
  108. int FO_INSTREAM_FOREIGN_OBJECT = 37;
  109. /** FO element constant */
  110. int FO_LAYOUT_MASTER_SET = 38;
  111. /** FO element constant */
  112. int FO_LEADER = 39;
  113. /** FO element constant */
  114. int FO_LIST_BLOCK = 40;
  115. /** FO element constant */
  116. int FO_LIST_ITEM = 41;
  117. /** FO element constant */
  118. int FO_LIST_ITEM_BODY = 42;
  119. /** FO element constant */
  120. int FO_LIST_ITEM_LABEL = 43;
  121. /** FO element constant */
  122. int FO_MARKER = 44;
  123. /** FO element constant */
  124. int FO_MULTI_CASE = 45;
  125. /** FO element constant */
  126. int FO_MULTI_PROPERTIES = 46;
  127. /** FO element constant */
  128. int FO_MULTI_PROPERTY_SET = 47;
  129. /** FO element constant */
  130. int FO_MULTI_SWITCH = 48;
  131. /** FO element constant */
  132. int FO_MULTI_TOGGLE = 49;
  133. /** FO element constant */
  134. int FO_PAGE_NUMBER = 50;
  135. /** FO element constant */
  136. int FO_PAGE_NUMBER_CITATION = 51;
  137. /** FO element constant - XSL 1.1 */
  138. int FO_PAGE_NUMBER_CITATION_LAST = 52;
  139. /** FO element constant */
  140. int FO_PAGE_SEQUENCE = 53;
  141. /** FO element constant */
  142. int FO_PAGE_SEQUENCE_MASTER = 54;
  143. /** FO element constant - XSL 1.1 */
  144. int FO_PAGE_SEQUENCE_WRAPPER = 55;
  145. /** FO element constant */
  146. int FO_REGION_AFTER = 56;
  147. /** FO element constant */
  148. int FO_REGION_BEFORE = 57;
  149. /** FO element constant */
  150. int FO_REGION_BODY = 58;
  151. /** FO element constant */
  152. int FO_REGION_END = 59;
  153. /** FO element constant - XSL 1.1 */
  154. int FO_REGION_NAME_SPECIFIER = 60;
  155. /** FO element constant */
  156. int FO_REGION_START = 61;
  157. /** FO element constant */
  158. int FO_REPEATABLE_PAGE_MASTER_ALTERNATIVES = 62;
  159. /** FO element constant */
  160. int FO_REPEATABLE_PAGE_MASTER_REFERENCE = 63;
  161. /** FO element constant */
  162. int FO_RETRIEVE_MARKER = 64;
  163. /** FO element constant - XSL 1.1 */
  164. int FO_RETRIEVE_TABLE_MARKER = 65;
  165. /** FO element constant */
  166. int FO_ROOT = 66;
  167. /** FO element constant - XSL 1.1 */
  168. int FO_SCALING_VALUE_CITATION = 67;
  169. /** FO element constant */
  170. int FO_SIMPLE_PAGE_MASTER = 68;
  171. /** FO element constant */
  172. int FO_SINGLE_PAGE_MASTER_REFERENCE = 69;
  173. /** FO element constant */
  174. int FO_STATIC_CONTENT = 70;
  175. /** FO element constant */
  176. int FO_TABLE = 71;
  177. /** FO element constant */
  178. int FO_TABLE_AND_CAPTION = 72;
  179. /** FO element constant */
  180. int FO_TABLE_BODY = 73;
  181. /** FO element constant */
  182. int FO_TABLE_CAPTION = 74;
  183. /** FO element constant */
  184. int FO_TABLE_CELL = 75;
  185. /** FO element constant */
  186. int FO_TABLE_COLUMN = 76;
  187. /** FO element constant */
  188. int FO_TABLE_FOOTER = 77;
  189. /** FO element constant */
  190. int FO_TABLE_HEADER = 78;
  191. /** FO element constant */
  192. int FO_TABLE_ROW = 79;
  193. /** FO element constant */
  194. int FO_TITLE = 80;
  195. /** FO element constant */
  196. int FO_WRAPPER = 81;
  197. /** Number of FO element constants defined */
  198. int FRM_OBJ_COUNT = 81;
  199. // Masks
  200. /**
  201. * For compound properties the property constant value is shifted by this amount.
  202. * The low order bits hold the constant for the component property.
  203. */
  204. int COMPOUND_SHIFT = 9;
  205. /**
  206. * Mask that when applied to a compound property returns the constant of
  207. * the component property.
  208. */
  209. int PROPERTY_MASK = (1 << COMPOUND_SHIFT) - 1;
  210. /**
  211. * Mask that when applied to a compound property returns the constant of
  212. * the compound property.
  213. */
  214. int COMPOUND_MASK = ~PROPERTY_MASK;
  215. /** Number of compund properties defined */
  216. int COMPOUND_COUNT = 11;
  217. // property constants
  218. /** Property constant */
  219. int PR_ABSOLUTE_POSITION = 1;
  220. /** Property constant */
  221. int PR_ACTIVE_STATE = 2;
  222. /** Property constant */
  223. int PR_ALIGNMENT_ADJUST = 3;
  224. /** Property constant */
  225. int PR_ALIGNMENT_BASELINE = 4;
  226. /** Property constant */
  227. int PR_AUTO_RESTORE = 5;
  228. /** Property constant */
  229. int PR_AZIMUTH = 6;
  230. /** Property constant */
  231. int PR_BACKGROUND = 7;
  232. /** Property constant */
  233. int PR_BACKGROUND_ATTACHMENT = 8;
  234. /** Property constant */
  235. int PR_BACKGROUND_COLOR = 9;
  236. /** Property constant */
  237. int PR_BACKGROUND_IMAGE = 10;
  238. /** Property constant */
  239. int PR_BACKGROUND_POSITION = 11;
  240. /** Property constant */
  241. int PR_BACKGROUND_POSITION_HORIZONTAL = 12;
  242. /** Property constant */
  243. int PR_BACKGROUND_POSITION_VERTICAL = 13;
  244. /** Property constant */
  245. int PR_BACKGROUND_REPEAT = 14;
  246. /** Property constant */
  247. int PR_BASELINE_SHIFT = 15;
  248. /** Property constant */
  249. int PR_BLANK_OR_NOT_BLANK = 16;
  250. /** Property constant */
  251. int PR_BLOCK_PROGRESSION_DIMENSION = 17;
  252. /** Property constant */
  253. int PR_BORDER = 18;
  254. /** Property constant */
  255. int PR_BORDER_AFTER_COLOR = 19;
  256. /** Property constant */
  257. int PR_BORDER_AFTER_PRECEDENCE = 20;
  258. /** Property constant */
  259. int PR_BORDER_AFTER_STYLE = 21;
  260. /** Property constant */
  261. int PR_BORDER_AFTER_WIDTH = 22;
  262. /** Property constant */
  263. int PR_BORDER_BEFORE_COLOR = 23;
  264. /** Property constant */
  265. int PR_BORDER_BEFORE_PRECEDENCE = 24;
  266. /** Property constant */
  267. int PR_BORDER_BEFORE_STYLE = 25;
  268. /** Property constant */
  269. int PR_BORDER_BEFORE_WIDTH = 26;
  270. /** Property constant */
  271. int PR_BORDER_BOTTOM = 27;
  272. /** Property constant */
  273. int PR_BORDER_BOTTOM_COLOR = 28;
  274. /** Property constant */
  275. int PR_BORDER_BOTTOM_STYLE = 29;
  276. /** Property constant */
  277. int PR_BORDER_BOTTOM_WIDTH = 30;
  278. /** Property constant */
  279. int PR_BORDER_COLLAPSE = 31;
  280. /** Property constant */
  281. int PR_BORDER_COLOR = 32;
  282. /** Property constant */
  283. int PR_BORDER_END_COLOR = 33;
  284. /** Property constant */
  285. int PR_BORDER_END_PRECEDENCE = 34;
  286. /** Property constant */
  287. int PR_BORDER_END_STYLE = 35;
  288. /** Property constant */
  289. int PR_BORDER_END_WIDTH = 36;
  290. /** Property constant */
  291. int PR_BORDER_LEFT = 37;
  292. /** Property constant */
  293. int PR_BORDER_LEFT_COLOR = 38;
  294. /** Property constant */
  295. int PR_BORDER_LEFT_STYLE = 39;
  296. /** Property constant */
  297. int PR_BORDER_LEFT_WIDTH = 40;
  298. /** Property constant */
  299. int PR_BORDER_RIGHT = 41;
  300. /** Property constant */
  301. int PR_BORDER_RIGHT_COLOR = 42;
  302. /** Property constant */
  303. int PR_BORDER_RIGHT_STYLE = 43;
  304. /** Property constant */
  305. int PR_BORDER_RIGHT_WIDTH = 44;
  306. /** Property constant */
  307. int PR_BORDER_SEPARATION = 45;
  308. /** Property constant */
  309. int PR_BORDER_SPACING = 46;
  310. /** Property constant */
  311. int PR_BORDER_START_COLOR = 47;
  312. /** Property constant */
  313. int PR_BORDER_START_PRECEDENCE = 48;
  314. /** Property constant */
  315. int PR_BORDER_START_STYLE = 49;
  316. /** Property constant */
  317. int PR_BORDER_START_WIDTH = 50;
  318. /** Property constant */
  319. int PR_BORDER_STYLE = 51;
  320. /** Property constant */
  321. int PR_BORDER_TOP = 52;
  322. /** Property constant */
  323. int PR_BORDER_TOP_COLOR = 53;
  324. /** Property constant */
  325. int PR_BORDER_TOP_STYLE = 54;
  326. /** Property constant */
  327. int PR_BORDER_TOP_WIDTH = 55;
  328. /** Property constant */
  329. int PR_BORDER_WIDTH = 56;
  330. /** Property constant */
  331. int PR_BOTTOM = 57;
  332. /** Property constant */
  333. int PR_BREAK_AFTER = 58;
  334. /** Property constant */
  335. int PR_BREAK_BEFORE = 59;
  336. /** Property constant */
  337. int PR_CAPTION_SIDE = 60;
  338. /** Property constant */
  339. int PR_CASE_NAME = 61;
  340. /** Property constant */
  341. int PR_CASE_TITLE = 62;
  342. /** Property constant - XSL 1.1 */
  343. int PR_CHANGE_BAR_CLASS = 63;
  344. /** Property constant - XSL 1.1 */
  345. int PR_CHANGE_BAR_COLOR = 64;
  346. /** Property constant - XSL 1.1 */
  347. int PR_CHANGE_BAR_OFFSET = 65;
  348. /** Property constant - XSL 1.1 */
  349. int PR_CHANGE_BAR_PLACEMENT = 66;
  350. /** Property constant - XSL 1.1 */
  351. int PR_CHANGE_BAR_STYLE = 67;
  352. /** Property constant - XSL 1.1 */
  353. int PR_CHANGE_BAR_WIDTH = 68;
  354. /** Property constant */
  355. int PR_CHARACTER = 69;
  356. /** Property constant */
  357. int PR_CLEAR = 70;
  358. /** Property constant */
  359. int PR_CLIP = 71;
  360. /** Property constant */
  361. int PR_COLOR = 72;
  362. /** Property constant */
  363. int PR_COLOR_PROFILE_NAME = 73;
  364. /** Property constant */
  365. int PR_COLUMN_COUNT = 74;
  366. /** Property constant */
  367. int PR_COLUMN_GAP = 75;
  368. /** Property constant */
  369. int PR_COLUMN_NUMBER = 76;
  370. /** Property constant */
  371. int PR_COLUMN_WIDTH = 77;
  372. /** Property constant */
  373. int PR_CONTENT_HEIGHT = 78;
  374. /** Property constant */
  375. int PR_CONTENT_TYPE = 79;
  376. /** Property constant */
  377. int PR_CONTENT_WIDTH = 80;
  378. /** Property constant */
  379. int PR_COUNTRY = 81;
  380. /** Property constant */
  381. int PR_CUE = 82;
  382. /** Property constant */
  383. int PR_CUE_AFTER = 83;
  384. /** Property constant */
  385. int PR_CUE_BEFORE = 84;
  386. /** Property constant */
  387. int PR_DESTINATION_PLACEMENT_OFFSET = 85;
  388. /** Property constant */
  389. int PR_DIRECTION = 86;
  390. /** Property constant */
  391. int PR_DISPLAY_ALIGN = 87;
  392. /** Property constant */
  393. int PR_DOMINANT_BASELINE = 88;
  394. /** Property constant */
  395. int PR_ELEVATION = 89;
  396. /** Property constant */
  397. int PR_EMPTY_CELLS = 90;
  398. /** Property constant */
  399. int PR_END_INDENT = 91;
  400. /** Property constant */
  401. int PR_ENDS_ROW = 92;
  402. /** Property constant */
  403. int PR_EXTENT = 93;
  404. /** Property constant */
  405. int PR_EXTERNAL_DESTINATION = 94;
  406. /** Property constant */
  407. int PR_FLOAT = 95;
  408. /** Property constant -- XSL 1.1 */
  409. int PR_FLOW_MAP_NAME = 96;
  410. /** Property constant -- XSL 1.1 */
  411. int PR_FLOW_MAP_REFERENCE = 97;
  412. /** Property constant */
  413. int PR_FLOW_NAME = 98;
  414. /** Property constant -- XSL 1.1 */
  415. int PR_FLOW_NAME_REFERENCE = 99;
  416. /** Property constant */
  417. int PR_FONT = 100;
  418. /** Property constant */
  419. int PR_FONT_FAMILY = 101;
  420. /** Property constant */
  421. int PR_FONT_SELECTION_STRATEGY = 102;
  422. /** Property constant */
  423. int PR_FONT_SIZE = 103;
  424. /** Property constant */
  425. int PR_FONT_SIZE_ADJUST = 104;
  426. /** Property constant */
  427. int PR_FONT_STRETCH = 105;
  428. /** Property constant */
  429. int PR_FONT_STYLE = 106;
  430. /** Property constant */
  431. int PR_FONT_VARIANT = 107;
  432. /** Property constant */
  433. int PR_FONT_WEIGHT = 108;
  434. /** Property constant */
  435. int PR_FORCE_PAGE_COUNT = 109;
  436. /** Property constant */
  437. int PR_FORMAT = 110;
  438. /** Property constant */
  439. int PR_GLYPH_ORIENTATION_HORIZONTAL = 111;
  440. /** Property constant */
  441. int PR_GLYPH_ORIENTATION_VERTICAL = 112;
  442. /** Property constant */
  443. int PR_GROUPING_SEPARATOR = 113;
  444. /** Property constant */
  445. int PR_GROUPING_SIZE = 114;
  446. /** Property constant */
  447. int PR_HEIGHT = 115;
  448. /** Property constant */
  449. int PR_HYPHENATE = 116;
  450. /** Property constant */
  451. int PR_HYPHENATION_CHARACTER = 117;
  452. /** Property constant */
  453. int PR_HYPHENATION_KEEP = 118;
  454. /** Property constant */
  455. int PR_HYPHENATION_LADDER_COUNT = 119;
  456. /** Property constant */
  457. int PR_HYPHENATION_PUSH_CHARACTER_COUNT = 120;
  458. /** Property constant */
  459. int PR_HYPHENATION_REMAIN_CHARACTER_COUNT = 121;
  460. /** Property constant */
  461. int PR_ID = 122;
  462. /** Property constant */
  463. int PR_INDICATE_DESTINATION = 123;
  464. /** Property constant - XSL 1.1 */
  465. int PR_INDEX_CLASS = 124;
  466. /** Property constant - XSL 1.1 */
  467. int PR_INDEX_KEY = 125;
  468. /** Property constant */
  469. int PR_INITIAL_PAGE_NUMBER = 126;
  470. /** Property constant */
  471. int PR_INLINE_PROGRESSION_DIMENSION = 127;
  472. /** Property constant */
  473. int PR_INTERNAL_DESTINATION = 128;
  474. /** Property constant - XSL 1.1 */
  475. int PR_INTRINSIC_SCALE_VALUE = 129;
  476. /** Property constant */
  477. int PR_INTRUSION_DISPLACE = 130;
  478. /** Property constant */
  479. int PR_KEEP_TOGETHER = 131;
  480. /** Property constant */
  481. int PR_KEEP_WITH_NEXT = 132;
  482. /** Property constant */
  483. int PR_KEEP_WITH_PREVIOUS = 133;
  484. /** Property constant */
  485. int PR_LANGUAGE = 134;
  486. /** Property constant */
  487. int PR_LAST_LINE_END_INDENT = 135;
  488. /** Property constant */
  489. int PR_LEADER_ALIGNMENT = 136;
  490. /** Property constant */
  491. int PR_LEADER_LENGTH = 137;
  492. /** Property constant */
  493. int PR_LEADER_PATTERN = 138;
  494. /** Property constant */
  495. int PR_LEADER_PATTERN_WIDTH = 139;
  496. /** Property constant */
  497. int PR_LEFT = 140;
  498. /** Property constant */
  499. int PR_LETTER_SPACING = 141;
  500. /** Property constant */
  501. int PR_LETTER_VALUE = 142;
  502. /** Property constant */
  503. int PR_LINEFEED_TREATMENT = 143;
  504. /** Property constant */
  505. int PR_LINE_HEIGHT = 144;
  506. /** Property constant */
  507. int PR_LINE_HEIGHT_SHIFT_ADJUSTMENT = 145;
  508. /** Property constant */
  509. int PR_LINE_STACKING_STRATEGY = 146;
  510. /** Property constant */
  511. int PR_MARGIN = 147;
  512. /** Property constant */
  513. int PR_MARGIN_BOTTOM = 148;
  514. /** Property constant */
  515. int PR_MARGIN_LEFT = 149;
  516. /** Property constant */
  517. int PR_MARGIN_RIGHT = 150;
  518. /** Property constant */
  519. int PR_MARGIN_TOP = 151;
  520. /** Property constant */
  521. int PR_MARKER_CLASS_NAME = 152;
  522. /** Property constant */
  523. int PR_MASTER_NAME = 153;
  524. /** Property constant */
  525. int PR_MASTER_REFERENCE = 154;
  526. /** Property constant */
  527. int PR_MAX_HEIGHT = 155;
  528. /** Property constant */
  529. int PR_MAXIMUM_REPEATS = 156;
  530. /** Property constant */
  531. int PR_MAX_WIDTH = 157;
  532. /** Property constant - XSL 1.1 */
  533. int PR_MERGE_PAGES_ACROSS_INDEX_KEY_REFERENCES = 158;
  534. /** Property constant - XSL 1.1 */
  535. int PR_MERGE_RANGES_ACROSS_INDEX_KEY_REFERENCES = 159;
  536. /** Property constant - XSL 1.1 */
  537. int PR_MERGE_SEQUENTIAL_PAGE_NUMBERS = 160;
  538. /** Property constant */
  539. int PR_MEDIA_USAGE = 161;
  540. /** Property constant */
  541. int PR_MIN_HEIGHT = 162;
  542. /** Property constant */
  543. int PR_MIN_WIDTH = 163;
  544. /** Property constant */
  545. int PR_NUMBER_COLUMNS_REPEATED = 164;
  546. /** Property constant */
  547. int PR_NUMBER_COLUMNS_SPANNED = 165;
  548. /** Property constant */
  549. int PR_NUMBER_ROWS_SPANNED = 166;
  550. /** Property constant */
  551. int PR_ODD_OR_EVEN = 167;
  552. /** Property constant */
  553. int PR_ORPHANS = 168;
  554. /** Property constant */
  555. int PR_OVERFLOW = 169;
  556. /** Property constant */
  557. int PR_PADDING = 170;
  558. /** Property constant */
  559. int PR_PADDING_AFTER = 171;
  560. /** Property constant */
  561. int PR_PADDING_BEFORE = 172;
  562. /** Property constant */
  563. int PR_PADDING_BOTTOM = 173;
  564. /** Property constant */
  565. int PR_PADDING_END = 174;
  566. /** Property constant */
  567. int PR_PADDING_LEFT = 175;
  568. /** Property constant */
  569. int PR_PADDING_RIGHT = 176;
  570. /** Property constant */
  571. int PR_PADDING_START = 177;
  572. /** Property constant */
  573. int PR_PADDING_TOP = 178;
  574. /** Property constant */
  575. int PR_PAGE_BREAK_AFTER = 179;
  576. /** Property constant */
  577. int PR_PAGE_BREAK_BEFORE = 180;
  578. /** Property constant */
  579. int PR_PAGE_BREAK_INSIDE = 181;
  580. /** Property constant - XSL 1.1 */
  581. int PR_PAGE_CITATION_STRATEGY = 182;
  582. /** Property constant */
  583. int PR_PAGE_HEIGHT = 183;
  584. /** Property constant - XSL 1.1 */
  585. int PR_PAGE_NUMBER_TREATMENT = 184;
  586. /** Property constant */
  587. int PR_PAGE_POSITION = 185;
  588. /** Property constant */
  589. int PR_PAGE_WIDTH = 186;
  590. /** Property constant */
  591. int PR_PAUSE = 187;
  592. /** Property constant */
  593. int PR_PAUSE_AFTER = 188;
  594. /** Property constant */
  595. int PR_PAUSE_BEFORE = 189;
  596. /** Property constant */
  597. int PR_PITCH = 190;
  598. /** Property constant */
  599. int PR_PITCH_RANGE = 191;
  600. /** Property constant */
  601. int PR_PLAY_DURING = 192;
  602. /** Property constant */
  603. int PR_POSITION = 193;
  604. /** Property constant */
  605. int PR_PRECEDENCE = 194;
  606. /** Property constant */
  607. int PR_PROVISIONAL_DISTANCE_BETWEEN_STARTS = 195;
  608. /** Property constant */
  609. int PR_PROVISIONAL_LABEL_SEPARATION = 196;
  610. /** Property constant */
  611. int PR_REFERENCE_ORIENTATION = 197;
  612. /** Property constant */
  613. int PR_REF_ID = 198;
  614. /** Property constant */
  615. int PR_REGION_NAME = 199;
  616. /** Property constant - XSL 1.1 */
  617. int PR_REGION_NAME_REFERENCE = 200;
  618. /** Property constant - XSL 1.1 */
  619. int PR_REF_INDEX_KEY = 201;
  620. /** Property constant */
  621. int PR_RELATIVE_ALIGN = 202;
  622. /** Property constant */
  623. int PR_RELATIVE_POSITION = 203;
  624. /** Property constant */
  625. int PR_RENDERING_INTENT = 204;
  626. /** Property constant */
  627. int PR_RETRIEVE_BOUNDARY = 205;
  628. /** Property constant - XSL 1.1 */
  629. int PR_RETRIEVE_BOUNDARY_WITHIN_TABLE = 206;
  630. /** Property constant */
  631. int PR_RETRIEVE_CLASS_NAME = 207;
  632. /** Property constant */
  633. int PR_RETRIEVE_POSITION = 208;
  634. /** Property constant - XSL 1.1 */
  635. int PR_RETRIEVE_POSITION_WITHIN_TABLE = 209;
  636. /** Property constant */
  637. int PR_RICHNESS = 210;
  638. /** Property constant */
  639. int PR_RIGHT = 211;
  640. /** Property constant */
  641. int PR_ROLE = 212;
  642. /** Property constant */
  643. int PR_RULE_STYLE = 213;
  644. /** Property constant */
  645. int PR_RULE_THICKNESS = 214;
  646. /** Property constant */
  647. int PR_SCALING = 215;
  648. /** Property constant */
  649. int PR_SCALING_METHOD = 216;
  650. /** Property constant */
  651. int PR_SCORE_SPACES = 217;
  652. /** Property constant */
  653. int PR_SCRIPT = 218;
  654. /** Property constant */
  655. int PR_SHOW_DESTINATION = 219;
  656. /** Property constant */
  657. int PR_SIZE = 220;
  658. /** Property constant */
  659. int PR_SOURCE_DOCUMENT = 221;
  660. /** Property constant */
  661. int PR_SPACE_AFTER = 222;
  662. /** Property constant */
  663. int PR_SPACE_BEFORE = 223;
  664. /** Property constant */
  665. int PR_SPACE_END = 224;
  666. /** Property constant */
  667. int PR_SPACE_START = 225;
  668. /** Property constant */
  669. int PR_SPAN = 226;
  670. /** Property constant */
  671. int PR_SPEAK = 227;
  672. /** Property constant */
  673. int PR_SPEAK_HEADER = 228;
  674. /** Property constant */
  675. int PR_SPEAK_NUMERAL = 229;
  676. /** Property constant */
  677. int PR_SPEAK_PUNCTUATION = 230;
  678. /** Property constant */
  679. int PR_SPEECH_RATE = 231;
  680. /** Property constant */
  681. int PR_SRC = 232;
  682. /** Property constant */
  683. int PR_START_INDENT = 233;
  684. /** Property constant */
  685. int PR_STARTING_STATE = 234;
  686. /** Property constant */
  687. int PR_STARTS_ROW = 235;
  688. /** Property constant */
  689. int PR_STRESS = 236;
  690. /** Property constant */
  691. int PR_SUPPRESS_AT_LINE_BREAK = 237;
  692. /** Property constant */
  693. int PR_SWITCH_TO = 238;
  694. /** Property constant */
  695. int PR_TABLE_LAYOUT = 239;
  696. /** Property constant */
  697. int PR_TABLE_OMIT_FOOTER_AT_BREAK = 240;
  698. /** Property constant */
  699. int PR_TABLE_OMIT_HEADER_AT_BREAK = 241;
  700. /** Property constant */
  701. int PR_TARGET_PRESENTATION_CONTEXT = 242;
  702. /** Property constant */
  703. int PR_TARGET_PROCESSING_CONTEXT = 243;
  704. /** Property constant */
  705. int PR_TARGET_STYLESHEET = 244;
  706. /** Property constant */
  707. int PR_TEXT_ALIGN = 245;
  708. /** Property constant */
  709. int PR_TEXT_ALIGN_LAST = 246;
  710. /** Property constant */
  711. int PR_TEXT_ALTITUDE = 247;
  712. /** Property constant */
  713. int PR_TEXT_DECORATION = 248;
  714. /** Property constant */
  715. int PR_TEXT_DEPTH = 249;
  716. /** Property constant */
  717. int PR_TEXT_INDENT = 250;
  718. /** Property constant */
  719. int PR_TEXT_SHADOW = 251;
  720. /** Property constant */
  721. int PR_TEXT_TRANSFORM = 252;
  722. /** Property constant */
  723. int PR_TOP = 253;
  724. /** Property constant */
  725. int PR_TREAT_AS_WORD_SPACE = 254;
  726. /** Property constant */
  727. int PR_UNICODE_BIDI = 255;
  728. /** Property constant */
  729. int PR_VERTICAL_ALIGN = 256;
  730. /** Property constant */
  731. int PR_VISIBILITY = 257;
  732. /** Property constant */
  733. int PR_VOICE_FAMILY = 258;
  734. /** Property constant */
  735. int PR_VOLUME = 259;
  736. /** Property constant */
  737. int PR_WHITE_SPACE = 260;
  738. /** Property constant */
  739. int PR_WHITE_SPACE_COLLAPSE = 261;
  740. /** Property constant */
  741. int PR_WHITE_SPACE_TREATMENT = 262;
  742. /** Property constant */
  743. int PR_WIDOWS = 263;
  744. /** Property constant */
  745. int PR_WIDTH = 264;
  746. /** Property constant */
  747. int PR_WORD_SPACING = 265;
  748. /** Property constant */
  749. int PR_WRAP_OPTION = 266;
  750. /** Property constant */
  751. int PR_WRITING_MODE = 267;
  752. /** Property constant */
  753. int PR_XML_LANG = 268;
  754. /** Property constant */
  755. int PR_Z_INDEX = 269;
  756. /** Property constant - FOP proprietary: Custom extension for line alignment */
  757. int PR_X_BLOCK_PROGRESSION_UNIT = 270;
  758. /** Property constant - FOP proprietary: limit for widow content in lists and tables */
  759. int PR_X_WIDOW_CONTENT_LIMIT = 271;
  760. /** Property constant - FOP proprietary: limit for orphan content in lists and tables */
  761. int PR_X_ORPHAN_CONTENT_LIMIT = 272;
  762. /**
  763. * Property constant - FOP proprietary: disable balancing of columns in
  764. * multi-column layouts.
  765. */
  766. int PR_X_DISABLE_COLUMN_BALANCING = 273;
  767. /**
  768. * Property constant - FOP proprietary: alternative text for e-g and i-f-o.
  769. * Used for accessibility.
  770. */
  771. int PR_X_ALT_TEXT = 274;
  772. /** Property constant - FOP proprietary prototype (in XSL-FO 2.0 Requirements) */
  773. int PR_X_XML_BASE = 275;
  774. /** Number of property constants defined */
  775. int PROPERTY_COUNT = 275;
  776. // compound property constants
  777. /** Property constant for compound property */
  778. int CP_BLOCK_PROGRESSION_DIRECTION = 1 << COMPOUND_SHIFT;
  779. /** Property constant for compound property */
  780. int CP_CONDITIONALITY = 2 << COMPOUND_SHIFT;
  781. /** Property constant for compound property */
  782. int CP_INLINE_PROGRESSION_DIRECTION = 3 << COMPOUND_SHIFT;
  783. /** Property constant for compound property */
  784. int CP_LENGTH = 4 << COMPOUND_SHIFT;
  785. /** Property constant for compound property */
  786. int CP_MAXIMUM = 5 << COMPOUND_SHIFT;
  787. /** Property constant for compound property */
  788. int CP_MINIMUM = 6 << COMPOUND_SHIFT;
  789. /** Property constant for compound property */
  790. int CP_OPTIMUM = 7 << COMPOUND_SHIFT;
  791. /** Property constant for compound property */
  792. int CP_PRECEDENCE = 8 << COMPOUND_SHIFT;
  793. /** Property constant for compound property */
  794. int CP_WITHIN_COLUMN = 9 << COMPOUND_SHIFT;
  795. /** Property constant for compound property */
  796. int CP_WITHIN_LINE = 10 << COMPOUND_SHIFT;
  797. /** Property constant for compound property */
  798. int CP_WITHIN_PAGE = 11 << COMPOUND_SHIFT;
  799. // Enumeration constants
  800. /** Enumeration constant */
  801. int EN_ABSOLUTE = 1;
  802. /** Enumeration constant */
  803. int EN_ABSOLUTE_COLORMETRIC = 2;
  804. /** Enumeration constant */
  805. int EN_AFTER = 3;
  806. /** Enumeration constant */
  807. int EN_AFTER_EDGE = 4;
  808. /** Enumeration constant */
  809. int EN_ALL = 5;
  810. /** Enumeration constant */
  811. int EN_ALPHABETIC = 6;
  812. /** Enumeration constant */
  813. int EN_ALWAYS = 7;
  814. /** Enumeration constant */
  815. int EN_ANY = 8;
  816. /** Enumeration constant */
  817. int EN_AUTO = 9;
  818. /** Enumeration constant */
  819. int EN_AUTO_EVEN = 10;
  820. /** Enumeration constant */
  821. int EN_AUTO_ODD = 11;
  822. /** Enumeration constant */
  823. int EN_BASELINE = 12;
  824. /** Enumeration constant */
  825. int EN_BEFORE = 13;
  826. /** Enumeration constant */
  827. int EN_BEFORE_EDGE = 14;
  828. /** Enumeration constant */
  829. int EN_BIDI_OVERRIDE = 15;
  830. /** Enumeration constant */
  831. int EN_BLANK = 16;
  832. /** Enumeration constant */
  833. int EN_BLINK = 17;
  834. /** Enumeration constant */
  835. int EN_BLOCK = 18;
  836. /** Enumeration constant */
  837. int EN_BOTH = 19;
  838. /** Enumeration constant */
  839. int EN_BOTTOM = 20;
  840. /** Enumeration constant */
  841. int EN_BOUNDED_IN_ONE_DIMENSION = 21;
  842. /** Enumeration constant */
  843. int EN_CAPITALIZE = 22;
  844. /** Enumeration constant */
  845. int EN_CENTER = 23;
  846. /** Enumeration constant */
  847. int EN_CENTRAL = 24;
  848. /** Enumeration constant */
  849. int EN_CHARACTER_BY_CHARACTER = 25;
  850. /** Enumeration constant */
  851. int EN_COLLAPSE = 26;
  852. /** Enumeration constant */
  853. int EN_COLLAPSE_WITH_PRECEDENCE = 27;
  854. /** Enumeration constant */
  855. int EN_COLUMN = 28;
  856. /** Enumeration constant */
  857. int EN_CONDENSED = 29;
  858. /** Enumeration constant */
  859. int EN_CONSIDER_SHIFTS = 30;
  860. /** Enumeration constant */
  861. int EN_DASHED = 31;
  862. /** Enumeration constant */
  863. int EN_DISCARD = 32;
  864. /** Enumeration constant */
  865. int EN_DISREGARD_SHIFTS = 33;
  866. /** Enumeration constant */
  867. int EN_DOCUMENT = 34;
  868. /** Enumeration constant */
  869. int EN_DOTS = 35;
  870. /** Enumeration constant */
  871. int EN_DOTTED = 36;
  872. /** Enumeration constant */
  873. int EN_DOUBLE = 37;
  874. /** Enumeration constant */
  875. int EN_EMBED = 38;
  876. /** Enumeration constant */
  877. int EN_END = 39;
  878. /** Enumeration constant */
  879. int EN_END_ON_EVEN = 40;
  880. /** Enumeration constant */
  881. int EN_END_ON_ODD = 41;
  882. /** Enumeration constant */
  883. int EN_ERROR_IF_OVERFLOW = 42;
  884. /** Enumeration constant */
  885. int EN_EVEN = 43;
  886. /** Enumeration constant */
  887. int EN_EVEN_PAGE = 44;
  888. /** Enumeration constant */
  889. int EN_EXPANDED = 45;
  890. /** Enumeration constant */
  891. int EN_EXTRA_CONDENSED = 46;
  892. /** Enumeration constant */
  893. int EN_EXTRA_EXPANDED = 47;
  894. /** Enumeration constant */
  895. int EN_FALSE = 48;
  896. /** Enumeration constant */
  897. int EN_FIC = 49;
  898. /** Enumeration constant */
  899. int EN_FIRST = 50;
  900. /** Enumeration constant */
  901. int EN_FIXED = 51;
  902. /** Enumeration constant */
  903. int EN_FONT_HEIGHT = 52;
  904. /** Enumeration constant */
  905. int EN_FORCE = 53;
  906. /** Enumeration constant */
  907. int EN_FSWP = 54;
  908. /** Enumeration constant */
  909. int EN_GROOVE = 55;
  910. /** Enumeration constant */
  911. int EN_HANGING = 56;
  912. /** Enumeration constant */
  913. int EN_HIDDEN = 57;
  914. /** Enumeration constant */
  915. int EN_HIDE = 58;
  916. /** Enumeration constant */
  917. int EN_IDEOGRAPHIC = 59;
  918. /** Enumeration constant */
  919. int EN_IGNORE = 60;
  920. /** Enumeration constant */
  921. int EN_IGNORE_IF_AFTER_LINEFEED = 61;
  922. /** Enumeration constant */
  923. int EN_IGNORE_IF_BEFORE_LINEFEED = 62;
  924. /** Enumeration constant */
  925. int EN_IGNORE_IF_SURROUNDING_LINEFEED = 63;
  926. /** Enumeration constant */
  927. int EN_INDEFINITE = 64;
  928. /** Enumeration constant */
  929. int EN_INDENT = 65;
  930. /** Enumeration constant */
  931. int EN_INHERIT = 66;
  932. /** Enumeration constant */
  933. int EN_INSET = 67;
  934. /** Enumeration constant */
  935. int EN_INSIDE = 68;
  936. /** Enumeration constant */
  937. int EN_INTEGER_PIXELS = 69;
  938. /** Enumeration constant */
  939. int EN_JUSTIFY = 70;
  940. /** Enumeration constant */
  941. int EN_LARGER = 71;
  942. /** Enumeration constant */
  943. int EN_LAST = 72;
  944. /** Enumeration constant */
  945. int EN_LEFT = 73;
  946. /** Enumeration constant */
  947. int EN_LEWP = 74;
  948. /** Enumeration constant */
  949. int EN_LINE = 75;
  950. /** Enumeration constant */
  951. int EN_LINE_HEIGHT = 76;
  952. /** Enumeration constant */
  953. int EN_LINE_THROUGH = 77;
  954. /** Enumeration constant */
  955. int EN_LOWERCASE = 78;
  956. /** Enumeration constant */
  957. int EN_LR_TB = 79;
  958. /** Enumeration constant */
  959. int EN_LTR = 80;
  960. /** Enumeration constant */
  961. int EN_LSWP = 81;
  962. /** Enumeration constant */
  963. int EN_MATHEMATICAL = 82;
  964. /** Enumeration constant */
  965. int EN_MAX_HEIGHT = 83;
  966. /** Enumeration constant */
  967. int EN_MIDDLE = 84;
  968. /** Enumeration constant */
  969. int EN_NARROWER = 85;
  970. /** Enumeration constant */
  971. int EN_NO_BLINK = 86;
  972. /** Enumeration constant */
  973. int EN_NO_CHANGE = 87;
  974. /** Enumeration constant */
  975. int EN_NO_FORCE = 88;
  976. /** Enumeration constant */
  977. int EN_NO_LIMIT = 89;
  978. /** Enumeration constant */
  979. int EN_NO_LINE_THROUGH = 90;
  980. /** Enumeration constant */
  981. int EN_NO_OVERLINE = 91;
  982. /** Enumeration constant */
  983. int EN_NO_UNDERLINE = 92;
  984. /** Enumeration constant */
  985. int EN_NO_WRAP = 93;
  986. /** Enumeration constant */
  987. int EN_NON_UNIFORM = 94;
  988. /** Enumeration constant */
  989. int EN_NONE = 95;
  990. /** Enumeration constant */
  991. int EN_NOREPEAT = 96;
  992. /** Enumeration constant */
  993. int EN_NORMAL = 97;
  994. /** Enumeration constant */
  995. int EN_NOT_BLANK = 98;
  996. /** Enumeration constant */
  997. int EN_ODD = 99;
  998. /** Enumeration constant */
  999. int EN_ODD_PAGE = 100;
  1000. /** Enumeration constant */
  1001. int EN_OUTSET = 101;
  1002. /** Enumeration constant */
  1003. int EN_OUTSIDE = 102;
  1004. /** Enumeration constant */
  1005. int EN_OVERLINE = 103;
  1006. /** Enumeration constant */
  1007. int EN_PAGE = 104;
  1008. /** Enumeration constant */
  1009. int EN_PAGE_SEQUENCE = 105;
  1010. /** Enumeration constant */
  1011. int EN_PAGINATE = 106;
  1012. /** Enumeration constant */
  1013. int EN_PERCEPTUAL = 107;
  1014. /** Enumeration constant */
  1015. int EN_PRESERVE = 108;
  1016. /** Enumeration constant */
  1017. int EN_REFERENCE_AREA = 109;
  1018. /** Enumeration constant */
  1019. int EN_RELATIVE = 110;
  1020. /** Enumeration constant */
  1021. int EN_RELATIVE_COLOMETRIC = 111;
  1022. /** Enumeration constant */
  1023. int EN_REPEAT = 112;
  1024. /** Enumeration constant */
  1025. int EN_REPEATX = 113;
  1026. /** Enumeration constant */
  1027. int EN_REPEATY = 114;
  1028. /** Enumeration constant */
  1029. int EN_RESAMPLE_ANY_METHOD = 115;
  1030. /** Enumeration constant */
  1031. int EN_RESET_SIZE = 116;
  1032. /** Enumeration constant */
  1033. int EN_REST = 117;
  1034. /** Enumeration constant */
  1035. int EN_RETAIN = 118;
  1036. /** Enumeration constant */
  1037. int EN_RIDGE = 119;
  1038. /** Enumeration constant */
  1039. int EN_RIGHT = 120;
  1040. /** Enumeration constant */
  1041. int EN_RL_TB = 121;
  1042. /** Enumeration constant */
  1043. int EN_RTL = 122;
  1044. /** Enumeration constant */
  1045. int EN_RULE = 123;
  1046. /** Enumeration constant */
  1047. int EN_SATURATION = 124;
  1048. /** Enumeration constant */
  1049. int EN_SCALE_TO_FIT = 125;
  1050. /** Enumeration constant */
  1051. int EN_SCROLL = 126;
  1052. /** Enumeration constant */
  1053. int EN_SEMI_CONDENSED = 127;
  1054. /** Enumeration constant */
  1055. int EN_SEMI_EXPANDED = 128;
  1056. /** Enumeration constant */
  1057. int EN_SEPARATE = 129;
  1058. /** Enumeration constant */
  1059. int EN_SHOW = 130;
  1060. /** Enumeration constant */
  1061. int EN_SMALL_CAPS = 131;
  1062. /** Enumeration constant */
  1063. int EN_SMALLER = 132;
  1064. /** Enumeration constant */
  1065. int EN_SOLID = 133;
  1066. /** Enumeration constant */
  1067. int EN_SPACE = 134;
  1068. /** Enumeration constant */
  1069. int EN_START = 135;
  1070. /** Enumeration constant */
  1071. int EN_STATIC = 136;
  1072. /** Enumeration constant */
  1073. int EN_SUB = 137;
  1074. /** Enumeration constant */
  1075. int EN_SUPER = 138;
  1076. /** Enumeration constant */
  1077. int EN_SUPPRESS = 139;
  1078. /** Enumeration constant */
  1079. int EN_TB_RL = 140;
  1080. /** Enumeration constant */
  1081. int EN_TEXT_AFTER_EDGE = 141;
  1082. /** Enumeration constant */
  1083. int EN_TEXT_BEFORE_EDGE = 142;
  1084. /** Enumeration constant */
  1085. int EN_TEXT_BOTTOM = 143;
  1086. /** Enumeration constant */
  1087. int EN_TEXT_TOP = 144;
  1088. /** Enumeration constant */
  1089. int EN_TOP = 145;
  1090. /** Enumeration constant */
  1091. int EN_TRADITIONAL = 146;
  1092. /** Enumeration constant */
  1093. int EN_TREAT_AS_SPACE = 147;
  1094. /** Enumeration constant */
  1095. int EN_TREAT_AS_ZERO_WIDTH_SPACE = 148;
  1096. /** Enumeration constant */
  1097. int EN_TRUE = 149;
  1098. /** Enumeration constant */
  1099. int EN_ULTRA_CONDENSED = 150;
  1100. /** Enumeration constant */
  1101. int EN_ULTRA_EXPANDED = 151;
  1102. /** Enumeration constant */
  1103. int EN_UNBOUNDED = 152;
  1104. /** Enumeration constant */
  1105. int EN_UNDERLINE = 153;
  1106. /** Enumeration constant */
  1107. int EN_UNIFORM = 154;
  1108. /** Enumeration constant */
  1109. int EN_UPPERCASE = 155;
  1110. /** Enumeration constant */
  1111. int EN_USE_FONT_METRICS = 156;
  1112. /** Enumeration constant */
  1113. int EN_USE_SCRIPT = 157;
  1114. /** Enumeration constant */
  1115. int EN_USECONTENT = 158;
  1116. /** Enumeration constant */
  1117. int EN_VISIBLE = 159;
  1118. /** Enumeration constant */
  1119. int EN_WIDER = 160;
  1120. /** Enumeration constant */
  1121. int EN_WRAP = 161;
  1122. /** Enumeration constant - non-standard for display-align */
  1123. int EN_X_FILL = 162;
  1124. /** Enumeration constant - non-standard for display-align */
  1125. int EN_X_DISTRIBUTE = 163;
  1126. /** Enumeration constant */
  1127. int EN_ITALIC = 164;
  1128. /** Enumeration constant */
  1129. int EN_OBLIQUE = 165;
  1130. /** Enumeration constant */
  1131. int EN_BACKSLANT = 166;
  1132. /** Enumeration constant */
  1133. int EN_BOLDER = 167;
  1134. /** Enumeration constant */
  1135. int EN_LIGHTER = 168;
  1136. /** Enumeration constant */
  1137. int EN_100 = 169;
  1138. /** Enumeration constant */
  1139. int EN_200 = 170;
  1140. /** Enumeration constant */
  1141. int EN_300 = 171;
  1142. /** Enumeration constant */
  1143. int EN_400 = 172;
  1144. /** Enumeration constant */
  1145. int EN_500 = 173;
  1146. /** Enumeration constant */
  1147. int EN_600 = 174;
  1148. /** Enumeration constant */
  1149. int EN_700 = 175;
  1150. /** Enumeration constant */
  1151. int EN_800 = 176;
  1152. /** Enumeration constant */
  1153. int EN_900 = 177;
  1154. /** Enumeration constant -- page-break-shorthand */
  1155. int EN_AVOID = 178;
  1156. /** Enumeration constant -- white-space shorthand */
  1157. int EN_PRE = 179;
  1158. /** Enumeration constant -- font shorthand */
  1159. int EN_CAPTION = 180;
  1160. /** Enumeration constant -- font shorthand */
  1161. int EN_ICON = 181;
  1162. /** Enumeration constant -- font shorthand */
  1163. int EN_MENU = 182;
  1164. /** Enumeration constant -- font shorthand */
  1165. int EN_MESSAGE_BOX = 183;
  1166. /** Enumeration constant -- font shorthand */
  1167. int EN_SMALL_CAPTION = 184;
  1168. /** Enumeration constant -- font shorthand */
  1169. int EN_STATUS_BAR = 185;
  1170. /** Enumeration constant -- for page-position, XSL 1.1 */
  1171. int EN_ONLY = 186;
  1172. /** Enumeration constant -- for instream-foreign-object and external-graphic, XSL 1.1 */
  1173. int EN_SCALE_DOWN_TO_FIT = 187;
  1174. /** Enumeration constant -- for instream-foreign-object and external-graphic, XSL 1.1 */
  1175. int EN_SCALE_UP_TO_FIT = 188;
  1176. /** Enumeration constant -- for fo:basic-link show-destination */
  1177. int EN_REPLACE = 189;
  1178. /** Enumeration constant -- for fo:basic-link show-destination */
  1179. int EN_NEW = 190;
  1180. /** Enumeration constant -- for fo:retrieve-table-marker */
  1181. int EN_FIRST_STARTING = 191;
  1182. /** Enumeration constant -- for fo:retrieve-table-marker */
  1183. int EN_LAST_STARTING = 192;
  1184. /** Enumeration constant -- for fo:retrieve-table-marker */
  1185. int EN_LAST_ENDING = 193;
  1186. /** Enumeration constant -- for fo:retrieve-table-marker */
  1187. int EN_TABLE = 194;
  1188. /** Enumeration constant -- for fo:retrieve-table-marker */
  1189. int EN_TABLE_FRAGMENT = 195;
  1190. /** Enumeration constant -- XSL 1.1 */
  1191. int EN_MERGE = 196;
  1192. /** Enumeration constant -- XSL 1.1 */
  1193. int EN_LEAVE_SEPARATE = 197;
  1194. /** Enumeration constant -- XSL 1.1 */
  1195. int EN_LINK = 198;
  1196. /** Enumeration constant -- XSL 1.1 */
  1197. int EN_NO_LINK = 199;
  1198. /** Enumeration constant -- XSL 1.1 */
  1199. int EN_ALTERNATE = 200;
  1200. /** Number of enumeration constants defined */
  1201. int ENUM_COUNT = 200;
  1202. }