Skip to contentPackage: VariableDefinitionChange
VariableDefinitionChange
Coverage
      1: package migration.processeddifffile;
2: 
3: /**
4:  * Represents a change between the versions of the variable definition.
5:  * 
6:  * @author max
7:  *
8:  */
9: public interface VariableDefinitionChange {
10: 
11:         /**
12:          * @return the type of the change
13:          */
14:         ChangeType getChangeType();
15: 
16: }