Class HiLiteHTML.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 class java.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 class java.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 class java.lang.Object
        Code:
        Exact Method Body:
         return ToStringHTML.classAttribRule(this);
        
      • hashCode

        🡅     🗕  🗗  🗖
        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
        Code:
        Exact Method Body:
         return this.attributeName.hashCode();