- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 27 of file TargetItem.java.
◆ equals()
boolean org.turro.contacts.organigram.TargetItem.equals |
( |
Object |
obj | ) |
|
Definition at line 69 of file TargetItem.java.
73 if (getClass() != obj.getClass()) {
76 final TargetItem other = (TargetItem) obj;
77 if (this.relationType != other.relationType) {
80 if ((this.description ==
null) ? (other.description !=
null) : !this.description.equals(other.description)) {
◆ getDescription()
String org.turro.contacts.organigram.TargetItem.getDescription |
( |
| ) |
|
◆ getNextOperator()
NextOperator org.turro.contacts.organigram.TargetItem.getNextOperator |
( |
| ) |
|
◆ getRelationType()
RelationType org.turro.contacts.organigram.TargetItem.getRelationType |
( |
| ) |
|
◆ hashCode()
int org.turro.contacts.organigram.TargetItem.hashCode |
( |
| ) |
|
Definition at line 61 of file TargetItem.java.
63 hash = 67 * hash + (this.relationType !=
null ? this.relationType.hashCode() : 0);
64 hash = 67 * hash + (this.description !=
null ? this.description.hashCode() : 0);
◆ setDescription()
void org.turro.contacts.organigram.TargetItem.setDescription |
( |
String |
description | ) |
|
◆ setNextOperator()
void org.turro.contacts.organigram.TargetItem.setNextOperator |
( |
NextOperator |
nextOperator | ) |
|
◆ setRelationType()
void org.turro.contacts.organigram.TargetItem.setRelationType |
( |
RelationType |
relationType | ) |
|
Definition at line 37 of file TargetItem.java.
38 this.relationType = relationType;
39 if(nextOperator ==
null) {
The documentation for this class was generated from the following file: