From: Frederic D. <de...@us...> - 2004-04-27 16:13:44
|
Update of /cvsroot/fudaa/fudaa_devel/ctulu/src/com/memoire/ant In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2577/src/com/memoire/ant Modified Files: idlj_task.java Log Message: Maj pour boony Index: idlj_task.java =================================================================== RCS file: /cvsroot/fudaa/fudaa_devel/ctulu/src/com/memoire/ant/idlj_task.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** idlj_task.java 29 Jan 2003 11:03:59 -0000 1.1 --- idlj_task.java 27 Apr 2004 16:13:34 -0000 1.2 *************** *** 176,183 **** log("erreur de lecture :" + e); } ! finally ! { ! return r; ! } } --- 176,180 ---- log("erreur de lecture :" + e); } ! return r; } *************** *** 617,620 **** --- 614,629 ---- options_.add("-oldImplBase"); } + + /** + * @param _s le prefixe pour le tie. Voir la doc de idlj et "-tieName" + */ + public void setTieName(String _s) + { + if((_s!=null) && (_s.trim().length()>0)) + options_.add("-tieName"); + options_.add(_s.trim()); + } + + |