Skip to contentMethod: hashCode()
      1: package model.definition;
2: 
3: /**
4:  * Repraesentiert die Reichweite/Kontext der Konfigurationsvariablen.
5:  * 
6:  * @author Phil
7:  * 
8:  */
9: public class ConfigurationContext implements VariableContext {
10:         @Override
11:         public boolean equals(final Object obj) {
12:                 return obj instanceof ConfigurationContext;
13:         }
14: 
15:         @Override
16:         public int hashCode() {
17:                 return basic.ModelConstants.CONFIGCONTEXTHASH;
18:         }
19: }