- config.properties: values of the parameters of code smells and antipatterns
- JNILIB.dll: library with all C functions
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
try {
Properties props = new Properties();
props.load(new FileInputStream("../MLS SAD/rsc/config.properties"));
int aProp = Integer.parseInt(props.getProperty("SomeCodeSmell.Param"));
} catch (IOException e) {
e.printStackTrace();
}
}