Author: rdonkin
Date: Mon Dec 9 05:53:27 2013
New Revision: 1549433
URL: http://svn.apache.org/r1549433
Log:
Add Java Doc.
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL2License.java
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL2License.java
URL:
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL2License.java?rev=1549433&r1=1549432&r2=1549433&view=diff
==============================================================================
---
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL2License.java
(original)
+++
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/analysis/license/GPL2License.java
Mon Dec 9 05:53:27 2013
@@ -24,14 +24,16 @@ import static org.apache.rat.api.domain.
* Licence matches GPL2 or later.
*/
public class GPL2License 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\n"
+ " modify it under the terms of the GNU General Public
License\n"
+ " as published by the Free Software Foundation;
either version 2\n"
+ " of the License, or (at your option) any later
version.";
/**
- *
- */
+ * Instantiates a new gP l2 license.
+ */
public GPL2License() {
super(GPL2.licenseFamily(),
FIRST_LICENSE_LINE);