Author: rdonkin
Date: Mon Dec  9 05:53:10 2013
New Revision: 1549432

URL: http://svn.apache.org/r1549432
Log:
Add Java Doc.

Modified:
    
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL1License.java

Modified: 
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL1License.java
URL: 
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL1License.java?rev=1549432&r1=1549431&r2=1549432&view=diff
==============================================================================
--- 
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL1License.java
 (original)
+++ 
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL1License.java
 Mon Dec  9 05:53:10 2013
@@ -24,14 +24,16 @@ import static org.apache.rat.api.domain.
  * Licence matches GPL1 or later.
  */
 public class GPL1License extends FullTextMatchingLicense {
+
+       /** The Constant FIRST_LICENSE_LINE. */
        public static final String FIRST_LICENSE_LINE = "This program is free 
software; you can redistribute it and/or modify\n"
                        + " it under the terms of the GNU General Public 
License as published by\n"
                        + " the Free Software Foundation; either version 1, or 
(at your option)\n"
                        + " any later version.";
 
        /**
-     * 
-     */
+        * Instantiates a new gP l1 license.
+        */
        public GPL1License() {
                super(GPL1.licenseFamily(),
                                FIRST_LICENSE_LINE);


Reply via email to