KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > fop > fo > properties > CommonAural


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
18 /* $Id: CommonAural.java 426576 2006-07-28 15:44:37Z jeremias $ */
19
20 package org.apache.fop.fo.properties;
21
22 import org.apache.fop.fo.PropertyList;
23
24 /**
25  * Stores all common aural properties.
26  * See Sec. 7.6 of the XSL-FO Standard.
27  * Public "structure" allows direct member access.
28  */

29 public class CommonAural {
30     /**
31      * The "azimuth" property.
32      */

33     public int azimuth;
34
35     /**
36      * The "cueAfter" property.
37      */

38     public String JavaDoc cueAfter;
39
40     /**
41      * The "cueBefore" property.
42      */

43     public String JavaDoc cueBefore;
44
45     /**
46      * The "elevation" property.
47      */

48     public int elevation;
49
50     /**
51      * The "pauseAfter" property.
52      */

53     public int pauseAfter;
54
55     /**
56      * The "pauseBefore" property.
57      */

58     public int pauseBefore;
59
60     /**
61      * The "pitch" property.
62      */

63     public int pitch;
64
65     /**
66      * The "pitch-range" property.
67      */

68     public int pitchRange;
69
70     /**
71      * The "playDuring" property.
72      */

73     public int playDuring;
74
75     /**
76      * The "richness" property.
77      */

78     public int richness;
79
80     /**
81      * The "speak" property.
82      */

83     public int speak;
84
85     /**
86      * The "speak-header" property.
87      */

88     public int speakHeader;
89
90     /**
91      * The "speak-numeral" property.
92      */

93     public int speakNumeral;
94
95     /**
96      * The "speak-punctuation" property.
97      */

98     public int speakPunctuation;
99
100     /**
101      * The "speech-rate" property.
102      */

103     public int speechRate;
104
105     /**
106      * The "stress" property.
107      */

108     public int stress;
109
110     /**
111      * The "voice-family" property.
112      */

113     public int voiceFamily;
114
115     /**
116      * The "volume" property.
117      */

118     public int volume;
119
120     /**
121      * Create a CommonAbsolutePosition object.
122      * @param pList The PropertyList with propery values.
123      */

124     public CommonAural(PropertyList pList) {
125     }
126 }
127
Popular Tags