Skip to content

Package: LineProcessor

LineProcessor

Coverage

1: package migration.processor;
2:
3: import java.util.Map.Entry;
4: import java.util.Set;
5:
6: import migration.difffile.DiffPartFileLine;
7:
8: /**
9: *
10: * @author alex
11: *
12: */
13: public interface LineProcessor {
14:
15:         /**
16:          *
17:          * @param entry
18:          * represents a changed variableAssignment
19:          * @param linesSet
20:          * all other changed vaiableAssignments
21:          * @return returns processed change for the given entry as IdentifierSynopsys
22:          */
23:         LineProcessorReturnWrapper processVariableDefinition(Entry<Integer, DiffPartFileLine> entry,
24:                         Set<Entry<Integer, DiffPartFileLine>> linesSet);
25:
26: }