You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gr...@apache.org on 2009/04/09 19:25:41 UTC

svn commit: r763741 - in /commons/proper/compress/trunk/src/site: site.xml xdoc/conventions.xml

Author: grobmeier
Date: Thu Apr  9 17:25:40 2009
New Revision: 763741

URL: http://svn.apache.org/viewvc?rev=763741&view=rev
Log:
added conventions page

Added:
    commons/proper/compress/trunk/src/site/xdoc/conventions.xml
Modified:
    commons/proper/compress/trunk/src/site/site.xml

Modified: commons/proper/compress/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/site/site.xml?rev=763741&r1=763740&r2=763741&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/site/site.xml (original)
+++ commons/proper/compress/trunk/src/site/site.xml Thu Apr  9 17:25:40 2009
@@ -29,6 +29,7 @@
     <menu name="Compress">
       <item name="Overview"    href="/index.html"/>
       <item name="Examples"    href="/examples.html"/>
+      <item name="Conventions"    href="/conventions.html"/>
       <item name="Issue Tracking" href="/issue-tracking.html"/>
       <item name="Download"    href="/downloads.html"/>
       <item name="Wiki"        href="http://wiki.apache.org/commons/Compress"/>

Added: commons/proper/compress/trunk/src/site/xdoc/conventions.xml
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/site/xdoc/conventions.xml?rev=763741&view=auto
==============================================================================
--- commons/proper/compress/trunk/src/site/xdoc/conventions.xml (added)
+++ commons/proper/compress/trunk/src/site/xdoc/conventions.xml Thu Apr  9 17:25:40 2009
@@ -0,0 +1,69 @@
+<?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.
+-->
+<document>
+   <properties>
+      <title>Conventions</title>
+   </properties>
+
+   <body>
+      <section name="Code Style">
+            <p>
+            The developers of this component decided to follow the recommended standards
+            but not to include Checkstyle (or similar tools) into Commons Compress.
+            </p>
+      </section>
+      <section name="Multithreading">
+            <p>
+            Commons Compress does not aim to be threadsafe at the moment. But the developers
+            agreed to document multithreading behaviour in the javadocs.
+            </p>
+            <p>
+            We use some of the annotations from 
+            <a href="http://jcip.net/annotations/doc/net/jcip/annotations/package-summary.html">JCIP</a>
+            as JavaDoc tags. The used tags are: 
+    
+            <ul>
+                <li>@GuardedBy (field or method)</li>
+                <li>@Immutable (class)</li>
+                <li>@NotThreadSafe (class)</li>
+                <li>@ThreadSafe (class)</li>
+            </ul>
+
+            For example:
+            <source>
+/**
+ * Utility class that represents a four byte integer with conversion
+ * rules for the big endian byte order of ZIP files.
+ *
+ * @Immutable
+ */
+public final class ZipLong implements Cloneable {
+            </source> 
+            
+            and:
+            
+            <source> 
+private final char [] highChars;
+//@GuardedBy("this")
+private Simple8BitZipEncoding encoding;
+            </source>
+            </p>
+      </section>
+
+   </body>
+</document>