All Packages Class Hierarchy This Package Previous Next Index
Class org.w3c.css.parser.analyzer.Couple
java.lang.Object
|
+----org.w3c.css.parser.analyzer.Couple
- public class Couple
- extends Object
This class represents a couple : an at-rule property and an at-rule
expression.
-
expression
- The at-rule expression.
-
important
- Is this at-rule is important
-
property
- The at-rule property.
-
Couple(String, CssExpression, boolean)
- Create a new Couple
-
getExpression()
- get the at-rule expression
-
getImportant()
- Is this at-rule is important
-
getProperty()
- Get the at-rule property
property
protected String property
- The at-rule property.
expression
protected CssExpression expression
- The at-rule expression.
important
protected boolean important
- Is this at-rule is important
Couple
public Couple(String property,
CssExpression expression,
boolean important)
- Create a new Couple
- Parameters:
- property - The at-rule property.
- expression - The at-rule expression.
- important - Is this at-rule is important
getProperty
public final String getProperty()
- Get the at-rule property
getExpression
public final CssExpression getExpression()
- get the at-rule expression
getImportant
public final boolean getImportant()
- Is this at-rule is important
All Packages Class Hierarchy This Package Previous Next Index