Package Torello.JavaDoc.SyntaxHiLite
Class HiLiteHTML.AttribRule
- java.lang.Object
-
- Torello.JavaDoc.SyntaxHiLite.HiLiteHTML.AttribRule
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable
- Enclosing class:
- HiLiteHTML
public static class HiLiteHTML.AttribRule extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable
- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/JavaDoc/SyntaxHiLite/HiLiteHTML.java
- Open New Browser-Tab: Torello/JavaDoc/SyntaxHiLite/HiLiteHTML.java
File Size: 1,907 Bytes Line Count: 54 '\n' Characters Found
-
-
Field Summary
Fields Modifier and Type Field StringattributeNameStringattributeName_ClassNameStringattributeValue_ClassNameprotected static longserialVersionUIDbooleanspanOrBold
-
Constructor Summary
Constructors Constructor AttribRule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method HiLiteHTML.AttribRuleclone()booleanequals(Object other)inthashCode()StringtoString()voidvalidate()
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
- See Also:
- Constant Field Values
-
attributeName
public java.lang.String attributeName
-
attributeName_ClassName
public java.lang.String attributeName_ClassName
-
attributeValue_ClassName
public java.lang.String attributeValue_ClassName
-
spanOrBold
public boolean spanOrBold
-
-
Constructor Detail
-
AttribRule
public AttribRule()
-
-
Method Detail
-
validate
public void validate()
- Code:
- Exact Method Body:
InnerTagKeyException.check(this.attributeName); ClassNameCSSException.check(this.attributeName_ClassName); ClassNameCSSException.check(this.attributeValue_ClassName);
-
clone
public HiLiteHTML.AttribRule clone()
- Overrides:
clonein classjava.lang.Object- Code:
- Exact Method Body:
final HiLiteHTML.AttribRule ret = new HiLiteHTML.AttribRule(); ret.attributeName = this.attributeName; ret.attributeName_ClassName = this.attributeName_ClassName; ret.attributeValue_ClassName = this.attributeValue_ClassName; ret.spanOrBold = this.spanOrBold; return ret;
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object- Code:
- Exact Method Body:
if (this == other) return true; if (other == null) return false; if (! (other instanceof HiLiteHTML.AttribRule)) return false; HiLiteHTML.AttribRule o = (HiLiteHTML.AttribRule) other; return Objects.equals(this.attributeName, o.attributeName) && Objects.equals(this.attributeName_ClassName, o.attributeName_ClassName) && Objects.equals(this.attributeValue_ClassName, o.attributeValue_ClassName) && (this.spanOrBold == o.spanOrBold);
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object- Code:
- Exact Method Body:
return ToStringHTML.classAttribRule(this);
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object- Code:
- Exact Method Body:
return this.attributeName.hashCode();
-
-