Author: simonetripodi
Date: Thu Aug 11 18:48:56 2011
New Revision: 1156726
URL: http://svn.apache.org/viewvc?rev=1156726&view=rev
Log:
upgrated checkstyle plugin and updated checkstyle config to latest sun checks
Added:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/package-info.java
(with props)
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/package-info.java
(with props)
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/collection/package-info.java
(with props)
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/comparator/package-info.java
(with props)
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/package-info.java
(with props)
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/package-info.java
(with props)
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/package-info.java
(with props)
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/package-info.java
(with props)
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/package-info.java
(with props)
Removed:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/package.html
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/package.html
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/collection/package.html
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/comparator/package.html
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/package.html
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/package.html
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/package.html
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/package.html
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/package.html
Modified:
commons/sandbox/functor/trunk/checkstyle.xml
commons/sandbox/functor/trunk/pom.xml
Modified: commons/sandbox/functor/trunk/checkstyle.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/checkstyle.xml?rev=1156726&r1=1156725&r2=1156726&view=diff
==============================================================================
--- commons/sandbox/functor/trunk/checkstyle.xml (original)
+++ commons/sandbox/functor/trunk/checkstyle.xml Thu Aug 11 18:48:56 2011
@@ -1,67 +1,205 @@
<?xml version="1.0"?>
<!--
-Licensed to the Apache Software Foundation (ASF) under one or more
-contributor license agreements. See the NOTICE file distributed with
-this work for additional information regarding copyright ownership.
-The ASF licenses this file to You under the Apache License, Version 2.0
-(the "License"); you may not use this file except in compliance with
-the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
-->
-
<!DOCTYPE module PUBLIC
- "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
- "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
+ "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
+ "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
+
+<!--
+
+ Checkstyle configuration that checks the sun coding conventions from:
+
+ - the Java Language Specification at
+ http://java.sun.com/docs/books/jls/second_edition/html/index.html
+
+ - the Sun Code Conventions at http://java.sun.com/docs/codeconv/
+
+ - the Javadoc guidelines at
+ http://java.sun.com/j2se/javadoc/writingdoccomments/index.html
+
+ - the JDK Api documentation http://java.sun.com/j2se/docs/api/index.html
+
+ - some best practices
+
+ Checkstyle is very configurable. Be sure to read the documentation at
+ http://checkstyle.sf.net (or in your downloaded distribution).
+
+ Most Checks are configurable, be sure to consult the documentation.
+
+ To completely disable a check, just comment it out or delete it from the
file.
+
+ Finally, it is worth reading the documentation.
+
+-->
-<!-- commons functor customization of default Checkstyle behavior, copied from
Lang -->
<module name="Checker">
- <property name="localeLanguage" value="en"/>
- <module name="PackageHtml"/>
- <module name="TreeWalker">
- <module name="TabCharacter"/>
- <module name="AvoidStarImport"/>
- <module name="RedundantImport"/>
- <module name="UnusedImports"/>
- <module name="NeedBraces"/>
- <module name="RedundantThrows">
- <property name="allowUnchecked" value="true"/>
- </module>
- <module name="LineLength">
- <property name="max" value="120"/>
- </module>
- <module name="JavadocMethod">
- <property name="allowUndeclaredRTE" value="true"/>
+ <!--
+ If you set the basedir property below, then all reported file
+ names will be relative to the specified directory. See
+ http://checkstyle.sourceforge.net/5.x/config.html#Checker
+
+ <property name="basedir" value="${basedir}"/>
+ -->
+
+ <!-- Checks that each Java package has a Javadoc file used for commenting.
-->
+ <!-- See http://checkstyle.sf.net/config_javadoc.html#JavadocPackage
-->
+ <module name="JavadocPackage">
+ <property name="allowLegacy" value="true"/>
</module>
- <!-- Checks for whitespace -->
- <!-- See http://checkstyle.sf.net/config_whitespace.html -->
- <module name="EmptyForIteratorPad"/>
- <module name="NoWhitespaceAfter">
- <!-- not ARRAY_INIT -->
- <property name="tokens"
value="BNOT,DEC,DOT,INC,LNOT,UNARY_MINUS,UNARY_PLUS" />
+ <!-- Checks whether files end with a new line. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
+ <module name="NewlineAtEndOfFile"/>
+
+ <!-- Checks that property files contain the same keys. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
+ <module name="Translation"/>
+
+ <module name="FileLength"/>
+
+ <!-- Following interprets the header file as regular expressions. -->
+ <!-- <module name="RegexpHeader"/> -->
+
+ <module name="FileTabCharacter">
+ <property name="eachLine" value="true"/>
</module>
- <module name="NoWhitespaceBefore"/>
- <module name="OperatorWrap"/>
- <module name="TabCharacter"/>
- <module name="WhitespaceAfter"/>
-
- <module name="GenericIllegalRegexp">
- <property name="format" value="\s+$"/>
- <property name="message" value="Line has trailing spaces."/>
+ <module name="RegexpSingleline">
+ <!-- \s matches whitespace character, $ matches end of line. -->
+ <property name="format" value="\s+$"/>
+ <property name="message" value="Line has trailing spaces."/>
</module>
- <module name="UpperEll"/>
- <module name="DeclarationOrder" />
- <module name="ModifierOrder" />
+ <module name="TreeWalker">
- </module>
+ <property name="cacheFile" value="${checkstyle.cache.file}"/>
+
+ <!-- Checks for Javadoc comments. -->
+ <!-- See http://checkstyle.sf.net/config_javadoc.html -->
+ <module name="JavadocMethod"/>
+ <module name="JavadocType"/>
+ <module name="JavadocVariable"/>
+ <module name="JavadocStyle"/>
+
+
+ <!-- Checks for Naming Conventions. -->
+ <!-- See http://checkstyle.sf.net/config_naming.html -->
+ <module name="ConstantName"/>
+ <module name="LocalFinalVariableName"/>
+ <module name="LocalVariableName"/>
+ <module name="MemberName"/>
+ <module name="MethodName"/>
+ <module name="PackageName"/>
+ <module name="ParameterName"/>
+ <module name="StaticVariableName"/>
+ <module name="TypeName"/>
+
+
+ <!-- Checks for Headers -->
+ <!-- See http://checkstyle.sf.net/config_header.html -->
+ <!-- <module name="Header"> -->
+ <!-- The follow property value demonstrates the ability -->
+ <!-- to have access to ANT properties. In this case it uses -->
+ <!-- the ${basedir} property to allow Checkstyle to be run -->
+ <!-- from any directory within a project. See property -->
+ <!-- expansion, -->
+ <!-- http://checkstyle.sf.net/config.html#properties -->
+ <!-- <property -->
+ <!-- name="headerFile" -->
+ <!-- value="${basedir}/java.header"/> -->
+ <!-- </module> -->
+
+
+ <!-- Checks for imports -->
+ <!-- See http://checkstyle.sf.net/config_import.html -->
+ <module name="AvoidStarImport"/>
+ <module name="IllegalImport"/> <!-- defaults to sun.* packages -->
+ <module name="RedundantImport"/>
+ <module name="UnusedImports"/>
+
+
+ <!-- Checks for Size Violations. -->
+ <!-- See http://checkstyle.sf.net/config_sizes.html -->
+ <module name="LineLength">
+ <property name="max" value="120"/>
+ </module>
+ <module name="MethodLength"/>
+ <module name="ParameterNumber"/>
+
+
+ <!-- Checks for whitespace -->
+ <!-- See http://checkstyle.sf.net/config_whitespace.html -->
+ <module name="EmptyForIteratorPad"/>
+ <module name="MethodParamPad"/>
+ <module name="NoWhitespaceAfter"/>
+ <module name="NoWhitespaceBefore"/>
+ <module name="OperatorWrap"/>
+ <module name="ParenPad"/>
+ <module name="TypecastParenPad"/>
+ <module name="WhitespaceAfter"/>
+ <module name="WhitespaceAround"/>
+
+
+ <!-- Modifier Checks -->
+ <!-- See http://checkstyle.sf.net/config_modifiers.html -->
+ <module name="ModifierOrder"/>
+ <module name="RedundantModifier"/>
+
+
+ <!-- Checks for blocks. You know, those {}'s -->
+ <!-- See http://checkstyle.sf.net/config_blocks.html -->
+ <module name="AvoidNestedBlocks"/>
+ <module name="EmptyBlock"/>
+ <module name="LeftCurly"/>
+ <module name="NeedBraces"/>
+ <module name="RightCurly"/>
+
+
+ <!-- Checks for common coding problems -->
+ <!-- See http://checkstyle.sf.net/config_coding.html -->
+ <module name="AvoidInlineConditionals"/>
+ <module name="DoubleCheckedLocking"/> <!-- MY FAVOURITE -->
+ <module name="EmptyStatement"/>
+ <module name="EqualsHashCode"/>
+ <module name="HiddenField"/>
+ <module name="IllegalInstantiation"/>
+ <module name="InnerAssignment"/>
+ <module name="MagicNumber"/>
+ <module name="MissingSwitchDefault"/>
+ <module name="RedundantThrows"/>
+ <module name="SimplifyBooleanExpression"/>
+ <module name="SimplifyBooleanReturn"/>
+
+ <!-- Checks for class design -->
+ <!-- See http://checkstyle.sf.net/config_design.html -->
+ <module name="DesignForExtension"/>
+ <module name="FinalClass"/>
+ <module name="HideUtilityClassConstructor"/>
+ <module name="InterfaceIsType"/>
+ <module name="VisibilityModifier"/>
+
+
+ <!-- Miscellaneous other checks. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html -->
+ <module name="ArrayTypeStyle"/>
+ <module name="FinalParameters"/>
+ <module name="TodoComment"/>
+ <module name="UpperEll"/>
+
+ </module>
</module>
Modified: commons/sandbox/functor/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/pom.xml?rev=1156726&r1=1156725&r2=1156726&view=diff
==============================================================================
--- commons/sandbox/functor/trunk/pom.xml (original)
+++ commons/sandbox/functor/trunk/pom.xml Thu Aug 11 18:48:56 2011
@@ -152,7 +152,7 @@
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.2</version>
+ <version>2.6</version>
<configuration>
<configLocation>${basedir}/checkstyle.xml</configLocation>
</configuration>
Added:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/package-info.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/package-info.java?rev=1156726&view=auto
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/package-info.java
(added)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/package-info.java
Thu Aug 11 18:48:56 2011
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * Classes that adapt one functor interface to another.
+ * </p>
+ */
+package org.apache.commons.functor.adapter;
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/package-info.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/package-info.java?rev=1156726&view=auto
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/package-info.java
(added)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/package-info.java
Thu Aug 11 18:48:56 2011
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * Various algorithm-esque functors.
+ * </p>
+ */
+package org.apache.commons.functor.core.algorithm;
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/collection/package-info.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/collection/package-info.java?rev=1156726&view=auto
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/collection/package-info.java
(added)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/collection/package-info.java
Thu Aug 11 18:48:56 2011
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * {@link java.util.Collection Collection}-based functors, algorithms and
utilities.
+ * </p>
+ */
+package org.apache.commons.functor.core.collection;
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/collection/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/collection/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/collection/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/comparator/package-info.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/comparator/package-info.java?rev=1156726&view=auto
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/comparator/package-info.java
(added)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/comparator/package-info.java
Thu Aug 11 18:48:56 2011
@@ -0,0 +1,24 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * {@link java.util.Comparator Comparator}- and
+ * {@link java.lang.Comparable Comparable}-based functors, algorithms and
utilities.
+ * </p>
+ */
+package org.apache.commons.functor.core.comparator;
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/comparator/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/comparator/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/comparator/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/package-info.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/package-info.java?rev=1156726&view=auto
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/package-info.java
(added)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/package-info.java
Thu Aug 11 18:48:56 2011
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * Functors composed of other functors.
+ * </p>
+ */
+package org.apache.commons.functor.core.composite;
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/package-info.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/package-info.java?rev=1156726&view=auto
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/package-info.java
(added)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/package-info.java
Thu Aug 11 18:48:56 2011
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * Commonly used functor implementations.
+ * </p>
+ */
+package org.apache.commons.functor.core;
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/package-info.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/package-info.java?rev=1156726&view=auto
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/package-info.java
(added)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/package-info.java
Thu Aug 11 18:48:56 2011
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * Contains code related to Generators.
+ * </p>
+ */
+package org.apache.commons.functor.generator;
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/package-info.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/package-info.java?rev=1156726&view=auto
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/package-info.java
(added)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/package-info.java
Thu Aug 11 18:48:56 2011
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * Contains utility code for Generators.
+ * </p>
+ */
+package org.apache.commons.functor.generator.util;
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/util/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/package-info.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/package-info.java?rev=1156726&view=auto
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/package-info.java
(added)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/package-info.java
Thu Aug 11 18:48:56 2011
@@ -0,0 +1,37 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * <p>
+ * Basic functor interfaces.
+ * </p>
+ * <p>
+ * Implementors are encouraged, but not strictly required, to make each functor
+ * implementation {@link java.io.Serializable Serializable}.
+ * </p>
+ * <p>
+ * Note that each functor interface extends the
+ * {@link java.lang.Object#equals Object.equals} contract to state that
+ * <code>equals</code> can return <tt>true</tt> <i>only</i> if
+ * the specified Object implements the same functor interface
+ * and is known to produce the same results and/or side-effects
+ * for the same arguments (if any). Note that the default
+ * <code>Object.equals</code> implementation
+ * does in fact adhere to the functor <code>equals</code> contract.
+ * </p>
+ */
+package org.apache.commons.functor;
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain