Skip to contentMethod: AddLine()
      1: package migration.difffile;
2: 
3: /**
4:  * Hinzugefügte Zeilen.
5:  * 
6:  * @author Jan Schering
7:  *
8:  */
9: public class AddLine extends LineState {
10: 
11:         @Override
12:         public int hashCode() {
13:                 return super.hashCode();
14:         }
15: 
16:         @Override
17:         public boolean equals(final Object obj) {
18:                 if (this == obj) {
19:                         return true;
20:                 }
21:                 if (!super.equals(obj)) {
22:                         return false;
23:                 }
24:                 if (getClass() != obj.getClass()) {
25:                         return false;
26:                 }
27:                 return true;
28:         }
29: }