Hello,
I need to use your fudaa pre pro jar to set some value in the cas file.
I use this short code to do this:
final DicoCasInterface inter = getInter(casFileName);
final File tmpFile = createTempFile();
final CtuluIOOperationSynthese syntheseR = Telemac2dFileFormat.getInstance().getLastVersionImpl(DicoLanguage.FRENCH_ID).write(tmpFile, inter, null);
but i need to change some DicoEntite values of DicoCasInterface "inter" before write it.
DicoEntite ent = dico.getEntite("CONDITIONS INITIALES");
String t = inter.getValue(ent); // HERE I WANT TO SET THE VALUE OF ENTITY ENT, AND NEXT GET A NEW DicoCasInterface to write a new CAS file.
someone can help me ?
Thanks.