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 40KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262
  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 and traits (<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. /** Property constant FOP proprietary*/
  775. int PR_X_BORDER_BEFORE_RADIUS_START = 276;
  776. /** Property constant FOP proprietary*/
  777. int PR_X_BORDER_BEFORE_RADIUS_END = 277;
  778. /** Property constant FOP proprietary*/
  779. int PR_X_BORDER_AFTER_RADIUS_START = 278;
  780. /** Property constant FOP proprietary*/
  781. int PR_X_BORDER_AFTER_RADIUS_END = 279;
  782. /** Property constant FOP proprietary*/
  783. int PR_X_BORDER_START_RADIUS_BEFORE = 280;
  784. /** Property constant FOP proprietary*/
  785. int PR_X_BORDER_START_RADIUS_AFTER = 281;
  786. /** Property constant FOP proprietary*/
  787. int PR_X_BORDER_END_RADIUS_BEFORE = 282;
  788. /** Property constant FOP proprietary*/
  789. int PR_X_BORDER_END_RADIUS_AFTER = 283;
  790. /** Property constant FOP proprietary*/
  791. int PR_X_BORDER_RADIUS = 284;
  792. /** Property constant FOP proprietary*/
  793. int PR_X_BORDER_BEFORE_START_RADIUS = 285;
  794. /** Property constant FOP proprietary*/
  795. int PR_X_BORDER_BEFORE_END_RADIUS = 286;
  796. /** Property constant FOP proprietary*/
  797. int PR_X_BORDER_AFTER_START_RADIUS = 287;
  798. /** Property constant FOP proprietary*/
  799. int PR_X_BORDER_AFTER_END_RADIUS = 288;
  800. /**
  801. * Property constant - FOP proprietary extension (see NumberConverter) used
  802. * to perform additional control over number conversion when generating page
  803. * numbers.
  804. */
  805. int PR_X_NUMBER_CONVERSION_FEATURES = 289;
  806. /** Scope for table header */
  807. int PR_X_HEADER_COLUMN = 290;
  808. /** Number of property constants defined */
  809. int PROPERTY_COUNT = 290;
  810. // compound property constants
  811. /** Property constant for compound property */
  812. int CP_BLOCK_PROGRESSION_DIRECTION = 1 << COMPOUND_SHIFT;
  813. /** Property constant for compound property */
  814. int CP_CONDITIONALITY = 2 << COMPOUND_SHIFT;
  815. /** Property constant for compound property */
  816. int CP_INLINE_PROGRESSION_DIRECTION = 3 << COMPOUND_SHIFT;
  817. /** Property constant for compound property */
  818. int CP_LENGTH = 4 << COMPOUND_SHIFT;
  819. /** Property constant for compound property */
  820. int CP_MAXIMUM = 5 << COMPOUND_SHIFT;
  821. /** Property constant for compound property */
  822. int CP_MINIMUM = 6 << COMPOUND_SHIFT;
  823. /** Property constant for compound property */
  824. int CP_OPTIMUM = 7 << COMPOUND_SHIFT;
  825. /** Property constant for compound property */
  826. int CP_PRECEDENCE = 8 << COMPOUND_SHIFT;
  827. /** Property constant for compound property */
  828. int CP_WITHIN_COLUMN = 9 << COMPOUND_SHIFT;
  829. /** Property constant for compound property */
  830. int CP_WITHIN_LINE = 10 << COMPOUND_SHIFT;
  831. /** Property constant for compound property */
  832. int CP_WITHIN_PAGE = 11 << COMPOUND_SHIFT;
  833. // Enumeration constants
  834. /** Enumeration constant */
  835. int EN_ABSOLUTE = 1;
  836. /** Enumeration constant */
  837. int EN_ABSOLUTE_COLORMETRIC = 2;
  838. /** Enumeration constant */
  839. int EN_AFTER = 3;
  840. /** Enumeration constant */
  841. int EN_AFTER_EDGE = 4;
  842. /** Enumeration constant */
  843. int EN_ALL = 5;
  844. /** Enumeration constant */
  845. int EN_ALPHABETIC = 6;
  846. /** Enumeration constant */
  847. int EN_ALWAYS = 7;
  848. /** Enumeration constant */
  849. int EN_ANY = 8;
  850. /** Enumeration constant */
  851. int EN_AUTO = 9;
  852. /** Enumeration constant */
  853. int EN_AUTO_EVEN = 10;
  854. /** Enumeration constant */
  855. int EN_AUTO_ODD = 11;
  856. /** Enumeration constant */
  857. int EN_BASELINE = 12;
  858. /** Enumeration constant */
  859. int EN_BEFORE = 13;
  860. /** Enumeration constant */
  861. int EN_BEFORE_EDGE = 14;
  862. /** Enumeration constant */
  863. int EN_BIDI_OVERRIDE = 15;
  864. /** Enumeration constant */
  865. int EN_BLANK = 16;
  866. /** Enumeration constant */
  867. int EN_BLINK = 17;
  868. /** Enumeration constant */
  869. int EN_BLOCK = 18;
  870. /** Enumeration constant */
  871. int EN_BOTH = 19;
  872. /** Enumeration constant */
  873. int EN_BOTTOM = 20;
  874. /** Enumeration constant */
  875. int EN_BOUNDED_IN_ONE_DIMENSION = 21;
  876. /** Enumeration constant */
  877. int EN_CAPITALIZE = 22;
  878. /** Enumeration constant */
  879. int EN_CENTER = 23;
  880. /** Enumeration constant */
  881. int EN_CENTRAL = 24;
  882. /** Enumeration constant */
  883. int EN_CHARACTER_BY_CHARACTER = 25;
  884. /** Enumeration constant */
  885. int EN_COLLAPSE = 26;
  886. /** Enumeration constant */
  887. int EN_COLLAPSE_WITH_PRECEDENCE = 27;
  888. /** Enumeration constant */
  889. int EN_COLUMN = 28;
  890. /** Enumeration constant */
  891. int EN_CONDENSED = 29;
  892. /** Enumeration constant */
  893. int EN_CONSIDER_SHIFTS = 30;
  894. /** Enumeration constant */
  895. int EN_DASHED = 31;
  896. /** Enumeration constant */
  897. int EN_DISCARD = 32;
  898. /** Enumeration constant */
  899. int EN_DISREGARD_SHIFTS = 33;
  900. /** Enumeration constant */
  901. int EN_DOCUMENT = 34;
  902. /** Enumeration constant */
  903. int EN_DOTS = 35;
  904. /** Enumeration constant */
  905. int EN_DOTTED = 36;
  906. /** Enumeration constant */
  907. int EN_DOUBLE = 37;
  908. /** Enumeration constant */
  909. int EN_EMBED = 38;
  910. /** Enumeration constant */
  911. int EN_END = 39;
  912. /** Enumeration constant */
  913. int EN_END_ON_EVEN = 40;
  914. /** Enumeration constant */
  915. int EN_END_ON_ODD = 41;
  916. /** Enumeration constant */
  917. int EN_ERROR_IF_OVERFLOW = 42;
  918. /** Enumeration constant */
  919. int EN_EVEN = 43;
  920. /** Enumeration constant */
  921. int EN_EVEN_PAGE = 44;
  922. /** Enumeration constant */
  923. int EN_EXPANDED = 45;
  924. /** Enumeration constant */
  925. int EN_EXTRA_CONDENSED = 46;
  926. /** Enumeration constant */
  927. int EN_EXTRA_EXPANDED = 47;
  928. /** Enumeration constant */
  929. int EN_FALSE = 48;
  930. /** Enumeration constant */
  931. int EN_FIC = 49;
  932. /** Enumeration constant */
  933. int EN_FIRST = 50;
  934. /** Enumeration constant */
  935. int EN_FIXED = 51;
  936. /** Enumeration constant */
  937. int EN_FONT_HEIGHT = 52;
  938. /** Enumeration constant */
  939. int EN_FORCE = 53;
  940. /** Enumeration constant */
  941. int EN_FSWP = 54;
  942. /** Enumeration constant */
  943. int EN_GROOVE = 55;
  944. /** Enumeration constant */
  945. int EN_HANGING = 56;
  946. /** Enumeration constant */
  947. int EN_HIDDEN = 57;
  948. /** Enumeration constant */
  949. int EN_HIDE = 58;
  950. /** Enumeration constant */
  951. int EN_IDEOGRAPHIC = 59;
  952. /** Enumeration constant */
  953. int EN_IGNORE = 60;
  954. /** Enumeration constant */
  955. int EN_IGNORE_IF_AFTER_LINEFEED = 61;
  956. /** Enumeration constant */
  957. int EN_IGNORE_IF_BEFORE_LINEFEED = 62;
  958. /** Enumeration constant */
  959. int EN_IGNORE_IF_SURROUNDING_LINEFEED = 63;
  960. /** Enumeration constant */
  961. int EN_INDEFINITE = 64;
  962. /** Enumeration constant */
  963. int EN_INDENT = 65;
  964. /** Enumeration constant */
  965. int EN_INHERIT = 66;
  966. /** Enumeration constant */
  967. int EN_INSET = 67;
  968. /** Enumeration constant */
  969. int EN_INSIDE = 68;
  970. /** Enumeration constant */
  971. int EN_INTEGER_PIXELS = 69;
  972. /** Enumeration constant */
  973. int EN_JUSTIFY = 70;
  974. /** Enumeration constant */
  975. int EN_LARGER = 71;
  976. /** Enumeration constant */
  977. int EN_LAST = 72;
  978. /** Enumeration constant */
  979. int EN_LEFT = 73;
  980. /** Enumeration constant */
  981. int EN_LEWP = 74;
  982. /** Enumeration constant */
  983. int EN_LINE = 75;
  984. /** Enumeration constant */
  985. int EN_LINE_HEIGHT = 76;
  986. /** Enumeration constant */
  987. int EN_LINE_THROUGH = 77;
  988. /** Enumeration constant */
  989. int EN_LOWERCASE = 78;
  990. /** Enumeration constant */
  991. int EN_LR_TB = 79;
  992. /** Enumeration constant */
  993. int EN_LTR = 80;
  994. /** Enumeration constant */
  995. int EN_LSWP = 81;
  996. /** Enumeration constant */
  997. int EN_MATHEMATICAL = 82;
  998. /** Enumeration constant */
  999. int EN_MAX_HEIGHT = 83;
  1000. /** Enumeration constant */
  1001. int EN_MIDDLE = 84;
  1002. /** Enumeration constant */
  1003. int EN_NARROWER = 85;
  1004. /** Enumeration constant */
  1005. int EN_NO_BLINK = 86;
  1006. /** Enumeration constant */
  1007. int EN_NO_CHANGE = 87;
  1008. /** Enumeration constant */
  1009. int EN_NO_FORCE = 88;
  1010. /** Enumeration constant */
  1011. int EN_NO_LIMIT = 89;
  1012. /** Enumeration constant */
  1013. int EN_NO_LINE_THROUGH = 90;
  1014. /** Enumeration constant */
  1015. int EN_NO_OVERLINE = 91;
  1016. /** Enumeration constant */
  1017. int EN_NO_UNDERLINE = 92;
  1018. /** Enumeration constant */
  1019. int EN_NO_WRAP = 93;
  1020. /** Enumeration constant */
  1021. int EN_NON_UNIFORM = 94;
  1022. /** Enumeration constant */
  1023. int EN_NONE = 95;
  1024. /** Enumeration constant */
  1025. int EN_NOREPEAT = 96;
  1026. /** Enumeration constant */
  1027. int EN_NORMAL = 97;
  1028. /** Enumeration constant */
  1029. int EN_NOT_BLANK = 98;
  1030. /** Enumeration constant */
  1031. int EN_ODD = 99;
  1032. /** Enumeration constant */
  1033. int EN_ODD_PAGE = 100;
  1034. /** Enumeration constant */
  1035. int EN_OUTSET = 101;
  1036. /** Enumeration constant */
  1037. int EN_OUTSIDE = 102;
  1038. /** Enumeration constant */
  1039. int EN_OVERLINE = 103;
  1040. /** Enumeration constant */
  1041. int EN_PAGE = 104;
  1042. /** Enumeration constant */
  1043. int EN_PAGE_SEQUENCE = 105;
  1044. /** Enumeration constant */
  1045. int EN_PAGINATE = 106;
  1046. /** Enumeration constant */
  1047. int EN_PERCEPTUAL = 107;
  1048. /** Enumeration constant */
  1049. int EN_PRESERVE = 108;
  1050. /** Enumeration constant */
  1051. int EN_REFERENCE_AREA = 109;
  1052. /** Enumeration constant */
  1053. int EN_RELATIVE = 110;
  1054. /** Enumeration constant */
  1055. int EN_RELATIVE_COLOMETRIC = 111;
  1056. /** Enumeration constant */
  1057. int EN_REPEAT = 112;
  1058. /** Enumeration constant */
  1059. int EN_REPEATX = 113;
  1060. /** Enumeration constant */
  1061. int EN_REPEATY = 114;
  1062. /** Enumeration constant */
  1063. int EN_RESAMPLE_ANY_METHOD = 115;
  1064. /** Enumeration constant */
  1065. int EN_RESET_SIZE = 116;
  1066. /** Enumeration constant */
  1067. int EN_REST = 117;
  1068. /** Enumeration constant */
  1069. int EN_RETAIN = 118;
  1070. /** Enumeration constant */
  1071. int EN_RIDGE = 119;
  1072. /** Enumeration constant */
  1073. int EN_RIGHT = 120;
  1074. /** Enumeration constant */
  1075. int EN_RL_TB = 121;
  1076. /** Enumeration constant */
  1077. int EN_RTL = 122;
  1078. /** Enumeration constant */
  1079. int EN_RULE = 123;
  1080. /** Enumeration constant */
  1081. int EN_SATURATION = 124;
  1082. /** Enumeration constant */
  1083. int EN_SCALE_TO_FIT = 125;
  1084. /** Enumeration constant */
  1085. int EN_SCROLL = 126;
  1086. /** Enumeration constant */
  1087. int EN_SEMI_CONDENSED = 127;
  1088. /** Enumeration constant */
  1089. int EN_SEMI_EXPANDED = 128;
  1090. /** Enumeration constant */
  1091. int EN_SEPARATE = 129;
  1092. /** Enumeration constant */
  1093. int EN_SHOW = 130;
  1094. /** Enumeration constant */
  1095. int EN_SMALL_CAPS = 131;
  1096. /** Enumeration constant */
  1097. int EN_SMALLER = 132;
  1098. /** Enumeration constant */
  1099. int EN_SOLID = 133;
  1100. /** Enumeration constant */
  1101. int EN_SPACE = 134;
  1102. /** Enumeration constant */
  1103. int EN_START = 135;
  1104. /** Enumeration constant */
  1105. int EN_STATIC = 136;
  1106. /** Enumeration constant */
  1107. int EN_SUB = 137;
  1108. /** Enumeration constant */
  1109. int EN_SUPER = 138;
  1110. /** Enumeration constant */
  1111. int EN_SUPPRESS = 139;
  1112. /** Enumeration constant */
  1113. int EN_TB_RL = 140;
  1114. /** Enumeration constant */
  1115. int EN_TEXT_AFTER_EDGE = 141;
  1116. /** Enumeration constant */
  1117. int EN_TEXT_BEFORE_EDGE = 142;
  1118. /** Enumeration constant */
  1119. int EN_TEXT_BOTTOM = 143;
  1120. /** Enumeration constant */
  1121. int EN_TEXT_TOP = 144;
  1122. /** Enumeration constant */
  1123. int EN_TOP = 145;
  1124. /** Enumeration constant */
  1125. int EN_TRADITIONAL = 146;
  1126. /** Enumeration constant */
  1127. int EN_TREAT_AS_SPACE = 147;
  1128. /** Enumeration constant */
  1129. int EN_TREAT_AS_ZERO_WIDTH_SPACE = 148;
  1130. /** Enumeration constant */
  1131. int EN_TRUE = 149;
  1132. /** Enumeration constant */
  1133. int EN_ULTRA_CONDENSED = 150;
  1134. /** Enumeration constant */
  1135. int EN_ULTRA_EXPANDED = 151;
  1136. /** Enumeration constant */
  1137. int EN_UNBOUNDED = 152;
  1138. /** Enumeration constant */
  1139. int EN_UNDERLINE = 153;
  1140. /** Enumeration constant */
  1141. int EN_UNIFORM = 154;
  1142. /** Enumeration constant */
  1143. int EN_UPPERCASE = 155;
  1144. /** Enumeration constant */
  1145. int EN_USE_FONT_METRICS = 156;
  1146. /** Enumeration constant */
  1147. int EN_USE_SCRIPT = 157;
  1148. /** Enumeration constant */
  1149. int EN_USECONTENT = 158;
  1150. /** Enumeration constant */
  1151. int EN_VISIBLE = 159;
  1152. /** Enumeration constant */
  1153. int EN_WIDER = 160;
  1154. /** Enumeration constant */
  1155. int EN_WRAP = 161;
  1156. /** Enumeration constant - non-standard for display-align */
  1157. int EN_X_FILL = 162;
  1158. /** Enumeration constant - non-standard for display-align */
  1159. int EN_X_DISTRIBUTE = 163;
  1160. /** Enumeration constant */
  1161. int EN_ITALIC = 164;
  1162. /** Enumeration constant */
  1163. int EN_OBLIQUE = 165;
  1164. /** Enumeration constant */
  1165. int EN_BACKSLANT = 166;
  1166. /** Enumeration constant */
  1167. int EN_BOLDER = 167;
  1168. /** Enumeration constant */
  1169. int EN_LIGHTER = 168;
  1170. /** Enumeration constant */
  1171. int EN_100 = 169;
  1172. /** Enumeration constant */
  1173. int EN_200 = 170;
  1174. /** Enumeration constant */
  1175. int EN_300 = 171;
  1176. /** Enumeration constant */
  1177. int EN_400 = 172;
  1178. /** Enumeration constant */
  1179. int EN_500 = 173;
  1180. /** Enumeration constant */
  1181. int EN_600 = 174;
  1182. /** Enumeration constant */
  1183. int EN_700 = 175;
  1184. /** Enumeration constant */
  1185. int EN_800 = 176;
  1186. /** Enumeration constant */
  1187. int EN_900 = 177;
  1188. /** Enumeration constant -- page-break-shorthand */
  1189. int EN_AVOID = 178;
  1190. /** Enumeration constant -- white-space shorthand */
  1191. int EN_PRE = 179;
  1192. /** Enumeration constant -- font shorthand */
  1193. int EN_CAPTION = 180;
  1194. /** Enumeration constant -- font shorthand */
  1195. int EN_ICON = 181;
  1196. /** Enumeration constant -- font shorthand */
  1197. int EN_MENU = 182;
  1198. /** Enumeration constant -- font shorthand */
  1199. int EN_MESSAGE_BOX = 183;
  1200. /** Enumeration constant -- font shorthand */
  1201. int EN_SMALL_CAPTION = 184;
  1202. /** Enumeration constant -- font shorthand */
  1203. int EN_STATUS_BAR = 185;
  1204. /** Enumeration constant -- for page-position, XSL 1.1 */
  1205. int EN_ONLY = 186;
  1206. /** Enumeration constant -- for instream-foreign-object and external-graphic, XSL 1.1 */
  1207. int EN_SCALE_DOWN_TO_FIT = 187;
  1208. /** Enumeration constant -- for instream-foreign-object and external-graphic, XSL 1.1 */
  1209. int EN_SCALE_UP_TO_FIT = 188;
  1210. /** Enumeration constant -- for fo:basic-link show-destination */
  1211. int EN_REPLACE = 189;
  1212. /** Enumeration constant -- for fo:basic-link show-destination */
  1213. int EN_NEW = 190;
  1214. /** Enumeration constant -- for fo:retrieve-table-marker */
  1215. int EN_FIRST_STARTING = 191;
  1216. /** Enumeration constant -- for fo:retrieve-table-marker */
  1217. int EN_LAST_STARTING = 192;
  1218. /** Enumeration constant -- for fo:retrieve-table-marker */
  1219. int EN_LAST_ENDING = 193;
  1220. /** Enumeration constant -- for fo:retrieve-table-marker */
  1221. int EN_TABLE = 194;
  1222. /** Enumeration constant -- for fo:retrieve-table-marker */
  1223. int EN_TABLE_FRAGMENT = 195;
  1224. /** Enumeration constant -- XSL 1.1 */
  1225. int EN_MERGE = 196;
  1226. /** Enumeration constant -- XSL 1.1 */
  1227. int EN_LEAVE_SEPARATE = 197;
  1228. /** Enumeration constant -- XSL 1.1 */
  1229. int EN_LINK = 198;
  1230. /** Enumeration constant -- XSL 1.1 */
  1231. int EN_NO_LINK = 199;
  1232. /** Enumeration constant -- XSL 1.1 */
  1233. int EN_ALTERNATE = 200;
  1234. /** Enumeration constant -- for *-direction traits */
  1235. int EN_LR = 201; // left to right
  1236. /** Enumeration constant -- for *-direction traits */
  1237. int EN_RL = 202; // right to left
  1238. /** Enumeration constant -- for *-direction traits */
  1239. int EN_TB = 203; // top to bottom
  1240. /** Enumeration constant -- for *-direction traits */
  1241. int EN_BT = 204; // bottom to top
  1242. /** Enumeration constant */
  1243. int EN_TB_LR = 205; // for top-to-bottom, left-to-right writing mode
  1244. /** Enumeration constant -- for fo:retrieve-table-marker */
  1245. int EN_FIRST_INCLUDING_CARRYOVER = 206;
  1246. /** Number of enumeration constants defined */
  1247. int ENUM_COUNT = 206;
  1248. }