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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. // @SuppressFBWarnings("UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD")
  27. /**
  28. * The "azimuth" property.
  29. */
  30. public int azimuth;
  31. /**
  32. * The "cueAfter" property.
  33. */
  34. public String cueAfter;
  35. /**
  36. * The "cueBefore" property.
  37. */
  38. public String cueBefore;
  39. /**
  40. * The "elevation" property.
  41. */
  42. public int elevation;
  43. /**
  44. * The "pauseAfter" property.
  45. */
  46. public int pauseAfter;
  47. /**
  48. * The "pauseBefore" property.
  49. */
  50. public int pauseBefore;
  51. /**
  52. * The "pitch" property.
  53. */
  54. public int pitch;
  55. /**
  56. * The "pitch-range" property.
  57. */
  58. public int pitchRange;
  59. /**
  60. * The "playDuring" property.
  61. */
  62. public int playDuring;
  63. /**
  64. * The "richness" property.
  65. */
  66. public int richness;
  67. /**
  68. * The "speak" property.
  69. */
  70. public int speak;
  71. /**
  72. * The "speak-header" property.
  73. */
  74. public int speakHeader;
  75. /**
  76. * The "speak-numeral" property.
  77. */
  78. public int speakNumeral;
  79. /**
  80. * The "speak-punctuation" property.
  81. */
  82. public int speakPunctuation;
  83. /**
  84. * The "speech-rate" property.
  85. */
  86. public int speechRate;
  87. /**
  88. * The "stress" property.
  89. */
  90. public int stress;
  91. /**
  92. * The "voice-family" property.
  93. */
  94. public int voiceFamily;
  95. /**
  96. * The "volume" property.
  97. */
  98. public int volume;
  99. /**
  100. * Create a CommonAbsolutePosition object.
  101. * @param pList The PropertyList with propery values.
  102. */
  103. public CommonAural(PropertyList pList) {
  104. }
  105. }