package com.blazebit.blazefaces.apt.model; public class Description { private String description; private String displayName; private Icon icon = new Icon(); public Description() { } public Description(String description, String displayName) { this.description = description; this.displayName = displayName; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getDisplayName() { return displayName; } public void setDisplayName(String displayName) { this.displayName = displayName; } public Icon getIcon() { return icon; } public void setIcon(Icon icon) { this.icon = icon; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((description == null) ? 0 : description.hashCode()); result = prime * result + ((displayName == null) ? 0 : displayName.hashCode()); result = prime * result + ((icon == null) ? 0 : icon.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof Description)) { return false; } Description other = (Description) obj; if (description == null) { if (other.description != null) { return false; } } else if (!description.equals(other.description)) { return false; } if (displayName == null) { if (other.displayName != null) { return false; } } else if (!displayName.equals(other.displayName)) { return false; } if (icon == null) { if (other.icon != null) { return false; } } else if (!icon.equals(other.icon)) { return false; } return true; } }