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,825 Bytes Line Count: 51 '\n' Characters Found
-
-
Field Summary
Fields Modifier and Type Field String
attributeName
String
attributeName_ClassName
String
attributeValue_ClassName
protected static long
serialVersionUID
boolean
spanOrBold
-
Constructor Summary
Constructors Constructor AttribRule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method HiLiteHTML.AttribRule
clone()
boolean
equals(Object other)
int
hashCode()
String
toString()
void
validate()
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
- See Also:
- Constant Field Values
- Code:
- Exact Field Declaration Expression:
protected static final long serialVersionUID = 1;
-
attributeName
public java.lang.String attributeName
- Code:
- Exact Field Declaration Expression:
public String attributeName = null;
-
attributeName_ClassName
public java.lang.String attributeName_ClassName
- Code:
- Exact Field Declaration Expression:
public String attributeName_ClassName = null;
-
attributeValue_ClassName
public java.lang.String attributeValue_ClassName
- Code:
- Exact Field Declaration Expression:
public String attributeValue_ClassName = null;
-
spanOrBold
public boolean spanOrBold
- Code:
- Exact Field Declaration Expression:
public boolean spanOrBold = true;
-
-
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:
clone
in 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:
equals
in classjava.lang.Object
- Code:
- Exact Method Body:
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:
toString
in classjava.lang.Object
- Code:
- Exact Method Body:
return ToStringHTML.classAttribRule(this);
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
- Code:
- Exact Method Body:
return this.attributeName.hashCode();
-
-