- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
PortletSettings other = (PortletSettings) obj;
if (column == null) {
if (other.column != null)
return false;
} else if (!column.equals(other.column))
return false;
if (configurator == null) {
if (other.configurator != null)
return false;
} else if (!configurator.equals(other.configurator))
return false;
if (library == null) {
if (other.library != null)
return false;
} else if (!library.equals(other.library))
return false;
if (maximize != other.maximize)
return false;
if (portletId == null) {
if (other.portletId != null)
return false;
} else if (!portletId.equals(other.portletId))
return false;
if (row != other.row)
return false;
return true;
}