All Packages Class Hierarchy This Package Previous Next Index
Class org.w3c.css.parser.Errors
java.lang.Object
|
+----org.w3c.css.parser.Errors
- public final class Errors
- extends Object
Controls all errors in the validator
- See Also:
- java
-
Errors()
-
-
addError(CssError)
- Add an error.
-
addErrors(Errors)
- Add errors.
-
getErrorAt(int)
- Get an error with an index.
-
getErrorCount()
- Get the number of errors.
-
getErrors()
- Get an array with all errors.
Errors
public Errors()
addError
public final void addError(CssError error)
- Add an error.
- Parameters:
- error - The new error.
addErrors
public final void addErrors(Errors errors)
- Add errors.
- Parameters:
- errors - All errors
getErrorCount
public final int getErrorCount()
- Get the number of errors.
getErrors
public final CssError[] getErrors()
- Get an array with all errors.
getErrorAt
public final CssError getErrorAt(int index)
- Get an error with an index.
- Parameters:
- index - the error index.
All Packages Class Hierarchy This Package Previous Next Index