All Packages Class Hierarchy This Package Previous Next Index
Class org.w3c.css.aural.ACssPause
java.lang.Object
|
+----org.w3c.css.properties.CssProperty
|
+----org.w3c.css.aural.ACssProperty
|
+----org.w3c.css.aural.ACssPause
- public class ACssPause
- extends ACssProperty
- implements CssOperator
'pause'
Value: [<timee> | <percentage> ]{1,2};
Initial: UA specific
Applies to: all elements
Inherited: no
Percentage values: NA
The 'pause' property is a shorthand for setting 'pause-before' and
'pause-after'. If two values are given, the first value is
pause-before and the second is pause-after. If only one value is
given, it applies to both properties.
Examples:
H1 { pause: 20ms } /* pause-before: 20ms; pause-after: 20ms * /
H2 { pause: 30ms 40ms } /* pause-before: 30ms; pause-after: 40ms * /
H3 { pause-after: 10ms } /* pause-before: ?; pause-after: 10ms * /
-
ACssPause()
- Create a new ACssPause
-
ACssPause(CssExpression)
- Create a new ACssPause
-
addToStyle(CssStyle)
- Add this property to the CssStyle
-
equals(CssProperty)
- Compares two properties for equality.
-
get()
- Returns the value of this property
-
getAfter()
- Get the after property
-
getBefore()
- Get the before property
-
getImportant()
- Returns true if this property is important.
-
getPropertyInStyle(CssStyle, boolean)
- Get this property in the style.
-
getPropertyName()
- Returns the name of this property
-
print(CssPrinterStyle)
- Print this property.
-
setImportant()
- Set this property to be important.
-
setInfo(int, String)
- Update the source file and the line.
-
setSelectors(CssSelectors)
- Set the context.
-
toString()
- Returns a string representation of the object.
ACssPause
public ACssPause()
- Create a new ACssPause
ACssPause
public ACssPause(CssExpression expression) throws InvalidParamException
- Create a new ACssPause
- Parameters:
- expression - The expression for this property
- Throws: InvalidParamException
- Values are incorrect
get
public Object get()
- Returns the value of this property
- Overrides:
- get in class CssProperty
getBefore
public ACssPauseBefore getBefore()
- Get the before property
getAfter
public ACssPauseAfter getAfter()
- Get the after property
getPropertyName
public String getPropertyName()
- Returns the name of this property
- Overrides:
- getPropertyName in class CssProperty
toString
public String toString()
- Returns a string representation of the object.
- Overrides:
- toString in class CssProperty
setImportant
public void setImportant()
- Set this property to be important.
Overrides this method for a macro
- Overrides:
- setImportant in class CssProperty
getImportant
public boolean getImportant()
- Returns true if this property is important.
Overrides this method for a macro
- Overrides:
- getImportant in class CssProperty
print
public void print(CssPrinterStyle printer)
- Print this property.
- Parameters:
- printer - The printer.
- Overrides:
- print in class CssProperty
- See Also:
- toString, getPropertyName
addToStyle
public void addToStyle(CssStyle style)
- Add this property to the CssStyle
- Parameters:
- style - The CssStyle
- Overrides:
- addToStyle in class CssProperty
setInfo
public void setInfo(int line,
String source)
- Update the source file and the line.
Overrides this method for a macro
- Parameters:
- line - The line number where this property is defined
- source - The source file where this property is defined
- Overrides:
- setInfo in class CssProperty
equals
public boolean equals(CssProperty property)
- Compares two properties for equality.
- Parameters:
- value - The other property.
- Overrides:
- equals in class CssProperty
setSelectors
public void setSelectors(CssSelectors selector)
- Set the context.
Overrides this method for a macro
- Overrides:
- setSelectors in class CssProperty
- See Also:
- order, handleRule
getPropertyInStyle
public CssProperty getPropertyInStyle(CssStyle style,
boolean resolve)
- Get this property in the style.
- Parameters:
- style - The style where the property is
- resolve - if true, resolve the style to find this property
- Overrides:
- getPropertyInStyle in class CssProperty
All Packages Class Hierarchy This Package Previous Next Index