| Package | Description |
|---|---|
| org.w3c.tidy |
| Modifier and Type | Field | Description |
|---|---|---|
protected AttVal |
IStack.attributes |
Attributes.
|
protected AttVal |
Node.attributes |
Attribute/Value linked list.
|
protected AttVal |
DOMAttrImpl.avAdaptee |
wrapped org.w3c.tidy.AttVal.
|
protected AttVal |
AttVal.next |
next AttVal.
|
| Modifier and Type | Method | Description |
|---|---|---|
AttVal |
Lexer.cloneAttributes(AttVal attrs) |
Clones an attribute value and add eventual asp or php node to node list.
|
AttVal |
Node.getAttrByName(java.lang.String name) |
Returns an attribute with the given name in the current node.
|
AttVal |
AttVal.getNext() |
Getter for
next. |
AttVal |
Lexer.parseAttrs(boolean[] isempty) |
Parse tag attributes.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
Report.attrError(Lexer lexer,
Node node,
AttVal attribute,
short code) |
Prints error messages for attributes.
|
void |
AttrCheck.check(Lexer lexer,
Node node,
AttVal attval) |
Check the value of an attribute.
|
void |
AttrCheckImpl.CheckAlign.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckBool.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckClear.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckColor.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckFsubmit.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckId.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckLang.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckLength.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckName.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckNumber.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckScope.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckScript.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckScroll.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckShape.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckTarget.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckTextDir.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckUrl.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckValign.check(Lexer lexer,
Node node,
AttVal attval) |
|
void |
AttrCheckImpl.CheckVType.check(Lexer lexer,
Node node,
AttVal attval) |
|
AttVal |
Lexer.cloneAttributes(AttVal attrs) |
Clones an attribute value and add eventual asp or php node to node list.
|
Attribute |
AttributeTable.findAttribute(AttVal attval) |
public method for finding attribute definition by name.
|
void |
Node.removeAttribute(AttVal attr) |
Remove an attribute from node and then free it.
|
void |
AttVal.setNext(AttVal next) |
Setter for
next. |
| Constructor | Description |
|---|---|
AttVal(AttVal next,
Attribute dict,
int delim,
java.lang.String attribute,
java.lang.String value) |
Instantiates a new AttVal.
|
AttVal(AttVal next,
Attribute dict,
Node asp,
Node php,
int delim,
java.lang.String attribute,
java.lang.String value) |
Instantiates a new AttVal.
|
DOMAttrImpl(AttVal adaptee) |
instantiates a new DOMAttrImpl which wraps the given AttVal.
|
DOMAttrMapImpl(AttVal firstAttVal) |
instantiates a new DOMAttrMapImpl for the given AttVal.
|