Package org.w3c.tidy
Class Attribute
- java.lang.Object
-
- org.w3c.tidy.Attribute
-
public class Attribute extends java.lang.ObjectHTML attribute.- Version:
- $Revision: 400 $ ($Author: fgiust $)
- Author:
- Dave Raggett dsr@w3.org , Andy Quick ac.quick@sympatico.ca (translation to Java), Fabrizio Giustina
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AttrCheckgetAttrchk()Returns the checker for this attribute.java.lang.StringgetName()Returns the attribute name.shortgetVersions()Returns the html versions in which this attribute is supported.booleanisLiteral()Is this a literal (unmodifiable) attribute?booleanisNowrap()Don't wrap this attribute?voidsetLiteral(boolean isLiteral)Is this a literal (unmodifiable) attribute?voidsetNowrap(boolean isNowrap)Don't wrap this attribute?
-
-
-
Constructor Detail
-
Attribute
public Attribute(java.lang.String attributeName, short htmlVersions, AttrCheck check)Instantiates a new Attribute.- Parameters:
attributeName- attribute namehtmlVersions- versions in which this attribute is supportedcheck- AttrCheck instance
-
-
Method Detail
-
setLiteral
public void setLiteral(boolean isLiteral)
Is this a literal (unmodifiable) attribute?- Parameters:
isLiteral- booleantruefor a literal attribute
-
setNowrap
public void setNowrap(boolean isNowrap)
Don't wrap this attribute?- Parameters:
isNowrap- booleantrue= don't wrap
-
getAttrchk
public AttrCheck getAttrchk()
Returns the checker for this attribute.- Returns:
- instance of AttrCheck.
-
isLiteral
public boolean isLiteral()
Is this a literal (unmodifiable) attribute?- Returns:
truefor a literal attribute
-
getName
public java.lang.String getName()
Returns the attribute name.- Returns:
- attribute name.
-
isNowrap
public boolean isNowrap()
Don't wrap this attribute?- Returns:
true= don't wrap
-
getVersions
public short getVersions()
Returns the html versions in which this attribute is supported.- Returns:
- html versions for this attribute.
- See Also:
Dict
-
-