Adding SPL to a few files (not all that need it by far). Developers - either BLD200504201800
authorjglick@netbeans.org
Tue, 19 Apr 2005 19:32:33 +0000
changeset 1682ad0334b5d07d
parent 1681 0d6bcfe17a30
child 1683 5e3ba7dc384f
Adding SPL to a few files (not all that need it by far). Developers - either
1. Remember to do it yourself.
2. Or run "ant -f nbbuild/monitor.xml check-licenses" periodically.
3. Or fix your templates (e.g. in the IDE) to include the SPL.
mdr/jmiutils/src/org/netbeans/lib/jmi/mapping/JMIMapperImplBeanInfo.java
mdr/src/org/netbeans/mdr/handlers/ClassLoaderProvider.java
     1.1 --- a/mdr/jmiutils/src/org/netbeans/lib/jmi/mapping/JMIMapperImplBeanInfo.java	Tue Apr 19 13:08:44 2005 +0000
     1.2 +++ b/mdr/jmiutils/src/org/netbeans/lib/jmi/mapping/JMIMapperImplBeanInfo.java	Tue Apr 19 19:32:33 2005 +0000
     1.3 @@ -1,3 +1,16 @@
     1.4 +/*
     1.5 + *                 Sun Public License Notice
     1.6 + *
     1.7 + * The contents of this file are subject to the Sun Public License
     1.8 + * Version 1.0 (the "License"). You may not use this file except in
     1.9 + * compliance with the License. A copy of the License is available at
    1.10 + * http://www.sun.com/
    1.11 + *
    1.12 + * The Original Code is NetBeans. The Initial Developer of the Original
    1.13 + * Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun
    1.14 + * Microsystems, Inc. All Rights Reserved.
    1.15 + */
    1.16 +
    1.17  package org.netbeans.lib.jmi.mapping;
    1.18  
    1.19  import java.beans.*;
    1.20 @@ -5,7 +18,7 @@
    1.21  
    1.22  public class JMIMapperImplBeanInfo extends SimpleBeanInfo {
    1.23      
    1.24 -    // Bean descriptor //GEN-FIRST:BeanDescriptor
    1.25 +    // Bean descriptor//GEN-FIRST:BeanDescriptor
    1.26      /*lazy BeanDescriptor*/
    1.27      private static BeanDescriptor getBdescriptor(){
    1.28          BeanDescriptor beanDescriptor = new BeanDescriptor  ( JMIMapperImpl.class , null );//GEN-HEADEREND:BeanDescriptor
    1.29 @@ -15,7 +28,7 @@
    1.30          return beanDescriptor;         }//GEN-LAST:BeanDescriptor
    1.31      
    1.32      
    1.33 -    // Property identifiers //GEN-FIRST:Properties
    1.34 +    // Property identifiers//GEN-FIRST:Properties
    1.35      private static final int PROPERTY_header = 0;
    1.36  
    1.37      // Property array 
    1.38 @@ -40,7 +53,7 @@
    1.39          
    1.40          // Here you can add code for customizing the event sets array.
    1.41          
    1.42 -        return eventSets;     } //GEN-LAST:Events
    1.43 +        return eventSets;     }//GEN-LAST:Events
    1.44      
    1.45      // Method information will be obtained from introspection.//GEN-FIRST:Methods
    1.46      private static MethodDescriptor[] methods = null;
    1.47 @@ -48,18 +61,18 @@
    1.48          
    1.49          // Here you can add code for customizing the methods array.
    1.50          
    1.51 -        return methods;     } //GEN-LAST:Methods
    1.52 +        return methods;     }//GEN-LAST:Methods
    1.53      
    1.54      
    1.55      private static final int defaultPropertyIndex = -1;//GEN-BEGIN:Idx
    1.56      private static final int defaultEventIndex = -1;//GEN-END:Idx
    1.57      
    1.58      
    1.59 - //GEN-FIRST:Superclass
    1.60 +//GEN-FIRST:Superclass
    1.61      
    1.62      // Here you can add code for customizing the Superclass BeanInfo.
    1.63      
    1.64 - //GEN-LAST:Superclass
    1.65 +//GEN-LAST:Superclass
    1.66      
    1.67      /**
    1.68       * Gets the bean's <code>BeanDescriptor</code>s.
     2.1 --- a/mdr/src/org/netbeans/mdr/handlers/ClassLoaderProvider.java	Tue Apr 19 13:08:44 2005 +0000
     2.2 +++ b/mdr/src/org/netbeans/mdr/handlers/ClassLoaderProvider.java	Tue Apr 19 19:32:33 2005 +0000
     2.3 @@ -1,13 +1,19 @@
     2.4  /*
     2.5 - * ClassLoaderProvider.java
     2.6 + *                 Sun Public License Notice
     2.7   *
     2.8 - * Created on May 18, 2002, 2:15 PM
     2.9 + * The contents of this file are subject to the Sun Public License
    2.10 + * Version 1.0 (the "License"). You may not use this file except in
    2.11 + * compliance with the License. A copy of the License is available at
    2.12 + * http://www.sun.com/
    2.13 + *
    2.14 + * The Original Code is NetBeans. The Initial Developer of the Original
    2.15 + * Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun
    2.16 + * Microsystems, Inc. All Rights Reserved.
    2.17   */
    2.18  
    2.19  package org.netbeans.mdr.handlers;
    2.20  
    2.21  /**
    2.22 - *
    2.23   * @author Martin Matula
    2.24   */
    2.25  public interface ClassLoaderProvider {