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.

CommonAural.java 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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.properties;
  19. import org.apache.fop.fo.PropertyList;
  20. /**
  21. * Stores all common aural properties.
  22. * See Sec. 7.6 of the XSL-FO Standard.
  23. * Public "structure" allows direct member access.
  24. */
  25. public class CommonAural {
  26. /**
  27. * The "azimuth" property.
  28. */
  29. public int azimuth; // CSOK: VisibilityModifier
  30. /**
  31. * The "cueAfter" property.
  32. */
  33. public String cueAfter; // CSOK: VisibilityModifier
  34. /**
  35. * The "cueBefore" property.
  36. */
  37. public String cueBefore; // CSOK: VisibilityModifier
  38. /**
  39. * The "elevation" property.
  40. */
  41. public int elevation; // CSOK: VisibilityModifier
  42. /**
  43. * The "pauseAfter" property.
  44. */
  45. public int pauseAfter; // CSOK: VisibilityModifier
  46. /**
  47. * The "pauseBefore" property.
  48. */
  49. public int pauseBefore; // CSOK: VisibilityModifier
  50. /**
  51. * The "pitch" property.
  52. */
  53. public int pitch; // CSOK: VisibilityModifier
  54. /**
  55. * The "pitch-range" property.
  56. */
  57. public int pitchRange; // CSOK: VisibilityModifier
  58. /**
  59. * The "playDuring" property.
  60. */
  61. public int playDuring; // CSOK: VisibilityModifier
  62. /**
  63. * The "richness" property.
  64. */
  65. public int richness; // CSOK: VisibilityModifier
  66. /**
  67. * The "speak" property.
  68. */
  69. public int speak; // CSOK: VisibilityModifier
  70. /**
  71. * The "speak-header" property.
  72. */
  73. public int speakHeader; // CSOK: VisibilityModifier
  74. /**
  75. * The "speak-numeral" property.
  76. */
  77. public int speakNumeral; // CSOK: VisibilityModifier
  78. /**
  79. * The "speak-punctuation" property.
  80. */
  81. public int speakPunctuation; // CSOK: VisibilityModifier
  82. /**
  83. * The "speech-rate" property.
  84. */
  85. public int speechRate; // CSOK: VisibilityModifier
  86. /**
  87. * The "stress" property.
  88. */
  89. public int stress; // CSOK: VisibilityModifier
  90. /**
  91. * The "voice-family" property.
  92. */
  93. public int voiceFamily; // CSOK: VisibilityModifier
  94. /**
  95. * The "volume" property.
  96. */
  97. public int volume; // CSOK: VisibilityModifier
  98. /**
  99. * Create a CommonAbsolutePosition object.
  100. * @param pList The PropertyList with propery values.
  101. */
  102. public CommonAural(PropertyList pList) {
  103. }
  104. }