@Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } Tag other = (Tag) obj; return Objects.equal(getName(), other.getName()) && Objects.equal(value, other.value); }
public SELF the_tag_has_style(String style) { latestTag.setStyle(style); return self(); }
public void the_tag_has_prependTpe_set_to(boolean prependType) { latestTag.setPrependType(prependType); }