[jboss-svn-commits] JBoss Common SVN: r3019 - jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Thu Mar 5 13:15:47 EST 2009
Author: david.lloyd at jboss.com
Date: 2009-03-05 13:15:47 -0500 (Thu, 05 Mar 2009)
New Revision: 3019
Modified:
jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/Level.java
jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LogContext.java
jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LogContextSelector.java
jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LogManager.java
jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LoggerInstance.java
jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LoggerNode.java
jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LoggingWriter.java
jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/WriterOutputStream.java
Log:
Merge from trunk: copyright updates
Modified: jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/Level.java
===================================================================
--- jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/Level.java 2009-03-05 18:14:40 UTC (rev 3018)
+++ jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/Level.java 2009-03-05 18:15:47 UTC (rev 3019)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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.logmanager;
/**
Modified: jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LogContext.java
===================================================================
--- jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LogContext.java 2009-03-05 18:14:40 UTC (rev 3018)
+++ jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LogContext.java 2009-03-05 18:15:47 UTC (rev 3019)
@@ -1,8 +1,8 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, 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.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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
Modified: jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LogContextSelector.java
===================================================================
--- jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LogContextSelector.java 2009-03-05 18:14:40 UTC (rev 3018)
+++ jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LogContextSelector.java 2009-03-05 18:15:47 UTC (rev 3019)
@@ -1,8 +1,8 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, 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.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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
Modified: jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LogManager.java
===================================================================
--- jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LogManager.java 2009-03-05 18:14:40 UTC (rev 3018)
+++ jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LogManager.java 2009-03-05 18:15:47 UTC (rev 3019)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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.logmanager;
import java.beans.PropertyChangeListener;
Modified: jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LoggerInstance.java
===================================================================
--- jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LoggerInstance.java 2009-03-05 18:14:40 UTC (rev 3018)
+++ jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LoggerInstance.java 2009-03-05 18:15:47 UTC (rev 3019)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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.logmanager;
import java.util.logging.Filter;
Modified: jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LoggerNode.java
===================================================================
--- jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LoggerNode.java 2009-03-05 18:14:40 UTC (rev 3018)
+++ jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LoggerNode.java 2009-03-05 18:15:47 UTC (rev 3019)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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.logmanager;
import java.lang.ref.WeakReference;
Modified: jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LoggingWriter.java
===================================================================
--- jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LoggingWriter.java 2009-03-05 18:14:40 UTC (rev 3018)
+++ jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/LoggingWriter.java 2009-03-05 18:15:47 UTC (rev 3019)
@@ -1,8 +1,8 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, 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.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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
Modified: jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/WriterOutputStream.java
===================================================================
--- jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/WriterOutputStream.java 2009-03-05 18:14:40 UTC (rev 3018)
+++ jboss-logmanager/branches/1.0/src/main/java/org/jboss/logmanager/WriterOutputStream.java 2009-03-05 18:15:47 UTC (rev 3019)
@@ -1,8 +1,8 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, 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.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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
More information about the jboss-svn-commits
mailing list