Author: rdonkin
Date: Mon Dec  9 05:53:45 2013
New Revision: 1549434

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

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

Modified: 
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL3License.java
URL: 
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL3License.java?rev=1549434&r1=1549433&r2=1549434&view=diff
==============================================================================
--- 
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL3License.java
 (original)
+++ 
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL3License.java
 Mon Dec  9 05:53:45 2013
@@ -24,14 +24,16 @@ import static org.apache.rat.api.domain.
  * Licence matches GPL3 or later.
  */
 public class GPL3License 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 3 of 
the License, or\n"
                        + " (at your option) any later version.";
 
        /**
-     * 
-     */
+        * Instantiates a new gP l3 license.
+        */
        public GPL3License() {
                super(GPL3.licenseFamily(),
                                FIRST_LICENSE_LINE);


Reply via email to