[jboss-cvs] JBossAS SVN: r57184 - branches/Branch_4_0/varia/src/main/org/jboss/tools/license

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Sep 26 07:01:37 EDT 2006


Author: dimitris at jboss.org
Date: 2006-09-26 07:01:35 -0400 (Tue, 26 Sep 2006)
New Revision: 57184

Modified:
   branches/Branch_4_0/varia/src/main/org/jboss/tools/license/ValidateLicenseHeaders.java
Log:
JBAS-3601, switch copyright to RedHat Middleware LLC

Modified: branches/Branch_4_0/varia/src/main/org/jboss/tools/license/ValidateLicenseHeaders.java
===================================================================
--- branches/Branch_4_0/varia/src/main/org/jboss/tools/license/ValidateLicenseHeaders.java	2006-09-26 10:49:24 UTC (rev 57183)
+++ branches/Branch_4_0/varia/src/main/org/jboss/tools/license/ValidateLicenseHeaders.java	2006-09-26 11:01:35 UTC (rev 57184)
@@ -1,51 +1,52 @@
 /*
-* JBoss, Home of Professional Open Source
-* Copyright 2005, JBoss Inc., and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* This is free software; you can redistribute it and/or modify it
-* under the terms of the GNU Lesser General Public License as
-* published by the Free Software Foundation; either version 2.1 of
-* the License, or (at your option) any later version.
-*
-* This software is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this software; if not, write to the Free
-* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-*/
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.tools.license;
 
 import java.io.File;
 import java.io.FileFilter;
-import java.io.IOException;
-import java.io.FileWriter;
 import java.io.FileInputStream;
 import java.io.FileOutputStream;
+import java.io.FileWriter;
+import java.io.IOException;
 import java.io.RandomAccessFile;
 import java.io.SyncFailedException;
+import java.net.URL;
+import java.nio.ByteBuffer;
+import java.nio.channels.FileChannel;
 import java.util.ArrayList;
+import java.util.Iterator;
 import java.util.List;
-import java.util.Iterator;
 import java.util.Map;
 import java.util.TreeMap;
 import java.util.logging.Level;
 import java.util.logging.Logger;
-import java.nio.channels.FileChannel;
-import java.nio.ByteBuffer;
-import java.net.URL;
+
 import javax.xml.parsers.DocumentBuilder;
 import javax.xml.parsers.DocumentBuilderFactory;
 
 import org.w3c.dom.Document;
 import org.w3c.dom.Element;
+import org.w3c.dom.Node;
 import org.w3c.dom.NodeList;
-import org.w3c.dom.Node;
 
 /**
  * A utility which scans all java source files in the cvs tree and validates
@@ -61,10 +62,10 @@
    static final String COPYRIGHT_REGEX = "copyright\\s(\\(c\\))*\\s*[\\d]+(\\s*,\\s*[\\d]+|\\s*-\\s*[\\d]+)*";
 
    static final String DEFAULT_HEADER = "/*\n" +
-  " * JBoss, Home of Professional Open Source\n" +
-  " * Copyright 2005, JBoss Inc., and individual contributors as indicated\n" +
-  " * by the @authors tag. See the copyright.txt in the distribution for a\n" +
-  " * full listing of individual contributors.\n" +
+  " * JBoss, Home of Professional Open Source.\n" +
+  " * Copyright 2006, Red Hat Middleware LLC, and individual contributors\n" +
+  " * as indicated by the @author tags. See the copyright.txt file in the\n" +
+  " * distribution for a full listing of individual contributors.\n" +
   " *\n" +
   " * This is free software; you can redistribute it and/or modify it\n" +
   " * under the terms of the GNU Lesser General Public License as\n" +




More information about the jboss-cvs-commits mailing list