Skip to content

Package: DiffFileEntity

DiffFileEntity

Coverage

1: package migration.difffile.objects;
2:
3: public interface DiffFileEntity {
4:
5:         /**
6:          * @param line
7:          * the other line to compare
8:          * @return true if and only if this line is equal to the other line except the name
9:          */
10:         boolean hasSameContent(DiffFileEntity line);
11:
12: }