You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by re...@locus.apache.org on 2000/05/17 03:29:45 UTC

cvs commit: jakarta-slide/src/share/org/apache/slide/util HashMap.java

remm        00/05/16 18:29:44

  Modified:    src/share/org/apache/slide/util HashMap.java
  Log:
  Updated HashMap licence to the Exolab licence.
  
  Remy
  
  Revision  Changes    Path
  1.2       +42 -18    jakarta-slide/src/share/org/apache/slide/util/HashMap.java
  
  Index: HashMap.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/share/org/apache/slide/util/HashMap.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- HashMap.java	2000/05/10 04:15:06	1.1
  +++ HashMap.java	2000/05/17 01:29:42	1.2
  @@ -1,22 +1,46 @@
  -/*
  - * (C) Copyright Keith Visco 2000.  All rights reserved.
  +/**
  + * Redistribution and use of this software and associated documentation
  + * ("Software"), with or without modification, are permitted provided
  + * that the following conditions are met:
  + *
  + * 1. Redistributions of source code must retain copyright
  + *    statements and notices.  Redistributions must also contain a
  + *    copy of this document.
  + *
  + * 2. Redistributions in binary form must reproduce the
  + *    above copyright notice, this list of conditions and the
  + *    following disclaimer in the documentation and/or other
  + *    materials provided with the distribution.
  + *
  + * 3. The name "Exolab" must not be used to endorse or promote
  + *    products derived from this Software without prior written
  + *    permission of Exoffice Technologies.  For written permission,
  + *    please contact info@exolab.org.
  + *
  + * 4. Products derived from this Software may not be called "Exolab"
  + *    nor may "Exolab" appear in their names without prior written
  + *    permission of Exoffice Technologies. Exolab is a registered
  + *    trademark of Exoffice Technologies.
  + *
  + * 5. Due credit should be given to the Exolab Project
  + *    (http://www.exolab.org/).
  + *
  + * THIS SOFTWARE IS PROVIDED BY EXOFFICE TECHNOLOGIES AND CONTRIBUTORS
  + * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
  + * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
  + * EXOFFICE TECHNOLOGIES OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  + * OF THE POSSIBILITY OF SUCH DAMAGE.
    *
  - * The contents of this file are released under an Open Source 
  - * Definition (OSD) compliant license; you may not use this file 
  - * execpt in compliance with the license. Please see license.txt, 
  - * distributed with this file. You may also obtain a copy of the
  - * license at http://www.clc-marketing.com/xslp/license.txt
  - *
  - * The program is provided "as is" without any warranty express or
  - * implied, including the warranty of non-infringement and the implied
  - * warranties of merchantibility and fitness for a particular purpose.
  - * The Copyright owner will not be liable for any damages suffered by
  - * you as a result of using the Program. In no event will the Copyright
  - * owner be liable for any special, indirect or consequential damages or
  - * lost profits even if the Copyright owner has been advised of the
  - * possibility of their occurrence.
  + * Copyright 1999 (C) Exoffice Technologies Inc. All Rights Reserved.
    *
  - * $Id: HashMap.java,v 1.1 2000/05/10 04:15:06 remm Exp $
  + * $Id: HashMap.java,v 1.2 2000/05/17 01:29:42 remm Exp $
    */
   
   package org.apache.slide.util;
  @@ -27,7 +51,7 @@
    * so be careful in a threaded environment. I also do not specifically
    * "implements" java.util.Map, since support for JDK 1.1 is needed. 
    * @author <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
  - * @version $Revision: 1.1 $ $Date: 2000/05/10 04:15:06 $
  + * @version $Revision: 1.2 $ $Date: 2000/05/17 01:29:42 $
   **/
   public class HashMap {