You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is now (after some refactoring already - before the expected class was expected !:
new GenstarJsonUtil().unmarchalConfigurationFileFromGenstarJson(
Paths.get("src/test/resources/rouen_demographics/rouen_demographics.gns"));
we might expect instead a GenstarConfigurationFile.loadFromJson(...) which would not require the user to discover the concept of a class, create an instance, and "unmarshall"
The text was updated successfully, but these errors were encountered:
same for writing a configuration file: try { new GenstarJsonUtil().marshalToGenstarJson(relativePath.resolve(CONF_EXPORT), gcf, false); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); }
is not the easiest way for a user to just to a "saveToFile"!
It is now (after some refactoring already - before the expected class was expected !:
we might expect instead a GenstarConfigurationFile.loadFromJson(...) which would not require the user to discover the concept of a class, create an instance, and "unmarshall"
The text was updated successfully, but these errors were encountered: