Thread: [Japi-cvs] SF.net SVN: japi:[837] tools/archStat/trunk
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-02-14 23:02:35
|
Revision: 837 http://japi.svn.sourceforge.net/japi/?rev=837&view=rev Author: christianhujer Date: 2009-02-14 21:36:39 +0000 (Sat, 14 Feb 2009) Log Message: ----------- Updated copyright statements in source code. Modified Paths: -------------- tools/archStat/trunk/build.xml tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.java tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.properties tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat_de.properties tools/archStat/trunk/src/prj/net/sf/japi/archstat/Checker.xml tools/archStat/trunk/src/prj/net/sf/japi/archstat/FileStat.java tools/archStat/trunk/src/prj/net/sf/japi/archstat/LineCheck.java tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogEntry.java tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogSystem.java tools/archStat/trunk/src/prj/net/sf/japi/archstat/Logger.java tools/archStat/trunk/src/prj/net/sf/japi/archstat/MessageType.java tools/archStat/trunk/src/prj/net/sf/japi/archstat/StreamLogger.java Modified: tools/archStat/trunk/build.xml =================================================================== --- tools/archStat/trunk/build.xml 2009-02-14 21:36:10 UTC (rev 836) +++ tools/archStat/trunk/build.xml 2009-02-14 21:36:39 UTC (rev 837) @@ -1,12 +1,10 @@ <?xml version="1.0" encoding="utf-8"?> <!-- - ~ Replacer is a program for performing an in-place search and replace - ~ based on regular expressions. - ~ Copyright (C) 2007 Christian Hujer + ~ Copyright (C) 2009 Christian Hujer ~ - ~ This program is free software; you can redistribute it and/or modify + ~ This program is free software: you can redistribute it and/or modify ~ it under the terms of the GNU General Public License as published by - ~ the Free Software Foundation; either version 2 of the License, or + ~ the Free Software Foundation, either version 3 of the License, or ~ (at your option) any later version. ~ ~ This program is distributed in the hope that it will be useful, @@ -14,9 +12,8 @@ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ~ GNU General Public License for more details. ~ - ~ You should have received a copy of the GNU General Public License along - ~ with this program; if not, write to the Free Software Foundation, Inc., - ~ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + ~ You should have received a copy of the GNU General Public License + ~ along with this program. If not, see <http://www.gnu.org/licenses/>. --> <project name="ArchStat" default="compile"> Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.java =================================================================== --- tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.java 2009-02-14 21:36:10 UTC (rev 836) +++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.java 2009-02-14 21:36:39 UTC (rev 837) @@ -1,9 +1,22 @@ +/* + * Copyright (C) 2009 Christian Hujer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + package net.sf.japi.archstat; -// Recursive code statistics. -// © Copyright 2008 Christian Hujer. All rights reserved. -// License: GPL (Gnu General Public License) v2 or newer - import java.io.BufferedReader; import java.io.File; import java.io.FileReader; Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.properties =================================================================== --- tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.properties 2009-02-14 21:36:10 UTC (rev 836) +++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.properties 2009-02-14 21:36:39 UTC (rev 837) @@ -1,2 +1,19 @@ +# +# Copyright (C) 2009 Christian Hujer +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + readCheckers=Specify an additional configuration file. Can be specified more than once. setDepth=Set the maximum output depth. Default: No limit. Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat_de.properties =================================================================== --- tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat_de.properties 2009-02-14 21:36:10 UTC (rev 836) +++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat_de.properties 2009-02-14 21:36:39 UTC (rev 837) @@ -1,2 +1,19 @@ +# +# Copyright (C) 2009 Christian Hujer +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + readCheckers=Eine zus\xE4tzliche Konfiguration lesen. Kann mehrmals angegeben werden. setDepth=Maximale Ausgabetiefe festlegen. Voreinstellung: unbegrenzt. Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/Checker.xml =================================================================== --- tools/archStat/trunk/src/prj/net/sf/japi/archstat/Checker.xml 2009-02-14 21:36:10 UTC (rev 836) +++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/Checker.xml 2009-02-14 21:36:39 UTC (rev 837) @@ -1,3 +1,20 @@ +<!-- + ~ Copyright (C) 2009 Christian Hujer + ~ + ~ This program is free software: you can redistribute it and/or modify + ~ it under the terms of the GNU General Public License as published by + ~ the Free Software Foundation, either version 3 of the License, or + ~ (at your option) any later version. + ~ + ~ This program is distributed in the hope that it will be useful, + ~ but WITHOUT ANY WARRANTY; without even the implied warranty of + ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ~ GNU General Public License for more details. + ~ + ~ You should have received a copy of the GNU General Public License + ~ along with this program. If not, see <http://www.gnu.org/licenses/>. + --> + <config> <filetypes> <filetype id="CSource" match="^.+\.(c)$" description="C Source Code" /> Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/FileStat.java =================================================================== --- tools/archStat/trunk/src/prj/net/sf/japi/archstat/FileStat.java 2009-02-14 21:36:10 UTC (rev 836) +++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/FileStat.java 2009-02-14 21:36:39 UTC (rev 837) @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2009 Christian Hujer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + package net.sf.japi.archstat; import java.io.File; Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/LineCheck.java =================================================================== --- tools/archStat/trunk/src/prj/net/sf/japi/archstat/LineCheck.java 2009-02-14 21:36:10 UTC (rev 836) +++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/LineCheck.java 2009-02-14 21:36:39 UTC (rev 837) @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2009 Christian Hujer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + package net.sf.japi.archstat; import java.util.regex.Pattern; Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogEntry.java =================================================================== --- tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogEntry.java 2009-02-14 21:36:10 UTC (rev 836) +++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogEntry.java 2009-02-14 21:36:39 UTC (rev 837) @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2009 Christian Hujer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + package net.sf.japi.archstat; import java.io.File; Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogSystem.java =================================================================== --- tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogSystem.java 2009-02-14 21:36:10 UTC (rev 836) +++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogSystem.java 2009-02-14 21:36:39 UTC (rev 837) @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2009 Christian Hujer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + package net.sf.japi.archstat; import org.jetbrains.annotations.NotNull; Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/Logger.java =================================================================== --- tools/archStat/trunk/src/prj/net/sf/japi/archstat/Logger.java 2009-02-14 21:36:10 UTC (rev 836) +++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/Logger.java 2009-02-14 21:36:39 UTC (rev 837) @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2009 Christian Hujer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + package net.sf.japi.archstat; import org.jetbrains.annotations.NotNull; Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/MessageType.java =================================================================== --- tools/archStat/trunk/src/prj/net/sf/japi/archstat/MessageType.java 2009-02-14 21:36:10 UTC (rev 836) +++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/MessageType.java 2009-02-14 21:36:39 UTC (rev 837) @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2009 Christian Hujer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + package net.sf.japi.archstat; import org.jetbrains.annotations.NotNull; Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/StreamLogger.java =================================================================== --- tools/archStat/trunk/src/prj/net/sf/japi/archstat/StreamLogger.java 2009-02-14 21:36:10 UTC (rev 836) +++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/StreamLogger.java 2009-02-14 21:36:39 UTC (rev 837) @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2009 Christian Hujer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + package net.sf.japi.archstat; import java.util.Formatter; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-15 18:35:04
|
Revision: 901 http://japi.svn.sourceforge.net/japi/?rev=901&view=rev Author: christianhujer Date: 2009-02-15 18:35:01 +0000 (Sun, 15 Feb 2009) Log Message: ----------- Build ArchStat with common build. Modified Paths: -------------- tools/archStat/trunk/build.xml Added Paths: ----------- tools/archStat/trunk/module.properties Modified: tools/archStat/trunk/build.xml =================================================================== --- tools/archStat/trunk/build.xml 2009-02-15 18:34:16 UTC (rev 900) +++ tools/archStat/trunk/build.xml 2009-02-15 18:35:01 UTC (rev 901) @@ -15,211 +15,11 @@ ~ You should have received a copy of the GNU General Public License ~ along with this program. If not, see <http://www.gnu.org/licenses/>. --> - +<!DOCTYPE project [ + <!ENTITY commonBuild SYSTEM "common/commonBuild.xml"> +]> <project name="ArchStat" default="compile"> - <property name="module.version" value="0.1" /> - <property name="module.name" value="ArchStat" /> - <property name="module.shortname" value="ArchStat" /> - <property name="module.title" value="ArchStat" /> - <property name="module.main.class" value="net.sf.japi.archstat.ArchStat" /> + &commonBuild; - <taskdef name="pack200" classpath="common/antlib/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Pack200Task" /> - - <target - name = "clean" - description = "Cleans Sandbox" - > - <delete dir="classes" /> - <delete dir="docs" /> - </target> - - <target - name = "compile" - description = "Compiles production classes" - > - <mkdir dir="classes/production/${module.shortname}" /> - <mkdir dir="classes/test/${module.shortname}" /> - <javac - srcdir="src/prj" - destdir="classes/production/${module.shortname}" - encoding="utf-8" - source="1.5" - target="1.5" - > - <classpath> - <fileset dir="lib" includes="*.jar" excludes="LICENSE-*.jar" /> - <fileset dir="common/lib" includes="*.jar" excludes="LICENSE-*.jar" /> - </classpath> - <exclude name="test/**/*.java" /> - </javac> - <copy - todir="classes/production/${module.shortname}" - > - <fileset dir="src/prj" includes="**/*.properties" excludes="test/**/*.properties" /> - <fileset dir="src/prj" includes="**/*.xml" excludes="test/**/*.xml" /> - <fileset dir="src/prj" includes="META-INF/services/**" /> - </copy> - <copy - todir="classes/production/${module.shortname}" - > - <fileset dir="lib" includes="LICENSE-*" /> - <fileset dir="." includes="COPYING" /> - </copy> - </target> - - <target - name = "dist" - description = "Packs distribution archives." - depends = "clean, compile" - > - <!--depends = "clean, compile, doc" - --> - <delete dir="dist" /> - <mkdir dir="dist" /> - <property name="distName" value="dist/${module.name}-${module.version}" /> - <parallel> - <tar tarfile="${distName}.src.tar"> - <tarfileset dir="." prefix="${module.name}-${module.version}"> - <include name="src/**" /> - <include name="build.xml" /> - </tarfileset> - </tar> - <zip destfile="${distName}.src.zip"> - <zipfileset dir="." prefix="${module.name}-${module.version}"> - <include name="src/**" /> - <include name="build.xml" /> - </zipfileset> - </zip> - <jar destfile="${distName}.src.jar"> - <zipfileset dir="." prefix="${module.name}-${module.version}"> - <include name="src/**" /> - <include name="build.xml" /> - </zipfileset> - </jar> - <jar destfile="${distName}.jar"> - <zipfileset dir="classes/production/${module.shortname}"/> - <manifest> - <attribute name="Main-Class" value="${module.main.class}" /> - <attribute name="Class-Path" value="lib/annotations.jar lib/japi-lib-lang-0.1.jar lib/japi-lib-swing-about-0.1.jar lib/japi-lib-swing-action-0.1.jar" /> - <attribute name="Implementation-Title" value="${module.name}" /> - <attribute name="Implementation-Vendor" value="Christian Hujer + the JAPI Developers" /> - <attribute name="Implementation-Version" value="${module.version}" /> - <attribute name="Implementation-URL" value="http://sourceforge.net/projects/japi/" /> - </manifest> - </jar> - <tar tarfile="${distName}.doc.tar"> - <tarfileset dir="." prefix="${module.name}-${module.version}"> - <include name="docs/**" /> - <include name="build.xml" /> - </tarfileset> - </tar> - <zip destfile="${distName}.doc.zip"> - <zipfileset dir="." prefix="${module.name}-${module.version}"> - <include name="docs/**" /> - <include name="build.xml" /> - </zipfileset> - </zip> - <jar destfile="${distName}.doc.jar"> - <zipfileset dir="." prefix="${module.name}-${module.version}"> - <include name="docs/**" /> - </zipfileset> - </jar> - </parallel> - <parallel> - <gzip src="${distName}.src.tar" destfile="${distName}.src.tar.gz" /> - <bzip2 src="${distName}.src.tar" destfile="${distName}.src.tar.bz2" /> - <gzip src="${distName}.doc.tar" destfile="${distName}.doc.tar.gz" /> - <bzip2 src="${distName}.doc.tar" destfile="${distName}.doc.tar.bz2" /> - <pack200 - src="${distName}.jar" - destfile="${distName}.pack.gz" - gzipoutput="true" - stripdebug="true" - effort="9" - keepfileorder="false" - modificationtime="latest" - deflatehint="false" - /> - </parallel> - <delete file="${distName}.src.tar" /> - <delete file="${distName}.doc.tar" /> - </target> - - <target - name = "doc" - description = "Creates public javadoc documentation." - > - <mkdir dir="docs/api" /> - <!--copy todir="docs/api" file="src/doc/api/public/copyright.html" /> - <copy todir="docs/api" file="src/doc/api/public/.htaccess" /--> - <javadoc - destdir = "docs/api" - access = "protected" - author = "yes" - version = "yes" - locale = "en_US" - use = "yes" - splitindex = "yes" - windowtitle = "JAPI Library ${module.title} ${module.version} API documentation" - doctitle = "JAPI<br />Yet another Java API<br />Library ${module.title} ${module.version} API documentation" - header = "JAPI Library ${module.title} ${module.version}<br />API Documentation" - footer = "JAPI<br />Yet another Java API<br />Library ${module.title} ${module.version} API documentation" - bottom = "<div style=" text-align:center;">© 2005-2006 Christian Hujer. All rights reserved. See <a href="{@docRoot}/copyright.html">copyright</a></div>" - serialwarn = "yes" - charset = "utf-8" - docencoding = "utf-8" - encoding = "utf-8" - source = "1.5" - linksource = "yes" - link = "${user.javadoc.link}" - > - <!-- - overview = "src/overview.html" - --> - <classpath> - <fileset dir="lib" includes="annotations.jar" /> - </classpath> - <sourcepath> - <pathelement path="${user.javadoc.javasrc}" /> - <pathelement path="src/prj" /> - </sourcepath> - <packageset - dir="src/prj" - defaultexcludes="yes" - > - <include name="net/**" /> - </packageset> - <tag enabled="true" name="retval" description="Return Values:" scope="methods" /> - <tag enabled="true" name="pre" description="Preconditions:" scope="methods,constructors" /> - <tag enabled="true" name="post" description="Postconditions:" scope="methods" /> - <tag enabled="true" name="invariant" description="Invariant:" scope="methods,fields" /> - <tag enabled="true" name="note" description="Notes:" /> - <tag enabled="true" name="warning" description="Warnings:" /> - <!--tag enabled="true" name="todo" description="Todo:" /--> - <taglet name="com.sun.tools.doclets.ToDoTaglet" path="" /> - <tag enabled="true" name="fixme" description="Fixme:" /> - <tag enabled="true" name="xxx" description="XXX:" /> - </javadoc> - </target> - - <target - name = "buildapp" - description = "Creates executable jar" - > - <property name="appName" value="${module.name}-${module.version}-app" /> - <jar destfile="${appName}.jar"> - <zipfileset dir="classes/production/${module.shortname}"/> - <zipgroupfileset dir="lib" includes="*.jar" excludes="LICENSE-*.jar" /> - <manifest> - <attribute name="Main-Class" value="${module.main.class}" /> - <!--attribute name="Class-Path" value="lib/annotations.jar lib/japi-lib-lang-0.1.jar lib/japi-lib-swing-about-0.1.jar lib/japi-lib-swing-action-0.1.jar" /--> - <attribute name="Implementation-Title" value="${module.name}" /> - <attribute name="Implementation-Vendor" value="Christian Hujer + the JAPI Developers" /> - <attribute name="Implementation-Version" value="${module.version}" /> - <attribute name="Implementation-URL" value="http://sourceforge.net/projects/japi/" /> - </manifest> - </jar> - </target> - </project> Added: tools/archStat/trunk/module.properties =================================================================== --- tools/archStat/trunk/module.properties (rev 0) +++ tools/archStat/trunk/module.properties 2009-02-15 18:35:01 UTC (rev 901) @@ -0,0 +1,25 @@ +# +# Copyright (C) 2009 Christian Hujer. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# + +update.focus=none +name=ArchStat +shortname=ArchStat +title=ArchStat +package=net.sf.japi.archstat +package.path=net/sf/japi/archstat +main.class=net.sf.japi.archstat.ArchStat Property changes on: tools/archStat/trunk/module.properties ___________________________________________________________________ Added: svn:mime-type + text/plain Added: svn:eol-style + LF This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-18 05:40:37
|
Revision: 959 http://japi.svn.sourceforge.net/japi/?rev=959&view=rev Author: christianhujer Date: 2009-02-18 05:40:28 +0000 (Wed, 18 Feb 2009) Log Message: ----------- Replaced checked-in argparser with auto-download. Modified Paths: -------------- tools/archStat/trunk/build.xml Removed Paths: ------------- tools/archStat/trunk/lib/japi-lib-argparser-trunk.jar Modified: tools/archStat/trunk/build.xml =================================================================== --- tools/archStat/trunk/build.xml 2009-02-18 05:37:26 UTC (rev 958) +++ tools/archStat/trunk/build.xml 2009-02-18 05:40:28 UTC (rev 959) @@ -22,4 +22,8 @@ &commonBuild; + <target name="getlibs"> + <get src="http://downloads.sourceforge.net/japi/japi-lib-argparser-0.3.0.jar" dest="lib/japi-lib-argparser.jar" /> + </target> + </project> Deleted: tools/archStat/trunk/lib/japi-lib-argparser-trunk.jar =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-10-05 00:24:08
|
Revision: 1384 http://japi.svn.sourceforge.net/japi/?rev=1384&view=rev Author: christianhujer Date: 2009-10-05 00:23:51 +0000 (Mon, 05 Oct 2009) Log Message: ----------- Make archStat a standalone IDEA project. Modified Paths: -------------- tools/archStat/trunk/archStat.iml Added Paths: ----------- tools/archStat/trunk/archStat.ipr Modified: tools/archStat/trunk/archStat.iml =================================================================== --- tools/archStat/trunk/archStat.iml 2009-10-05 00:21:36 UTC (rev 1383) +++ tools/archStat/trunk/archStat.iml 2009-10-05 00:23:51 UTC (rev 1384) @@ -27,7 +27,167 @@ <SOURCES /> </library> </orderEntry> - <orderEntry type="module" module-name="libs-argparser" /> + <orderEntry type="module-library"> + <library> + <CLASSES> + <root url="jar://$MODULE_DIR$/lib/japi-lib-argparser.jar!/" /> + </CLASSES> + <JAVADOC /> + <SOURCES /> + </library> + </orderEntry> </component> + <component name="copyright"> + <Base> + <setting name="state" value="1" /> + </Base> + <LanguageOptions name="HTML"> + <option name="templateOptions"> + <value> + <option name="block" value="true" /> + <option name="separateBefore" value="false" /> + <option name="separateAfter" value="false" /> + <option name="prefixLines" value="true" /> + <option name="lenBefore" value="80" /> + <option name="lenAfter" value="80" /> + <option name="box" value="false" /> + <option name="filler" value="$TEMPLATE$" /> + </value> + </option> + <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> + <option name="keyword" value="Copyright" /> + <option name="fileTypeOverride" value="2" /> + <option name="relativeBefore" value="true" /> + <option name="addBlankAfter" value="true" /> + <option name="fileLocation" value="1" /> + <option name="useAlternate" value="false" /> + </LanguageOptions> + <LanguageOptions name="JAVA"> + <option name="templateOptions"> + <value> + <option name="block" value="true" /> + <option name="separateBefore" value="false" /> + <option name="separateAfter" value="false" /> + <option name="prefixLines" value="true" /> + <option name="lenBefore" value="80" /> + <option name="lenAfter" value="80" /> + <option name="box" value="false" /> + <option name="filler" value="$TEMPLATE$" /> + </value> + </option> + <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> + <option name="keyword" value="Copyright" /> + <option name="fileTypeOverride" value="2" /> + <option name="relativeBefore" value="true" /> + <option name="addBlankAfter" value="true" /> + <option name="fileLocation" value="1" /> + <option name="useAlternate" value="false" /> + </LanguageOptions> + <LanguageOptions name="JSP"> + <option name="templateOptions"> + <value> + <option name="block" value="true" /> + <option name="separateBefore" value="false" /> + <option name="separateAfter" value="false" /> + <option name="prefixLines" value="true" /> + <option name="lenBefore" value="80" /> + <option name="lenAfter" value="80" /> + <option name="box" value="false" /> + <option name="filler" value="$TEMPLATE$" /> + </value> + </option> + <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> + <option name="keyword" value="Copyright" /> + <option name="fileTypeOverride" value="2" /> + <option name="relativeBefore" value="true" /> + <option name="addBlankAfter" value="true" /> + <option name="fileLocation" value="1" /> + <option name="useAlternate" value="false" /> + </LanguageOptions> + <LanguageOptions name="JavaScript"> + <option name="templateOptions"> + <value> + <option name="block" value="true" /> + <option name="separateBefore" value="false" /> + <option name="separateAfter" value="false" /> + <option name="prefixLines" value="true" /> + <option name="lenBefore" value="80" /> + <option name="lenAfter" value="80" /> + <option name="box" value="false" /> + <option name="filler" value="$TEMPLATE$" /> + </value> + </option> + <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> + <option name="keyword" value="Copyright" /> + <option name="fileTypeOverride" value="2" /> + <option name="relativeBefore" value="true" /> + <option name="addBlankAfter" value="true" /> + <option name="fileLocation" value="1" /> + <option name="useAlternate" value="false" /> + </LanguageOptions> + <LanguageOptions name="Properties"> + <option name="templateOptions"> + <value> + <option name="block" value="true" /> + <option name="separateBefore" value="false" /> + <option name="separateAfter" value="false" /> + <option name="prefixLines" value="true" /> + <option name="lenBefore" value="80" /> + <option name="lenAfter" value="80" /> + <option name="box" value="false" /> + <option name="filler" value="$TEMPLATE$" /> + </value> + </option> + <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> + <option name="keyword" value="Copyright" /> + <option name="fileTypeOverride" value="2" /> + <option name="relativeBefore" value="true" /> + <option name="addBlankAfter" value="true" /> + <option name="fileLocation" value="1" /> + <option name="useAlternate" value="false" /> + </LanguageOptions> + <LanguageOptions name="XML"> + <option name="templateOptions"> + <value> + <option name="block" value="true" /> + <option name="separateBefore" value="false" /> + <option name="separateAfter" value="false" /> + <option name="prefixLines" value="true" /> + <option name="lenBefore" value="80" /> + <option name="lenAfter" value="80" /> + <option name="box" value="false" /> + <option name="filler" value="$TEMPLATE$" /> + </value> + </option> + <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> + <option name="keyword" value="Copyright" /> + <option name="fileTypeOverride" value="2" /> + <option name="relativeBefore" value="true" /> + <option name="addBlankAfter" value="true" /> + <option name="fileLocation" value="1" /> + <option name="useAlternate" value="false" /> + </LanguageOptions> + <LanguageOptions name="__TEMPLATE__"> + <option name="templateOptions"> + <value> + <option name="block" value="true" /> + <option name="separateBefore" value="false" /> + <option name="separateAfter" value="false" /> + <option name="prefixLines" value="true" /> + <option name="lenBefore" value="80" /> + <option name="lenAfter" value="80" /> + <option name="box" value="false" /> + <option name="filler" value="$TEMPLATE$" /> + </value> + </option> + <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> + <option name="keyword" value="Copyright" /> + <option name="fileTypeOverride" value="4" /> + <option name="relativeBefore" value="true" /> + <option name="addBlankAfter" value="true" /> + <option name="fileLocation" value="1" /> + <option name="useAlternate" value="false" /> + </LanguageOptions> + </component> </module> Added: tools/archStat/trunk/archStat.ipr =================================================================== --- tools/archStat/trunk/archStat.ipr (rev 0) +++ tools/archStat/trunk/archStat.ipr 2009-10-05 00:23:51 UTC (rev 1384) @@ -0,0 +1,888 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project relativePaths="false" version="4"> + <component name="BuildJarProjectSettings"> + <option name="BUILD_JARS_ON_MAKE" value="false" /> + </component> + <component name="CodeStyleSettingsManager"> + <option name="PER_PROJECT_SETTINGS" /> + <option name="USE_PER_PROJECT_SETTINGS" value="false" /> + </component> + <component name="CompilerConfiguration"> + <option name="DEFAULT_COMPILER" value="Javac" /> + <option name="DEPLOY_AFTER_MAKE" value="0" /> + <resourceExtensions> + <entry name=".+\.(properties|xml|html|dtd|tld)" /> + <entry name=".+\.(gif|png|jpeg|jpg)" /> + </resourceExtensions> + <wildcardResourcePatterns> + <entry name="?*.properties" /> + <entry name="?*.xml" /> + <entry name="?*.gif" /> + <entry name="?*.png" /> + <entry name="?*.jpeg" /> + <entry name="?*.jpg" /> + <entry name="?*.html" /> + <entry name="?*.dtd" /> + <entry name="?*.tld" /> + <entry name="?*.ftl" /> + </wildcardResourcePatterns> + </component> + <component name="DependencyValidationManager"> + <option name="SKIP_IMPORT_STATEMENTS" value="false" /> + </component> + <component name="EclipseCompilerSettings"> + <option name="DEBUGGING_INFO" value="true" /> + <option name="GENERATE_NO_WARNINGS" value="true" /> + <option name="DEPRECATION" value="false" /> + <option name="ADDITIONAL_OPTIONS_STRING" value="" /> + <option name="MAXIMUM_HEAP_SIZE" value="128" /> + </component> + <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" /> + <component name="IdProvider" IDEtalkID="3252B0EE1010872AF5D1E872ECBFD2E1" /> + <component name="InspectionProjectProfileManager"> + <option name="PROJECT_PROFILE" value="Project Default" /> + <option name="USE_PROJECT_LEVEL_SETTINGS" value="false" /> + <scopes /> + <profiles> + <profile version="1.0" is_locked="false"> + <option name="myName" value="Project Default" /> + <option name="myLocal" value="false" /> + <inspection_tool class="JavaDoc" level="WARNING" enabled="true"> + <option name="TOP_LEVEL_CLASS_OPTIONS"> + <value> + <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" /> + <option name="REQUIRED_TAGS" value="" /> + </value> + </option> + <option name="INNER_CLASS_OPTIONS"> + <value> + <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" /> + <option name="REQUIRED_TAGS" value="" /> + </value> + </option> + <option name="METHOD_OPTIONS"> + <value> + <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" /> + <option name="REQUIRED_TAGS" value="@return@param@throws or @exception" /> + </value> + </option> + <option name="FIELD_OPTIONS"> + <value> + <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" /> + <option name="REQUIRED_TAGS" value="" /> + </value> + </option> + <option name="IGNORE_DEPRECATED" value="false" /> + <option name="IGNORE_JAVADOC_PERIOD" value="true" /> + <option name="myAdditionalJavadocTags" value="note" /> + </inspection_tool> + <inspection_tool class="OnDemandImport" level="WARNING" enabled="true" /> + <inspection_tool class="SamePackageImport" level="WARNING" enabled="true" /> + <inspection_tool class="JavaLangImport" level="WARNING" enabled="true" /> + <inspection_tool class="RedundantImport" level="WARNING" enabled="true" /> + <inspection_tool class="UnusedImport" level="WARNING" enabled="true" /> + <inspection_tool class="EmptyFinallyBlockJS" level="WARNING" enabled="true" /> + <inspection_tool class="EmptyFinallyBlock" level="WARNING" enabled="true" /> + <inspection_tool class="ContinueOrBreakFromFinallyBlock" level="WARNING" enabled="true" /> + <inspection_tool class="FinallyBlockCannotCompleteNormally" level="WARNING" enabled="true" /> + <inspection_tool class="NonFinalFieldOfException" level="WARNING" enabled="true" /> + <inspection_tool class="ReturnFromFinallyBlock" level="WARNING" enabled="true" /> + <inspection_tool class="ThrowFromFinallyBlock" level="WARNING" enabled="true" /> + <inspection_tool class="PublicField" level="WARNING" enabled="true"> + <option name="ignoreEnums" value="false" /> + </inspection_tool> + <inspection_tool class="ProtectedField" level="WARNING" enabled="true" /> + <inspection_tool class="PackageVisibleField" level="WARNING" enabled="true" /> + <inspection_tool class="FinalPrivateMethod" level="WARNING" enabled="true" /> + <inspection_tool class="FieldMayBeFinal" level="WARNING" enabled="true" /> + <inspection_tool class="LocalCanBeFinal" level="WARNING" enabled="true"> + <option name="REPORT_VARIABLES" value="true" /> + <option name="REPORT_PARAMETERS" value="true" /> + </inspection_tool> + <inspection_tool class="NoExplicitFinalizeCalls" level="WARNING" enabled="true" /> + <inspection_tool class="FinalizeCallsSuperFinalize" level="WARNING" enabled="true"> + <option name="m_ignoreForObjectSubclasses" value="false" /> + </inspection_tool> + <inspection_tool class="FinalizeNotProtected" level="WARNING" enabled="true" /> + <inspection_tool class="JDBCResource" level="WARNING" enabled="true" /> + <inspection_tool class="IOResource" level="WARNING" enabled="true" /> + <inspection_tool class="ChannelResource" level="WARNING" enabled="true" /> + <inspection_tool class="HibernateResource" level="WARNING" enabled="true" /> + <inspection_tool class="JNDIResource" level="WARNING" enabled="true" /> + <inspection_tool class="SocketResource" level="WARNING" enabled="true" /> + <inspection_tool class="PublicStaticArrayField" level="WARNING" enabled="true" /> + <inspection_tool class="PublicStaticCollectionField" level="WARNING" enabled="true" /> + <inspection_tool class="SerialVersionUIDNotStaticFinal" level="WARNING" enabled="true" /> + <inspection_tool class="ComparatorNotSerializable" level="WARNING" enabled="true" /> + <inspection_tool class="NonSerializableWithSerialVersionUIDField" level="WARNING" enabled="true" /> + <inspection_tool class="SerializableWithUnconstructableAncestor" level="WARNING" enabled="true" /> + <inspection_tool class="SerializableHasSerialVersionUIDField" level="WARNING" enabled="true"> + <option name="superClassString" value="java.awt.Component" /> + </inspection_tool> + <inspection_tool class="SerializableInnerClassHasSerialVersionUIDField" level="WARNING" enabled="true"> + <option name="superClassString" value="java.awt.Component" /> + </inspection_tool> + <inspection_tool class="SerializableInnerClassWithNonSerializableOuterClass" level="WARNING" enabled="true"> + <option name="superClassString" value="java.awt.Component" /> + </inspection_tool> + <inspection_tool class="TransientFieldInNonSerializableClass" level="WARNING" enabled="true" /> + <inspection_tool class="TransientFieldNotInitialized" level="WARNING" enabled="true" /> + <inspection_tool class="MagicNumber" level="WARNING" enabled="true"> + <option name="m_ignoreInHashCode" value="true" /> + </inspection_tool> + <inspection_tool class="RedundantImplements" level="WARNING" enabled="true" /> + <inspection_tool class="ReturnThis" level="WARNING" enabled="true" /> + <inspection_tool class="UnnecessaryInterfaceModifier" level="WARNING" enabled="true" /> + <inspection_tool class="PatternValidation" level="WARNING" enabled="true"> + <option name="CHECK_NON_CONSTANT_VALUES" value="true" /> + </inspection_tool> + <inspection_tool class="PatternNotApplicable" level="ERROR" enabled="true" /> + <inspection_tool class="PatternOverriddenByNonAnnotatedMethod" level="WARNING" enabled="true" /> + <inspection_tool class="BooleanConstructor" level="WARNING" enabled="true" /> + <inspection_tool class="ToArrayCallWithZeroLengthArrayArgument" level="WARNING" enabled="true" /> + <inspection_tool class="ConstantStringIntern" level="WARNING" enabled="true" /> + <inspection_tool class="CallToSimpleGetterInClass" level="WARNING" enabled="true"> + <option name="ignoreGetterCallsOnOtherObjects" value="false" /> + </inspection_tool> + <inspection_tool class="CallToSimpleSetterInClass" level="WARNING" enabled="true"> + <option name="ignoreSetterCallsOnOtherObjects" value="false" /> + </inspection_tool> + <inspection_tool class="TrivialStringConcatenation" level="WARNING" enabled="true" /> + <inspection_tool class="StringBufferReplaceableByString" level="WARNING" enabled="true" /> + <inspection_tool class="EqualsHashCodeCalledOnUrl" level="WARNING" enabled="true" /> + <inspection_tool class="FieldMayBeStatic" level="WARNING" enabled="true" /> + <inspection_tool class="InnerClassMayBeStatic" level="WARNING" enabled="true" /> + <inspection_tool class="InstantiatingObjectToGetClassObject" level="WARNING" enabled="true" /> + <inspection_tool class="KeySetIterationMayUseEntrySet" level="WARNING" enabled="true" /> + <inspection_tool class="ManualArrayCopy" level="WARNING" enabled="true" /> + <inspection_tool class="ManualArrayToCollectionCopy" level="WARNING" enabled="true" /> + <inspection_tool class="CollectionContainsUrl" level="WARNING" enabled="true" /> + <inspection_tool class="MapReplaceableByEnumMap" level="WARNING" enabled="true" /> + <inspection_tool class="MethodMayBeStatic" level="WARNING" enabled="true"> + <option name="m_onlyPrivateOrFinal" value="false" /> + <option name="m_ignoreEmptyMethods" value="true" /> + </inspection_tool> + <inspection_tool class="StringReplaceableByStringBuffer" level="WARNING" enabled="true"> + <option name="onlyWarnOnLoop" value="true" /> + </inspection_tool> + <inspection_tool class="ObjectAllocationInLoop" level="WARNING" enabled="true" /> + <inspection_tool class="SubstringZero" level="WARNING" enabled="true" /> + <inspection_tool class="StringToString" level="WARNING" enabled="true" /> + <inspection_tool class="RedundantStringFormatCall" level="WARNING" enabled="true" /> + <inspection_tool class="StringConstructor" level="WARNING" enabled="true"> + <option name="ignoreSubstringArguments" value="false" /> + </inspection_tool> + <inspection_tool class="SetReplaceableByEnumSet" level="WARNING" enabled="true" /> + <inspection_tool class="LengthOneStringsInConcatenation" level="WARNING" enabled="true" /> + <inspection_tool class="LengthOneStringInIndexOf" level="WARNING" enabled="true" /> + <inspection_tool class="SizeReplaceableByIsEmpty" level="WARNING" enabled="true"> + <option name="ignoreNegations" value="false" /> + </inspection_tool> + <inspection_tool class="StringConcatenationInLoops" level="WARNING" enabled="true"> + <option name="m_ignoreUnlessAssigned" value="false" /> + </inspection_tool> + <inspection_tool class="StringConcatenationInsideStringBufferAppend" level="WARNING" enabled="true" /> + <inspection_tool class="StringEqualsEmptyString" level="WARNING" enabled="true" /> + <inspection_tool class="StringBufferMustHaveInitialCapacity" level="WARNING" enabled="true" /> + <inspection_tool class="StringBufferReplaceableByStringBuilder" level="WARNING" enabled="true" /> + <inspection_tool class="StringBufferToStringInConcatenation" level="WARNING" enabled="true" /> + <inspection_tool class="TailRecursion" level="WARNING" enabled="true" /> + <inspection_tool class="UnnecessaryTemporaryOnConversionFromString" level="WARNING" enabled="true" /> + <inspection_tool class="UnnecessaryTemporaryOnConversionToString" level="WARNING" enabled="true" /> + <inspection_tool class="JavaLangReflect" level="WARNING" enabled="true" /> + <inspection_tool class="RandomDoubleForRandomInteger" level="WARNING" enabled="true" /> + <inspection_tool class="RuntimeExec" level="WARNING" enabled="true" /> + <inspection_tool class="SystemExit" level="WARNING" enabled="true" /> + <inspection_tool class="SystemGetenv" level="WARNING" enabled="true" /> + <inspection_tool class="HardcodedFileSeparators" level="WARNING" enabled="true"> + <option name="m_recognizeExampleMediaType" value="false" /> + </inspection_tool> + <inspection_tool class="HardcodedLineSeparators" level="WARNING" enabled="true" /> + <inspection_tool class="NativeMethods" level="WARNING" enabled="true" /> + <inspection_tool class="UseOfAWTPeerClass" level="WARNING" enabled="true" /> + <inspection_tool class="UseOfJDBCDriverClass" level="WARNING" enabled="true" /> + <inspection_tool class="UseOfProcessBuilder" level="WARNING" enabled="true" /> + <inspection_tool class="UseOfSunClasses" level="WARNING" enabled="true" /> + <inspection_tool class="ObjectToString" level="WARNING" enabled="true" /> + <inspection_tool class="ReplaceAllDot" level="WARNING" enabled="true" /> + <inspection_tool class="CastConflictsWithInstanceof" level="WARNING" enabled="true" /> + <inspection_tool class="CastToIncompatibleInterface" level="WARNING" enabled="true" /> + <inspection_tool class="CollectionAddedToSelf" level="WARNING" enabled="true" /> + <inspection_tool class="ComparableImplementedButEqualsNotOverridden" level="WARNING" enabled="true" /> + <inspection_tool class="ComparatorMethodParameterNotUsed" level="WARNING" enabled="true" /> + <inspection_tool class="MisspelledCompareTo" level="WARNING" enabled="true" /> + <inspection_tool class="NullArgumentToVariableArgMethod" level="WARNING" enabled="true" /> + <inspection_tool class="PrimitiveArrayArgumentToVariableArgMethod" level="WARNING" enabled="true" /> + <inspection_tool class="ConstantConditions" level="WARNING" enabled="true"> + <option name="SUGGEST_NULLABLE_ANNOTATIONS" value="false" /> + <option name="DONT_REPORT_TRUE_ASSERT_STATEMENTS" value="false" /> + </inspection_tool> + <inspection_tool class="CovariantCompareTo" level="WARNING" enabled="true" /> + <inspection_tool class="CovariantEquals" level="WARNING" enabled="true" /> + <inspection_tool class="EmptyInitializer" level="WARNING" enabled="true" /> + <inspection_tool class="MisspelledEquals" level="WARNING" enabled="true" /> + <inspection_tool class="EqualsBetweenInconvertibleTypes" level="WARNING" enabled="true" /> + <inspection_tool class="ArrayEquals" level="WARNING" enabled="true" /> + <inspection_tool class="EqualsWhichDoesntCheckParameterClass" level="WARNING" enabled="true" /> + <inspection_tool class="ForLoopThatDoesntUseLoopVariable" level="WARNING" enabled="true" /> + <inspection_tool class="MisspelledHashcode" level="WARNING" enabled="true" /> + <inspection_tool class="ImplicitArrayToString" level="WARNING" enabled="true" /> + <inspection_tool class="InfiniteRecursion" level="WARNING" enabled="true" /> + <inspection_tool class="InstanceofIncompatibleInterface" level="WARNING" enabled="true" /> + <inspection_tool class="InstantiationOfUtilityClass" level="WARNING" enabled="true" /> + <inspection_tool class="IteratorHasNextCallsIteratorNext" level="WARNING" enabled="true" /> + <inspection_tool class="IteratorNextDoesNotThrowNoSuchElementException" level="WARNING" enabled="true" /> + <inspection_tool class="MalformedFormatString" level="WARNING" enabled="true" /> + <inspection_tool class="MalformedRegex" level="WARNING" enabled="true" /> + <inspection_tool class="MalformedXPath" level="WARNING" enabled="true" /> + <inspection_tool class="MismatchedCollectionQueryUpdate" level="WARNING" enabled="true" /> + <inspection_tool class="MismatchedArrayReadWrite" level="WARNING" enabled="true" /> + <inspection_tool class="CompareToUsesNonFinalVariable" level="WARNING" enabled="true" /> + <inspection_tool class="EqualsUsesNonFinalVariable" level="WARNING" enabled="true" /> + <inspection_tool class="HashCodeUsesNonFinalVariable" level="WARNING" enabled="true" /> + <inspection_tool class="NonShortCircuitBoolean" level="WARNING" enabled="true" /> + <inspection_tool class="NullableProblems" level="WARNING" enabled="true"> + <option name="REPORT_NULLABLE_METHOD_OVERRIDES_NOTNULL" value="true" /> + <option name="REPORT_NOT_ANNOTATED_METHOD_OVERRIDES_NOTNULL" value="true" /> + <option name="REPORT_NOTNULL_PARAMETER_OVERRIDES_NULLABLE" value="true" /> + <option name="REPORT_NOT_ANNOTATED_PARAMETER_OVERRIDES_NOTNULL" value="true" /> + <option name="REPORT_NOT_ANNOTATED_GETTER" value="true" /> + <option name="REPORT_NOT_ANNOTATED_SETTER_PARAMETER" value="true" /> + <option name="REPORT_ANNOTATION_NOT_PROPAGATED_TO_OVERRIDERS" value="true" /> + </inspection_tool> + <inspection_tool class="NumberEquality" level="WARNING" enabled="true" /> + <inspection_tool class="ObjectEquality" level="WARNING" enabled="true"> + <option name="m_ignoreEnums" value="true" /> + <option name="m_ignoreClassObjects" value="false" /> + <option name="m_ignorePrivateConstructors" value="false" /> + </inspection_tool> + <inspection_tool class="ObjectEqualsNull" level="WARNING" enabled="true" /> + <inspection_tool class="VariableNotUsedInsideIf" level="WARNING" enabled="true" /> + <inspection_tool class="ReflectionForUnavailableAnnotation" level="WARNING" enabled="true" /> + <inspection_tool class="IgnoreResultOfCall" level="WARNING" enabled="true"> + <option name="m_reportAllNonLibraryCalls" value="false" /> + <option name="callCheckString" value="java.io.InputStream,read,java.io.InputStream,skip,java.lang.StringBuffer,toString,java.lang.StringBuilder,toString,java.lang.String,.*,java.math.BigInteger,.*,java.math.BigDecimal,.*,java.net.InetAddress,.*,java.io.File,.*,java.lang.Object,equals|hashCode" /> + </inspection_tool> + <inspection_tool class="ResultOfObjectAllocationIgnored" level="WARNING" enabled="true" /> + <inspection_tool class="ReturnNull" level="WARNING" enabled="true"> + <option name="m_reportObjectMethods" value="true" /> + <option name="m_reportArrayMethods" value="true" /> + <option name="m_reportCollectionMethods" value="true" /> + </inspection_tool> + <inspection_tool class="EmptyStatementBody" level="WARNING" enabled="true"> + <option name="m_reportEmptyBlocks" value="false" /> + </inspection_tool> + <inspection_tool class="StaticFieldReferenceOnSubclass" level="WARNING" enabled="true" /> + <inspection_tool class="StaticCallOnSubclass" level="WARNING" enabled="true" /> + <inspection_tool class="StringEquality" level="WARNING" enabled="true" /> + <inspection_tool class="NewStringBufferWithCharArgument" level="WARNING" enabled="true" /> + <inspection_tool class="SubtractionInCompareTo" level="WARNING" enabled="true" /> + <inspection_tool class="SuspiciousToArrayCall" level="WARNING" enabled="true" /> + <inspection_tool class="SuspiciousSystemArraycopy" level="WARNING" enabled="true" /> + <inspection_tool class="SuspiciousIndentAfterControlStatement" level="WARNING" enabled="true" /> + <inspection_tool class="SuspiciousNameCombination" level="WARNING" enabled="true"> + <group names="x,width,left,right" /> + <group names="y,height,top,bottom" /> + </inspection_tool> + <inspection_tool class="TextLabelInSwitchStatement" level="WARNING" enabled="true" /> + <inspection_tool class="ThrowableInstanceNeverThrown" level="WARNING" enabled="true" /> + <inspection_tool class="ThrowableResultOfMethodCallIgnored" level="WARNING" enabled="true" /> + <inspection_tool class="MisspelledToString" level="WARNING" enabled="true" /> + <inspection_tool class="UnusedAssignment" level="WARNING" enabled="true"> + <option name="REPORT_PREFIX_EXPRESSIONS" value="false" /> + <option name="REPORT_POSTFIX_EXPRESSIONS" value="true" /> + <option name="REPORT_REDUNDANT_INITIALIZER" value="true" /> + </inspection_tool> + <inspection_tool class="ArchaicSystemPropertyAccess" level="WARNING" enabled="true" /> + <inspection_tool class="ResultSetIndexZero" level="WARNING" enabled="true" /> + <inspection_tool class="UseOfPropertiesAsHashtable" level="WARNING" enabled="true" /> + <inspection_tool class="CheckNodeTest" level="WARNING" enabled="true" /> + <inspection_tool class="HardwiredNamespacePrefix" level="WARNING" enabled="true" /> + <inspection_tool class="ImplicitTypeConversion" level="WARNING" enabled="true"> + <option name="BITS" value="1720" /> + <option name="FLAG_EXPLICIT_CONVERSION" value="true" /> + <option name="IGNORE_NODESET_TO_BOOLEAN_VIA_STRING" value="true" /> + </inspection_tool> + <inspection_tool class="RedundantTypeConversion" level="WARNING" enabled="true"> + <option name="CHECK_ANY" value="true" /> + </inspection_tool> + <inspection_tool class="IndexZeroUsage" level="WARNING" enabled="true" /> + <inspection_tool class="XsltDeclarations" level="ERROR" enabled="true" /> + <inspection_tool class="XsltTemplateInvocation" level="ERROR" enabled="true" /> + <inspection_tool class="XsltUnusedDeclaration" level="WARNING" enabled="true" /> + <inspection_tool class="XmlUnboundNsPrefix" level="WARNING" enabled="true" /> + <inspection_tool class="XmlDuplicatedId" level="ERROR" enabled="true" /> + <inspection_tool class="AnonymousClassVariableHidesContainingMethodVariable" level="WARNING" enabled="true" /> + <inspection_tool class="ClassEscapesItsScope" level="WARNING" enabled="true" /> + <inspection_tool class="FieldHidesSuperclassField" level="WARNING" enabled="true"> + <option name="m_ignoreInvisibleFields" value="true" /> + </inspection_tool> + <inspection_tool class="AmbiguousMethodCall" level="WARNING" enabled="true" /> + <inspection_tool class="InnerClassVariableHidesOuterClassVariable" level="WARNING" enabled="true"> + <option name="m_ignoreInvisibleFields" value="true" /> + </inspection_tool> + <inspection_tool class="LocalVariableHidingMemberVariable" level="WARNING" enabled="true"> + <option name="m_ignoreInvisibleFields" value="true" /> + <option name="m_ignoreStaticMethods" value="true" /> + </inspection_tool> + <inspection_tool class="MethodOverloadsParentMethod" level="WARNING" enabled="true" /> + <inspection_tool class="MethodOverridesPackageLocalMethod" level="WARNING" enabled="true" /> + <inspection_tool class="MethodOverridesPrivateMethod" level="WARNING" enabled="true" /> + <inspection_tool class="MethodOverridesStaticMethod" level="WARNING" enabled="true" /> + <inspection_tool class="TypeParameterHidesVisibleType" level="WARNING" enabled="true" /> + <inspection_tool class="NoResourceMethodsFound" level="WARNING" enabled="true" /> + <inspection_tool class="AnnotationHasWrongMIMEType" level="WARNING" enabled="true" /> + <inspection_tool class="VoidMethodAnnotatedWithGET" level="WARNING" enabled="true" /> + <inspection_tool class="ResourceMethodInNonResourceClass" level="WARNING" enabled="true" /> + <inspection_tool class="AmbiguousPathAnnotation" level="WARNING" enabled="true" /> + <inspection_tool class="WebflowModelInspection" level="ERROR" enabled="true" /> + <inspection_tool class="RedundantArrayCreation" level="WARNING" enabled="true" /> + <inspection_tool class="RedundantTypeArguments" level="WARNING" enabled="true" /> + <inspection_tool class="RedundantCast" level="WARNING" enabled="true" /> + <inspection_tool class="VtlFileReferencesInspection" level="WARNING" enabled="true" /> + <inspection_tool class="VtlReferencesInspection" level="WARNING" enabled="true" /> + <inspection_tool class="VtlTypesInspection" level="WARNING" enabled="true" /> + <inspection_tool class="VtlInterpolationsInspection" level="ERROR" enabled="true" /> + <inspection_tool class="GroovyDuplicateSwitchBranch" level="WARNING" enabled="true" /> + <inspection_tool class="GroovyMethodWithInconsistentReturns" level="WARNING" enabled="true" /> + <inspection_tool class="GroovyUnreachableStatement" level="WARNING" enabled="true" /> + <inspection_tool class="AccessToNonThreadSafeStaticFieldFromInstance" level="WARNING" enabled="true"> + <option name="nonThreadSafeTypes" value="java.text.DateFormat,java.util.Calendar" /> + </inspection_tool> + <inspection_tool class="AccessToStaticFieldLockedOnInstance" level="WARNING" enabled="true" /> + <inspection_tool class="ArithmeticOnVolatileField" level="WARNING" enabled="true" /> + <inspection_tool class="AwaitNotInLoop" level="WARNING" enabled="true" /> + <inspection_tool class="AwaitWithoutCorrespondingSignal" level="WARNING" enabled="true" /> + <inspection_tool class="BusyWait" level="WARNING" enabled="true" /> + <inspection_tool class="ObjectNotify" level="WARNING" enabled="true" /> + <inspection_tool class="ConditionSignal" level="WARNING" enabled="true" /> + <inspection_tool class="SystemRunFinalizersOnExit" level="WARNING" enabled="true" /> + <inspection_tool class="ThreadRun" level="WARNING" enabled="true" /> + <inspection_tool class="ThreadPriority" level="WARNING" enabled="true" /> + <inspection_tool class="SleepWhileHoldingLock" level="WARNING" enabled="true" /> + <inspection_tool class="ThreadStartInConstruction" level="WARNING" enabled="true" /> + <inspection_tool class="ThreadStopSuspendResume" level="WARNING" enabled="true" /> + <inspection_tool class="ThreadYield" level="WARNING" enabled="true" /> + <inspection_tool class="CallToNativeMethodWhileLocked" level="WARNING" enabled="true" /> + <inspection_tool class="ExtendsThread" level="WARNING" enabled="true" /> + <inspection_tool class="DoubleCheckedLocking" level="WARNING" enabled="true"> + <option name="ignoreOnVolatileVariables" value="false" /> + </inspection_tool> + <inspection_tool class="EmptySynchronizedStatement" level="WARNING" enabled="true" /> + <inspection_tool class="FieldAccessedSynchronizedAndUnsynchronized" level="WARNING" enabled="true"> + <option name="countGettersAndSetters" value="false" /> + </inspection_tool> + <inspection_tool class="ThreadWithDefaultRunMethod" level="WARNING" enabled="true" /> + <inspection_tool class="SafeLock" level="WARNING" enabled="true" /> + <inspection_tool class="MethodMayBeSynchronized" level="WARNING" enabled="true" /> + <inspection_tool class="NestedSynchronizedStatement" level="WARNING" enabled="true" /> + <inspection_tool class="PublicFieldAccessedInSynchronizedContext" level="WARNING" enabled="true" /> + <inspection_tool class="NonSynchronizedMethodOverridesSynchronizedMethod" level="WARNING" enabled="true" /> + <inspection_tool class="NotifyCalledOnCondition" level="WARNING" enabled="true" /> + <inspection_tool class="NotifyNotInSynchronizedContext" level="WARNING" enabled="true" /> + <inspection_tool class="NakedNotify" level="WARNING" enabled="true" /> + <inspection_tool class="NotifyWithoutCorrespondingWait" level="WARNING" enabled="true" /> + <inspection_tool class="SignalWithoutCorrespondingAwait" level="WARNING" enabled="true" /> + <inspection_tool class="SynchronizeOnThis" level="WARNING" enabled="true" /> + <inspection_tool class="SynchronizeOnLock" level="WARNING" enabled="true" /> + <inspection_tool class="SynchronizeOnNonFinalField" level="WARNING" enabled="true" /> + <inspection_tool class="SynchronizedOnLiteralObject" level="WARNING" enabled="true" /> + <inspection_tool class="SynchronizationOnLocalVariableOrMethodParameter" level="WARNING" enabled="true"> + <option name="reportLocalVariables" value="true" /> + <option name="reportMethodParameters" value="true" /> + </inspection_tool> + <inspection_tool class="SynchronizedMethod" level="WARNING" enabled="true"> + <option name="m_includeNativeMethods" value="true" /> + </inspection_tool> + <inspection_tool class="UnconditionalWait" level="WARNING" enabled="true" /> + <inspection_tool class="VolatileArrayField" level="WARNING" enabled="true" /> + <inspection_tool class="VolatileLongOrDoubleField" level="WARNING" enabled="true" /> + <inspection_tool class="WaitCalledOnCondition" level="WARNING" enabled="true" /> + <inspection_tool class="WaitNotInLoop" level="WARNING" enabled="true" /> + <inspection_tool class="WaitOrAwaitWithoutTimeout" level="WARNING" enabled="true" /> + <inspection_tool class="WaitWhileHoldingTwoLocks" level="WARNING" enabled="true" /> + <inspection_tool class="WaitNotInSynchronizedContext" level="WARNING" enabled="true" /> + <inspection_tool class="WaitWithoutCorrespondingNotify" level="WARNING" enabled="true" /> + <inspection_tool class="WhileLoopSpinsOnField" level="WARNING" enabled="true"> + <option name="ignoreNonEmtpyLoops" value="false" /> + </inspection_tool> + <inspection_tool class="SqlAmbiguousColumnInspection" level="WARNING" enabled="true" /> + <inspection_tool class="SqlInsertValuesInspection" level="WARNING" enabled="true" /> + <inspection_tool class="SqlIdentifierInspection" level="WARNING" enabled="true" /> + <inspection_tool class="SqlResolveInspection" level="WARNING" enabled="true" /> + <inspection_tool class="SqlTypeInspection" level="WARNING" enabled="true" /> + <inspection_tool class="UnusedMessageFormatParameter" level="WARNING" enabled="true" /> + <inspection_tool class="UnusedProperty" level="WARNING" enabled="true" /> + <inspection_tool class="ClassUnconnectedToPackage" level="WARNING" enabled="true" /> + <inspection_tool class="PackageInMultipleModules" level="WARNING" enabled="true" /> + <inspection_tool class="DisjointPackage" level="WARNING" enabled="true" /> + <inspection_tool class="PackageWithTooFewClasses" level="WARNING" enabled="true"> + <option name="limit" value="3" /> + </inspection_tool> + <inspection_tool class="PackageWithTooManyClasses" level="WARNING" enabled="true"> + <option name="limit" value="10" /> + </inspection_tool> + <inspection_tool class="CharUsedInArithmeticContext" level="WARNING" enabled="true" /> + <inspection_tool class="ComparisonOfShortAndChar" level="WARNING" enabled="true" /> + <inspection_tool class="ComparisonToNaN" level="WARNING" enabled="true" /> + <inspection_tool class="ConfusingFloatingPointLiteral" level="WARNING" enabled="true" /> + <inspection_tool class="ConstantMathCall" level="WARNING" enabled="true" /> + <inspection_tool class="DivideByZero" level="WARNING" enabled="true" /> + <inspection_tool class="BigDecimalEquals" level="WARNING" enabled="true" /> + <inspection_tool class="FloatingPointEquality" level="WARNING" enabled="true" /> + <inspection_tool class="IntegerDivisionInFloatingPointContext" level="WARNING" enabled="true" /> + <inspection_tool class="IntegerMultiplicationImplicitCastToLong" level="WARNING" enabled="true" /> + <inspection_tool class="LongLiteralsEndingWithLowercaseL" level="WARNING" enabled="true" /> + <inspection_tool class="NonReproducibleMathCall" level="WARNING" enabled="true" /> + <inspection_tool class="CachedNumberConstructorCall" level="WARNING" enabled="true" /> + <inspection_tool class="CastThatLosesPrecision" level="WARNING" enabled="true"> + <option name="ignoreIntegerCharCasts" value="false" /> + </inspection_tool> + <inspection_tool class="OctalAndDecimalIntegersMixed" level="WARNING" enabled="true" /> + <inspection_tool class="OctalLiteral" level="WARNING" enabled="true" /> + <inspection_tool class="OverlyComplexArithmeticExpression" level="WARNING" enabled="true"> + <option name="m_limit" value="6" /> + </inspection_tool> + <inspection_tool class="PointlessArithmeticExpression" level="WARNING" enabled="true"> + <option name="m_ignoreExpressionsContainingConstants" value="false" /> + </inspection_tool> + <inspection_tool class="BadOddness" level="WARNING" enabled="true" /> + <inspection_tool class="UnaryPlus" level="WARNING" enabled="true" /> + <inspection_tool class="UnnecessaryUnaryMinus" level="WARNING" enabled="true" /> + <inspection_tool class="UnpredictableBigDecimalConstructorCall" level="WARNING" enabled="true" /> + <inspection_tool class="AnnotationNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[A-Z][A-Za-z\d]*" /> + <option name="m_minLength" value="8" /> + <option name="m_maxLength" value="64" /> + </inspection_tool> + <inspection_tool class="BooleanMethodNameMustStartWithQuestion" level="WARNING" enabled="true"> + <option name="questionString" value="is,can,has,should,could,will,shall,check,contains,equals,add,put,remove,startsWith,endsWith" /> + </inspection_tool> + <inspection_tool class="ClassNamePrefixedWithPackageName" level="WARNING" enabled="true" /> + <inspection_tool class="ClassNameSameAsAncestorName" level="WARNING" enabled="true" /> + <inspection_tool class="ClassNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[A-Z][A-Za-z\d]*" /> + <option name="m_minLength" value="8" /> + <option name="m_maxLength" value="64" /> + </inspection_tool> + <inspection_tool class="ConfusingMainMethod" level="WARNING" enabled="true" /> + <inspection_tool class="ConstantNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[A-Z_\d]*" /> + <option name="m_minLength" value="5" /> + <option name="m_maxLength" value="32" /> + </inspection_tool> + <inspection_tool class="EnumeratedClassNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[A-Z][A-Za-z\d]*" /> + <option name="m_minLength" value="8" /> + <option name="m_maxLength" value="64" /> + </inspection_tool> + <inspection_tool class="EnumeratedConstantNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[A-Z][A-Za-z\d]*" /> + <option name="m_minLength" value="5" /> + <option name="m_maxLength" value="32" /> + </inspection_tool> + <inspection_tool class="ExceptionNameDoesntEndWithException" level="WARNING" enabled="true" /> + <inspection_tool class="InstanceMethodNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[a-z][A-Za-z\d]*" /> + <option name="m_minLength" value="4" /> + <option name="m_maxLength" value="32" /> + </inspection_tool> + <inspection_tool class="InstanceVariableNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[a-z][A-Za-z\d]*" /> + <option name="m_minLength" value="5" /> + <option name="m_maxLength" value="32" /> + </inspection_tool> + <inspection_tool class="InterfaceNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[A-Z][A-Za-z\d]*" /> + <option name="m_minLength" value="8" /> + <option name="m_maxLength" value="64" /> + </inspection_tool> + <inspection_tool class="LocalVariableNamingConvention" level="WARNING" enabled="true"> + <option name="m_ignoreForLoopParameters" value="false" /> + <option name="m_ignoreCatchParameters" value="false" /> + <option name="m_regex" value="[a-z][A-Za-z\d]*" /> + <option name="m_minLength" value="1" /> + <option name="m_maxLength" value="32" /> + </inspection_tool> + <inspection_tool class="MethodNameSameAsClassName" level="WARNING" enabled="true" /> + <inspection_tool class="MethodNameSameAsParentName" level="WARNING" enabled="true" /> + <inspection_tool class="MethodNamesDifferOnlyByCase" level="WARNING" enabled="true" /> + <inspection_tool class="ParameterNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[a-z][A-Za-z\d]*" /> + <option name="m_minLength" value="1" /> + <option name="m_maxLength" value="20" /> + </inspection_tool> + <inspection_tool class="NonBooleanMethodNameMayNotStartWithQuestion" level="WARNING" enabled="true"> + <option name="questionString" value="is,can,has,should,could,will,shall,check,contains,equals,startsWith,endsWith" /> + </inspection_tool> + <inspection_tool class="UpperCaseFieldNameNotConstant" level="WARNING" enabled="true" /> + <inspection_tool class="NonExceptionNameEndsWithException" level="WARNING" enabled="true" /> + <inspection_tool class="OverloadedMethodsWithSameNumberOfParameters" level="WARNING" enabled="true" /> + <inspection_tool class="OverloadedVarargsMethod" level="WARNING" enabled="true" /> + <inspection_tool class="ParameterNameDiffersFromOverriddenParameter" level="WARNING" enabled="true"> + <option name="m_ignoreSingleCharacterNames" value="false" /> + <option name="m_ignoreOverridesOfLibraryMethods" value="false" /> + </inspection_tool> + <inspection_tool class="QuestionableName" level="WARNING" enabled="true"> + <option name="nameString" value="aa,abc,bad,bar,bar2,baz,baz1,baz2,baz3,bb,blah,bogus,bool,cc,dd,defau1t,dummy,dummy2,ee,fa1se,ff,foo,foo1,foo2,foo3,foobar,four,fred,fred1,fred2,gg,hh,hello,hello1,hello2,hello3,ii,nu11,one,silly,silly2,string,two,that,then,three,whi1e,var" /> + </inspection_tool> + <inspection_tool class="StandardVariableNames" level="WARNING" enabled="true" /> + <inspection_tool class="StaticMethodNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[a-z][A-Za-z\d]*" /> + <option name="m_minLength" value="4" /> + <option name="m_maxLength" value="32" /> + </inspection_tool> + <inspection_tool class="StaticVariableNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[a-z][A-Za-z\d]*" /> + <option name="m_minLength" value="5" /> + <option name="m_maxLength" value="32" /> + </inspection_tool> + <inspection_tool class="TypeParameterNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[A-Z\d]" /> + <option name="m_minLength" value="1" /> + <option name="m_maxLength" value="1" /> + </inspection_tool> + <inspection_tool class="DollarSignInName" level="WARNING" enabled="true" /> + <inspection_tool class="ModuleWithTooFewClasses" level="WARNING" enabled="true"> + <option name="limit" value="10" /> + </inspection_tool> + <inspection_tool class="ModuleWithTooManyClasses" level="WARNING" enabled="true"> + <option name="limit" value="100" /> + </inspection_tool> + <inspection_tool class="ParametersPerConstructor" level="WARNING" enabled="true"> + <option name="m_limit" value="5" /> + </inspection_tool> + <inspection_tool class="ThreeNegationsPerMethod" level="WARNING" enabled="true"> + <option name="m_ignoreInEquals" value="true" /> + </inspection_tool> + <inspection_tool class="MethodWithMultipleLoops" level="WARNING" enabled="true" /> + <inspection_tool class="MultipleReturnPointsPerMethod" level="WARNING" enabled="true"> + <option name="ignoreGuardClauses" value="false" /> + <option name="ignoreEqualsMethod" value="false" /> + <option name="m_limit" value="1" /> + </inspection_tool> + <inspection_tool class="ThrownExceptionsPerMethod" level="WARNING" enabled="true"> + <option name="m_limit" value="3" /> + </inspection_tool> + <inspection_tool class="ParametersPerMethod" level="WARNING" enabled="true"> + <option name="m_limit" value="5" /> + </inspection_tool> + <inspection_tool class="CyclomaticComplexity" level="WARNING" enabled="true"> + <option name="m_limit" value="10" /> + </inspection_tool> + <inspection_tool class="MethodCoupling" level="WARNING" enabled="true"> + <option name="m_includeJavaClasses" value="false" /> + <option name="m_includeLibraryClasses" value="false" /> + <option name="m_limit" value="10" /> + </inspection_tool> + <inspection_tool class="NonCommentSourceStatements" level="WARNING" enabled="true"> + <option name="m_limit" value="30" /> + </inspection_tool> + <inspection_tool class="NestingDepth" level="WARNING" enabled="true"> + <option name="m_limit" value="5" /> + </inspection_tool> + <inspection_tool class="SystemGC" level="WARNING" enabled="true" /> + <inspection_tool class="StaticCollection" level="WARNING" enabled="true"> + <option name="m_ignoreWeakCollections" value="false" /> + </inspection_tool> + <inspection_tool class="StringBufferField" level="WARNING" enabled="true" /> + <inspection_tool class="ZeroLengthArrayInitialization" level="WARNING" enabled="true" /> + <inspection_tool class="MavenModelInspection" level="ERROR" enabled="true" /> + <inspection_tool class="ClassWithMultipleLoggers" level="WARNING" enabled="true"> + <option name="loggerClassName" value="java.util.logging.Logger" /> + </inspection_tool> + <inspection_tool class="LogStatementGuardedByLogCondition" level="WARNING" enabled="true"> + <option name="loggerClassName" value="java.util.logging.Logger" /> + <option name="loggerMethodAndconditionMethodNames" value="fine,isLoggable(java.util.logging.Level.FINE),finer,isLoggable(java.util.logging.Level.FINER),finest,isLoggable(java.util.logging.Level.FINEST)" /> + </inspection_tool> + <inspection_tool class="LoggerInitializedWithForeignClass" level="WARNING" enabled="true"> + <option name="loggerClassName" value="org.apache.log4j.Logger" /> + <option name="loggerFactoryMethodName" value="getLogger" /> + </inspection_tool> + <inspection_tool class="LoggingConditionDisagreesWithLogStatement" level="WARNING" enabled="true" /> + <inspection_tool class="NonStaticFinalLogger" level="WARNING" enabled="true"> + <option name="loggerClassName" value="java.util.logging.Logger" /> + </inspection_tool> + <inspection_tool class="InjectionNotApplicable" level="ERROR" enabled="true" /> + <inspection_tool class="LanguageMismatch" level="WARNING" enabled="true"> + <option name="CHECK_NON_ANNOTATED_REFERENCES" value="true" /> + </inspection_tool> + <inspection_tool class="UnknownLanguage" level="ERROR" enabled="true" /> + <inspection_tool class="AssertEqualsBetweenInconvertibleTypes" level="WARNING" enabled="true" /> + <inspection_tool class="AssertEqualsMayBeAssertSame" level="WARNING" enabled="true" /> + <inspection_tool class="JUnit4AnnotatedMethodInJUnit3TestCase" level="WARNING" enabled="true" /> + <inspection_tool class="JUnitAbstractTestClassNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[A-Z][A-Za-z\d]*TestCase" /> + <option name="m_minLength" value="12" /> + <option name="m_maxLength" value="64" /> + </inspection_tool> + <inspection_tool class="TestCaseWithNoTestMethods" level="WARNING" enabled="true"> + <option name="ignoreSupers" value="false" /> + </inspection_tool> + <inspection_tool class="JUnitTestClassNamingConvention" level="WARNING" enabled="true"> + <option name="m_regex" value="[A-Z][A-Za-z\d]*Test" /> + <option name="m_minLength" value="8" /> + <option name="m_maxLength" value="64" /> + </inspection_tool> + <inspection_tool class="TestMethodInProductCode" level="WARNING" enabled="true" /> + <inspection_tool class="TestMethodWithoutAssertion" level="WARNING" enabled="true" /> + <inspection_tool class="TestCaseInProductCode" level="WARNING" enabled="true" /> + <inspection_tool class="TestCaseWithConstructor" level="WARNING" enabled="true" /> + <inspection_tool class="BeforeOrAfterIsPublicVoidNoArg" level="WARNING" enabled="true" /> + <inspection_tool class="BeforeClassOrAfterClassIsPublicStaticVoidNoArg" level="WARNING" enabled="true" /> + <inspection_tool class="AssertsWithoutMessages" level="WARNING" enabled="true" /> + <inspection_tool class="MisorderedAssertEqualsParameters" level="WARNING" enabled="true" /> + <inspection_tool class="SetupCallsSuperSetup" level="WARNING" enabled="true" /> + <inspection_tool class="MisspelledSetUp" level="WARNING" enabled="true" /> + <inspection_tool class="SetupIsPublicVoidNoArg" level="WARNING" enabled="true" /> + <inspection_tool class="SimplifiableJUnitAssertion" level="WARNING" enabled="true" /> + <inspection_tool class="StaticSuite" level="WARNING" enabled="true" /> + <inspection_tool class="TeardownCallsSuperTeardown" level="WARNING" enabled="true" /> + <inspection_tool class="MisspelledTearDown" level="WARNING" enabled="true" /> + <inspection_tool class="TeardownIsPublicVoidNoArg" level="WARNING" enabled="true" /> + <inspection_tool class="TestMethodIsPublicVoidNoArg" level="WARNING" enabled="true" /> + <inspection_tool class="UnconstructableTestCase" level="WARNING" enabled="true" /> + <inspection_tool class="FieldHasSetterButNoGetter" level="WARNING" enabled="true" /> + <inspection_tool class="AnnotationClass" level="WARNING" enabled="true" /> + <inspection_tool class="EnumerationCanBeIteration" level="WARNING" enabled="true" /> + <inspection_tool class="AssertAsName" level="WARNING" enabled="true" /> + <inspection_tool class="EnumAsName" level="WARNING" enabled="true" /> + <inspection_tool class="AccessStaticViaInstance" level="WARNING" enabled="true" /> + <inspection_tool class="Deprecation" level="WARNING" enabled="true" /> + <inspection_tool class="EqualsAndHashcode" level="WARNING" enabled="true" /> + <inspection_tool class="Dependency" level="ERROR" enabled="true" /> + <inspection_tool class="SSBasedInspection" level="WARNING" enabled="true" /> + <inspection_tool class="TestOnlyProblems" level="WARNING" enabled="true" /> + <inspection_tool class="UNCHECKED_WARNING" level="WARNING" enabled="true" /> + <inspection_tool class="SillyAssignment" level="WARNING" enabled="true" /> + <inspection_tool class="WrongPackageStatement" level="ERROR" enabled="true" /> + <inspection_tool class="UNUSED_IMPORT" level="WARNING" enabled="true" /> + <inspection_tool class="InfiniteLoopStatement" level="WARNING" enabled="true" /> + <inspection_tool class="LoopConditionNotUpdatedInsideLoop" level="WARNING" enabled="true"> + <option name="ignoreIterators" value="false" /> + </inspection_tool> + <inspection_tool class="NonSerializableFieldInSerializableClass" level="WARNING" enabled="true"> + <option name="superClassString" value="java.awt.Component" /> + </inspection_tool> + <inspection_tool class="NonSerializableObjectBoundToHttpSession" level="WARNING" enabled="true" /> + <inspection_tool class="NonSerializableObjectPassedToObjectStream" level="WARNING" enabled="true" /> + <inspection_tool class="ObsoleteCollection" level="WARNING" enabled="true"> + <option name="ignoreLibraryArguments" value="false" /> + </inspection_tool> + <inspection_tool class="ReturnOfCollectionField" level="WARNING" enabled="true"> + <option name="ignorePrivateMethods" value="true" /> + </inspection_tool> + <inspection_tool class="ExtendsConcreteCollection" level="WARNING" enabled="true" /> + <inspection_tool class="CollectionsFieldAccessReplaceableByMethodCall" level="WARNING" enabled="true" /> + <inspection_tool class="DeclareCollectionAsInterface" level="WARNING" enabled="true"> + <option name="ignoreLocalVariables" value="false" /> + <option name="ignorePrivateMethodsAndFields" value="false" /> + </inspection_tool> + <inspection_tool class="TypeMayBeWeakened" level="WARNING" enabled="true"> + <option name="useRighthandTypeAsWeakestTypeInAssignments" value="true" /> + <option name="useParameterizedTypeForCollectionMethods" value="true" /> + </inspection_tool> + </profile> + </profiles> + <list size="0" /> + </component> + <component name="JavacSettings"> + <option name="DEBUGGING_INFO" value="true" /> + <option name="GENERATE_NO_WARNINGS" value="false" /> + <option name="DEPRECATION" value="true" /> + <option name="ADDITIONAL_OPTIONS_STRING" value="" /> + <option name="MAXIMUM_HEAP_SIZE" value="128" /> + </component> + <component name="JavadocGenerationManager"> + <option name="OUTPUT_DIRECTORY" /> + <option name="OPTION_SCOPE" value="protected" /> + <option name="OPTION_HIERARCHY" value="true" /> + <option name="OPTION_NAVIGATOR" value="true" /> + <option name="OPTION_INDEX" value="true" /> + <option name="OPTION_SEPARATE_INDEX" value="true" /> + <option name="OPTION_DOCUMENT_TAG_USE" value="false" /> + <option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" /> + <option name="OPTION_DOCUMENT_TAG_VERSION" value="false" /> + <option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="true" /> + <option name="OPTION_DEPRECATED_LIST" value="true" /> + <option name="OTHER_OPTIONS" value="" /> + <option name="HEAP_SIZE" /> + <option name="LOCALE" /> + <option name="OPEN_IN_BROWSER" value="true" /> + </component> + <component name="JikesSettings"> + <option name="JIKES_PATH" value="" /> + <option name="DEBUGGING_INFO" value="true" /> + <option name="DEPRECATION" value="true" /> + <option name="GENERATE_NO_WARNINGS" value="false" /> + <option name="IS_EMACS_ERRORS_MODE" value="true" /> + <option name="ADDITIONAL_OPTIONS_STRING" value="" /> + </component> + <component name="Palette2"> + <group name="Swing"> + <item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false" can-attach-label="false"> + <default-constraints vsize-po... [truncated message content] |
From: <chr...@us...> - 2009-10-05 23:51:48
|
Revision: 1391 http://japi.svn.sourceforge.net/japi/?rev=1391&view=rev Author: christianhujer Date: 2009-10-05 23:51:41 +0000 (Mon, 05 Oct 2009) Log Message: ----------- Commit current IntelliJ IDEA project / module files. Modified Paths: -------------- tools/archStat/trunk/archStat.iml tools/archStat/trunk/archStat.ipr Modified: tools/archStat/trunk/archStat.iml =================================================================== --- tools/archStat/trunk/archStat.iml 2009-10-05 23:50:55 UTC (rev 1390) +++ tools/archStat/trunk/archStat.iml 2009-10-05 23:51:41 UTC (rev 1391) @@ -41,153 +41,6 @@ <Base> <setting name="state" value="1" /> </Base> - <LanguageOptions name="HTML"> - <option name="templateOptions"> - <value> - <option name="block" value="true" /> - <option name="separateBefore" value="false" /> - <option name="separateAfter" value="false" /> - <option name="prefixLines" value="true" /> - <option name="lenBefore" value="80" /> - <option name="lenAfter" value="80" /> - <option name="box" value="false" /> - <option name="filler" value="$TEMPLATE$" /> - </value> - </option> - <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> - <option name="keyword" value="Copyright" /> - <option name="fileTypeOverride" value="2" /> - <option name="relativeBefore" value="true" /> - <option name="addBlankAfter" value="true" /> - <option name="fileLocation" value="1" /> - <option name="useAlternate" value="false" /> - </LanguageOptions> - <LanguageOptions name="JAVA"> - <option name="templateOptions"> - <value> - <option name="block" value="true" /> - <option name="separateBefore" value="false" /> - <option name="separateAfter" value="false" /> - <option name="prefixLines" value="true" /> - <option name="lenBefore" value="80" /> - <option name="lenAfter" value="80" /> - <option name="box" value="false" /> - <option name="filler" value="$TEMPLATE$" /> - </value> - </option> - <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> - <option name="keyword" value="Copyright" /> - <option name="fileTypeOverride" value="2" /> - <option name="relativeBefore" value="true" /> - <option name="addBlankAfter" value="true" /> - <option name="fileLocation" value="1" /> - <option name="useAlternate" value="false" /> - </LanguageOptions> - <LanguageOptions name="JSP"> - <option name="templateOptions"> - <value> - <option name="block" value="true" /> - <option name="separateBefore" value="false" /> - <option name="separateAfter" value="false" /> - <option name="prefixLines" value="true" /> - <option name="lenBefore" value="80" /> - <option name="lenAfter" value="80" /> - <option name="box" value="false" /> - <option name="filler" value="$TEMPLATE$" /> - </value> - </option> - <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> - <option name="keyword" value="Copyright" /> - <option name="fileTypeOverride" value="2" /> - <option name="relativeBefore" value="true" /> - <option name="addBlankAfter" value="true" /> - <option name="fileLocation" value="1" /> - <option name="useAlternate" value="false" /> - </LanguageOptions> - <LanguageOptions name="JavaScript"> - <option name="templateOptions"> - <value> - <option name="block" value="true" /> - <option name="separateBefore" value="false" /> - <option name="separateAfter" value="false" /> - <option name="prefixLines" value="true" /> - <option name="lenBefore" value="80" /> - <option name="lenAfter" value="80" /> - <option name="box" value="false" /> - <option name="filler" value="$TEMPLATE$" /> - </value> - </option> - <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> - <option name="keyword" value="Copyright" /> - <option name="fileTypeOverride" value="2" /> - <option name="relativeBefore" value="true" /> - <option name="addBlankAfter" value="true" /> - <option name="fileLocation" value="1" /> - <option name="useAlternate" value="false" /> - </LanguageOptions> - <LanguageOptions name="Properties"> - <option name="templateOptions"> - <value> - <option name="block" value="true" /> - <option name="separateBefore" value="false" /> - <option name="separateAfter" value="false" /> - <option name="prefixLines" value="true" /> - <option name="lenBefore" value="80" /> - <option name="lenAfter" value="80" /> - <option name="box" value="false" /> - <option name="filler" value="$TEMPLATE$" /> - </value> - </option> - <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> - <option name="keyword" value="Copyright" /> - <option name="fileTypeOverride" value="2" /> - <option name="relativeBefore" value="true" /> - <option name="addBlankAfter" value="true" /> - <option name="fileLocation" value="1" /> - <option name="useAlternate" value="false" /> - </LanguageOptions> - <LanguageOptions name="XML"> - <option name="templateOptions"> - <value> - <option name="block" value="true" /> - <option name="separateBefore" value="false" /> - <option name="separateAfter" value="false" /> - <option name="prefixLines" value="true" /> - <option name="lenBefore" value="80" /> - <option name="lenAfter" value="80" /> - <option name="box" value="false" /> - <option name="filler" value="$TEMPLATE$" /> - </value> - </option> - <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> - <option name="keyword" value="Copyright" /> - <option name="fileTypeOverride" value="2" /> - <option name="relativeBefore" value="true" /> - <option name="addBlankAfter" value="true" /> - <option name="fileLocation" value="1" /> - <option name="useAlternate" value="false" /> - </LanguageOptions> - <LanguageOptions name="__TEMPLATE__"> - <option name="templateOptions"> - <value> - <option name="block" value="true" /> - <option name="separateBefore" value="false" /> - <option name="separateAfter" value="false" /> - <option name="prefixLines" value="true" /> - <option name="lenBefore" value="80" /> - <option name="lenAfter" value="80" /> - <option name="box" value="false" /> - <option name="filler" value="$TEMPLATE$" /> - </value> - </option> - <option name="notice" value="Copyright (c) &#36;today.year, Your Corporation. All Rights Reserved." /> - <option name="keyword" value="Copyright" /> - <option name="fileTypeOverride" value="4" /> - <option name="relativeBefore" value="true" /> - <option name="addBlankAfter" value="true" /> - <option name="fileLocation" value="1" /> - <option name="useAlternate" value="false" /> - </LanguageOptions> </component> </module> Modified: tools/archStat/trunk/archStat.ipr =================================================================== --- tools/archStat/trunk/archStat.ipr 2009-10-05 23:50:55 UTC (rev 1390) +++ tools/archStat/trunk/archStat.ipr 2009-10-05 23:51:41 UTC (rev 1391) @@ -881,8 +881,5 @@ <setting name="state" value="2" /> </Base> </component> - <UsedPathMacros> - <macro name="TEMPLATE" description="" /> - </UsedPathMacros> </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |