Jan Jezek a écrit : > I have few questions about Jalopy formating. When I try to format code where > the @sources tag is included the formating fails (I'm using eclipse+jalopy > plug-in). It seems to me that there is the @source tag missing in > configuration file jalopygeotools.xml at > http://www.geotools.org/download/attachments/4612/jalopygeotools.xml?version=1. >
I'm not really sure what the issue is. "@source" appears only in javadoc, and jaloppy as configured there: http://svn.geotools.org/geotools/trunk/gt/build/maven/build-configs/src/main/resources/gt2/jalopygeotools.xml is supposed to ignore the javadoc comment... > Another question is about other tags like @version or @code. Can anybody help > me what is the way how to include this tags properly (so the svn information > will be inserted automatically)? Javadoc tag like @version are not processed by SVN. What SVN process is the $Id$ tag, which usually appears after the @version tag as below: @version $Id$ but the part processed by SVN is $Id$, not @version. The later is processed by the javadoc tool instead. @code is not processed at all by SVN. It is an other javadoc tag, but this tag was introduced in Java 5 only. This means that javadoc are better processed by a Java 5 javadoc tool (but this is not mandatory). Since javadoc do not generates code, using Java 5 for this task doesn't involve any compatibility issue. Furthermore, GeoAPI javadoc must be generated with Java 5 anyway because of parameterized types (a very useful information to appears in the javadoc). Martin ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Geotools-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/geotools-devel
