[jboss-cvs] javassist/src/main/javassist/scopedpool ...

Kabir Khan kkhan at jboss.com
Thu Jul 13 06:04:51 EDT 2006


  User: kkhan   
  Date: 06/07/13 06:04:51

  Modified:    src/main/javassist/scopedpool       ScopedClassPool.java
                        ScopedClassPoolRepository.java
                        ScopedClassPoolFactory.java
                        ScopedClassPoolRepositoryImpl.java
                        SoftValueHashMap.java
                        ScopedClassPoolFactoryImpl.java
  Log:
  Update copyright notice
  
  Revision  Changes    Path
  1.2       +15 -21    javassist/src/main/javassist/scopedpool/ScopedClassPool.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ScopedClassPool.java
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/src/main/javassist/scopedpool/ScopedClassPool.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ScopedClassPool.java	13 Jul 2006 09:43:16 -0000	1.1
  +++ ScopedClassPool.java	13 Jul 2006 10:04:51 -0000	1.2
  @@ -1,24 +1,18 @@
   /*
  -  * 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.
  -  */
  +* Javassist, a Java-bytecode translator toolkit.
  +* Copyright (C) 2006 JBoss Inc., All Rights Reserved.
  +*
  +* The contents of this file are subject to the Mozilla Public License Version
  +* 1.1 (the "License"); you may not use this file except in compliance with
  +* the License.  Alternatively, the contents of this file may be used under
  +* the terms of the GNU Lesser General Public License Version 2.1 or later.
  +*
  +* Software distributed under the License is distributed on an "AS IS"  
  +basis,
  +* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  +* for the specific language governing rights and limitations under the
  +* License.
  +*/
   package javassist.scopedpool;
   
   import java.lang.ref.WeakReference;
  @@ -36,7 +30,7 @@
    * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
    * @author <a href="adrian at jboss.com">Adrian Brock</a>
    * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   public class ScopedClassPool extends ClassPool
   {
  
  
  
  1.2       +14 -20    javassist/src/main/javassist/scopedpool/ScopedClassPoolRepository.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ScopedClassPoolRepository.java
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/src/main/javassist/scopedpool/ScopedClassPoolRepository.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ScopedClassPoolRepository.java	13 Jul 2006 09:43:16 -0000	1.1
  +++ ScopedClassPoolRepository.java	13 Jul 2006 10:04:51 -0000	1.2
  @@ -1,24 +1,18 @@
   /*
  - * 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.
  - */
  +* Javassist, a Java-bytecode translator toolkit.
  +* Copyright (C) 2006 JBoss Inc., All Rights Reserved.
  +*
  +* The contents of this file are subject to the Mozilla Public License Version
  +* 1.1 (the "License"); you may not use this file except in compliance with
  +* the License.  Alternatively, the contents of this file may be used under
  +* the terms of the GNU Lesser General Public License Version 2.1 or later.
  +*
  +* Software distributed under the License is distributed on an "AS IS"  
  +basis,
  +* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  +* for the specific language governing rights and limitations under the
  +* License.
  +*/
   package javassist.scopedpool;
   
   import java.util.Map;
  @@ -28,7 +22,7 @@
   /**
    * 
    * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   public interface ScopedClassPoolRepository
   {
  
  
  
  1.2       +12 -18    javassist/src/main/javassist/scopedpool/ScopedClassPoolFactory.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ScopedClassPoolFactory.java
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/src/main/javassist/scopedpool/ScopedClassPoolFactory.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ScopedClassPoolFactory.java	13 Jul 2006 09:43:16 -0000	1.1
  +++ ScopedClassPoolFactory.java	13 Jul 2006 10:04:51 -0000	1.2
  @@ -1,23 +1,17 @@
   /*
  -* 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.
  +* Javassist, a Java-bytecode translator toolkit.
  +* Copyright (C) 2006 JBoss Inc., All Rights Reserved.
   *
  -* 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.
  +* The contents of this file are subject to the Mozilla Public License Version
  +* 1.1 (the "License"); you may not use this file except in compliance with
  +* the License.  Alternatively, the contents of this file may be used under
  +* the terms of the GNU Lesser General Public License Version 2.1 or later.
   *
  -* 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.
  +* Software distributed under the License is distributed on an "AS IS"  
  +basis,
  +* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  +* for the specific language governing rights and limitations under the
  +* License.
   */ 
   package javassist.scopedpool;
   
  @@ -26,7 +20,7 @@
   /**
    * 
    * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   public interface ScopedClassPoolFactory
   {
  
  
  
  1.2       +12 -18    javassist/src/main/javassist/scopedpool/ScopedClassPoolRepositoryImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ScopedClassPoolRepositoryImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/src/main/javassist/scopedpool/ScopedClassPoolRepositoryImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ScopedClassPoolRepositoryImpl.java	13 Jul 2006 09:43:16 -0000	1.1
  +++ ScopedClassPoolRepositoryImpl.java	13 Jul 2006 10:04:51 -0000	1.2
  @@ -1,23 +1,17 @@
   /*
  -* 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.
  +* Javassist, a Java-bytecode translator toolkit.
  +* Copyright (C) 2006 JBoss Inc., All Rights Reserved.
   *
  -* 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.
  +* The contents of this file are subject to the Mozilla Public License Version
  +* 1.1 (the "License"); you may not use this file except in compliance with
  +* the License.  Alternatively, the contents of this file may be used under
  +* the terms of the GNU Lesser General Public License Version 2.1 or later.
   *
  -* 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.
  +* Software distributed under the License is distributed on an "AS IS"  
  +basis,
  +* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  +* for the specific language governing rights and limitations under the
  +* License.
   */ 
   package javassist.scopedpool;
   
  @@ -33,7 +27,7 @@
   /**
    * 
    * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   public class ScopedClassPoolRepositoryImpl implements ScopedClassPoolRepository
   {
  
  
  
  1.2       +14 -20    javassist/src/main/javassist/scopedpool/SoftValueHashMap.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SoftValueHashMap.java
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/src/main/javassist/scopedpool/SoftValueHashMap.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- SoftValueHashMap.java	13 Jul 2006 09:43:16 -0000	1.1
  +++ SoftValueHashMap.java	13 Jul 2006 10:04:51 -0000	1.2
  @@ -1,24 +1,18 @@
   /*
  -  * 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.
  -  */
  +* Javassist, a Java-bytecode translator toolkit.
  +* Copyright (C) 2006 JBoss Inc., All Rights Reserved.
  +*
  +* The contents of this file are subject to the Mozilla Public License Version
  +* 1.1 (the "License"); you may not use this file except in compliance with
  +* the License.  Alternatively, the contents of this file may be used under
  +* the terms of the GNU Lesser General Public License Version 2.1 or later.
  +*
  +* Software distributed under the License is distributed on an "AS IS"  
  +basis,
  +* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  +* for the specific language governing rights and limitations under the
  +* License.
  +*/
   package javassist.scopedpool;
   
   import java.lang.ref.ReferenceQueue;
  @@ -33,7 +27,7 @@
    * This Map will remove entries when the value in the map has been
    * cleaned from garbage collection
    *
  - * @version <tt>$Revision: 1.1 $</tt>
  + * @version <tt>$Revision: 1.2 $</tt>
    * @author  <a href="mailto:bill at jboss.org">Bill Burke</a>
    */
   public class SoftValueHashMap
  
  
  
  1.2       +12 -18    javassist/src/main/javassist/scopedpool/ScopedClassPoolFactoryImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ScopedClassPoolFactoryImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/src/main/javassist/scopedpool/ScopedClassPoolFactoryImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ScopedClassPoolFactoryImpl.java	13 Jul 2006 09:43:16 -0000	1.1
  +++ ScopedClassPoolFactoryImpl.java	13 Jul 2006 10:04:51 -0000	1.2
  @@ -1,23 +1,17 @@
   /*
  -* 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.
  +* Javassist, a Java-bytecode translator toolkit.
  +* Copyright (C) 2006 JBoss Inc., All Rights Reserved.
   *
  -* 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.
  +* The contents of this file are subject to the Mozilla Public License Version
  +* 1.1 (the "License"); you may not use this file except in compliance with
  +* the License.  Alternatively, the contents of this file may be used under
  +* the terms of the GNU Lesser General Public License Version 2.1 or later.
   *
  -* 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.
  +* Software distributed under the License is distributed on an "AS IS"  
  +basis,
  +* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  +* for the specific language governing rights and limitations under the
  +* License.
   */ 
   package javassist.scopedpool;
   
  @@ -27,7 +21,7 @@
   /**
    * 
    * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   public class ScopedClassPoolFactoryImpl implements ScopedClassPoolFactory
   {
  
  
  



More information about the jboss-cvs-commits mailing list