- From: CVS User ylafon <cvsmail@w3.org>
- Date: Thu, 03 Jan 2013 14:57:07 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/aural
In directory roscoe:/tmp/cvs-serv15672/aural
Modified Files:
ACssStyle.java
Removed Files:
ACssCue.java ACssCueAfter.java ACssCueBefore.java
Log Message:
cue/cue-before/cue-after per css2/css21/css3 http://www.w3.org/TR/2012/CR-css3-speech-20120320/#cue
--- /sources/public/2002/css-validator/org/w3c/css/properties/aural/ACssStyle.java 2013/01/02 13:48:14 1.15
+++ /sources/public/2002/css-validator/org/w3c/css/properties/aural/ACssStyle.java 2013/01/03 14:57:07 1.16
@@ -1,5 +1,5 @@
//
-// $Id: ACssStyle.java,v 1.15 2013/01/02 13:48:14 ylafon Exp $
+// $Id: ACssStyle.java,v 1.16 2013/01/03 14:57:07 ylafon Exp $
// From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr)
//
// (c) COPYRIGHT MIT and INRIA, 1997.
@@ -14,12 +14,11 @@
import org.w3c.css.values.CssPercentage;
/**
- * @version $Revision: 1.15 $
+ * @version $Revision: 1.16 $
*/
public class ACssStyle extends Css1Style {
ACssPause acssPause = new ACssPause(); // it's a macro
- ACssCue acssCue = new ACssCue(); // it's a macro
ACssVoiceFamily acssVoiceFamily;
ACssPitch acssPitch;
ACssPlayDuring acssPlayDuring;
@@ -91,39 +90,6 @@
}
/**
- * Get the cue after
- */
- public ACssCueAfter getCueAfter() {
- if (acssCue.cueAfter == null) {
- acssCue.cueAfter = (ACssCueAfter) style.CascadingOrder(new ACssCueAfter(), style, selector);
- }
- return acssCue.cueAfter;
- }
-
- /**
- * Get the cue before
- */
- public ACssCueBefore getCueBefore() {
- if (acssCue.cueBefore == null) {
- acssCue.cueBefore = (ACssCueBefore) style.CascadingOrder(new ACssCueBefore(), style, selector);
- }
- return acssCue.cueBefore;
- }
-
- /**
- * Get the cue
- */
- public ACssCue getCue() {
- if (acssCue.cueAfter == null) {
- acssCue.cueAfter = getCueAfter();
- }
- if (acssCue.cueBefore == null) {
- acssCue.cueBefore = getCueBefore();
- }
- return acssCue;
- }
-
- /**
* Get the play during
*/
public ACssPlayDuring getPlayDuring() {
Received on Thursday, 3 January 2013 14:57:08 UTC