+1 vote
389 views
How I can use getExchanges() command in openLCA 1.8?

I used in openLCA 1.7 and it is work, but it does not work in openLCA 1.8?
in openLCA by (230 points)
retagged by

1 Answer

+1 vote
by (13.5k points)

The `get` and `set` methods were removed from the model API. Instead of `process.getExchanges()` you write now `process.exchanges`. You can have a look at the core-model package (https://github.com/GreenDelta/olca-modules/tree/master/olca-core/src/main/java/org/openlca/core/model) where these classes are defined for the current API version.

...