jdk/src/share/classes/java/beans/MethodDescriptor.java
author malenkov
Mon, 17 Dec 2012 16:58:56 +0400
changeset 14887 226dd1cda199
parent 11120 f8576c769572
child 20110 85b98c3054f6
permissions -rw-r--r--
8005065: [findbugs] reference to mutable array in JavaBeans Reviewed-by: alexsch
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
14887
226dd1cda199 8005065: [findbugs] reference to mutable array in JavaBeans
malenkov
parents: 11120
diff changeset
     2
 * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4960
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4960
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4960
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4960
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4960
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.beans;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.lang.ref.Reference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.lang.ref.WeakReference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.lang.reflect.Method;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.List;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.ArrayList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * A MethodDescriptor describes a particular method that a Java Bean
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * supports for external access from other components.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
public class MethodDescriptor extends FeatureDescriptor {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    private Reference<Method> methodRef;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    private String[] paramNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
11120
f8576c769572 7116954: Misc warnings in java.beans/java.beans.context
mcimadamore
parents: 6657
diff changeset
    45
    private List<WeakReference<Class<?>>> params;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private ParameterDescriptor parameterDescriptors[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     * Constructs a <code>MethodDescriptor</code> from a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     * <code>Method</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     * @param method    The low-level method information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    public MethodDescriptor(Method method) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        this(method, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * Constructs a <code>MethodDescriptor</code> from a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * <code>Method</code> providing descriptive information for each
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * of the method's parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * @param method    The low-level method information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * @param parameterDescriptors  Descriptive information for each of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     *                          method's parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    public MethodDescriptor(Method method,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                ParameterDescriptor parameterDescriptors[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        setName(method.getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        setMethod(method);
14887
226dd1cda199 8005065: [findbugs] reference to mutable array in JavaBeans
malenkov
parents: 11120
diff changeset
    73
        this.parameterDescriptors = (parameterDescriptors != null)
226dd1cda199 8005065: [findbugs] reference to mutable array in JavaBeans
malenkov
parents: 11120
diff changeset
    74
                ? parameterDescriptors.clone()
226dd1cda199 8005065: [findbugs] reference to mutable array in JavaBeans
malenkov
parents: 11120
diff changeset
    75
                : null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * Gets the method that this MethodDescriptor encapsualtes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * @return The low-level description of the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    public synchronized Method getMethod() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        Method method = getMethod0();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        if (method == null) {
11120
f8576c769572 7116954: Misc warnings in java.beans/java.beans.context
mcimadamore
parents: 6657
diff changeset
    86
            Class<?> cls = getClass0();
5947
0e6f2837eeca 6707234: Method returned by Introspector.internalFindMethod not necessarily most specific
malenkov
parents: 5506
diff changeset
    87
            String name = getName();
0e6f2837eeca 6707234: Method returned by Introspector.internalFindMethod not necessarily most specific
malenkov
parents: 5506
diff changeset
    88
            if ((cls != null) && (name != null)) {
11120
f8576c769572 7116954: Misc warnings in java.beans/java.beans.context
mcimadamore
parents: 6657
diff changeset
    89
                Class<?>[] params = getParams();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
                if (params == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                    for (int i = 0; i < 3; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                        // Find methods for up to 2 params. We are guessing here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                        // This block should never execute unless the classloader
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                        // that loaded the argument classes disappears.
6657
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5947
diff changeset
    95
                        method = Introspector.findMethod(cls, name, i, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                        if (method != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
                            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                } else {
6657
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5947
diff changeset
   101
                    method = Introspector.findMethod(cls, name, params.length, params);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                setMethod(method);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        return method;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    private synchronized void setMethod(Method method) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        if (method == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        if (getClass0() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            setClass0(method.getDeclaringClass());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        setParams(getParameterTypes(getClass0(), method));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        this.methodRef = getSoftReference(method);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    private Method getMethod0() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        return (this.methodRef != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                ? this.methodRef.get()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                : null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
11120
f8576c769572 7116954: Misc warnings in java.beans/java.beans.context
mcimadamore
parents: 6657
diff changeset
   126
    private synchronized void setParams(Class<?>[] param) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        if (param == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        paramNames = new String[param.length];
11120
f8576c769572 7116954: Misc warnings in java.beans/java.beans.context
mcimadamore
parents: 6657
diff changeset
   131
        params = new ArrayList<>(param.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        for (int i = 0; i < param.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            paramNames[i] = param[i].getName();
11120
f8576c769572 7116954: Misc warnings in java.beans/java.beans.context
mcimadamore
parents: 6657
diff changeset
   134
            params.add(new WeakReference<Class<?>>(param[i]));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    // pp getParamNames used as an optimization to avoid method.getParameterTypes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    String[] getParamNames() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        return paramNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
11120
f8576c769572 7116954: Misc warnings in java.beans/java.beans.context
mcimadamore
parents: 6657
diff changeset
   143
    private synchronized Class<?>[] getParams() {
f8576c769572 7116954: Misc warnings in java.beans/java.beans.context
mcimadamore
parents: 6657
diff changeset
   144
        Class<?>[] clss = new Class<?>[params.size()];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        for (int i = 0; i < params.size(); i++) {
11120
f8576c769572 7116954: Misc warnings in java.beans/java.beans.context
mcimadamore
parents: 6657
diff changeset
   147
            Reference<? extends Class<?>> ref = (Reference<? extends Class<?>>)params.get(i);
f8576c769572 7116954: Misc warnings in java.beans/java.beans.context
mcimadamore
parents: 6657
diff changeset
   148
            Class<?> cls = ref.get();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            if (cls == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                clss[i] = cls;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        return clss;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * Gets the ParameterDescriptor for each of this MethodDescriptor's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * method's parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * @return The locale-independent names of the parameters.  May return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     *          a null array if the parameter names aren't known.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    public ParameterDescriptor[] getParameterDescriptors() {
14887
226dd1cda199 8005065: [findbugs] reference to mutable array in JavaBeans
malenkov
parents: 11120
diff changeset
   166
        return (this.parameterDescriptors != null)
226dd1cda199 8005065: [findbugs] reference to mutable array in JavaBeans
malenkov
parents: 11120
diff changeset
   167
                ? this.parameterDescriptors.clone()
226dd1cda199 8005065: [findbugs] reference to mutable array in JavaBeans
malenkov
parents: 11120
diff changeset
   168
                : null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * Package-private constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * Merge two method descriptors.  Where they conflict, give the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * second argument (y) priority over the first argument (x).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * @param x  The first (lower priority) MethodDescriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @param y  The second (higher priority) MethodDescriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    MethodDescriptor(MethodDescriptor x, MethodDescriptor y) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        super(x,y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        methodRef = x.methodRef;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        if (y.methodRef != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            methodRef = y.methodRef;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        params = x.params;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        if (y.params != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            params = y.params;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        paramNames = x.paramNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        if (y.paramNames != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            paramNames = y.paramNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        parameterDescriptors = x.parameterDescriptors;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        if (y.parameterDescriptors != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
            parameterDescriptors = y.parameterDescriptors;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * Package-private dup constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * This must isolate the new object from any changes to the old object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    MethodDescriptor(MethodDescriptor old) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        super(old);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        methodRef = old.methodRef;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        params = old.params;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        paramNames = old.paramNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        if (old.parameterDescriptors != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            int len = old.parameterDescriptors.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            parameterDescriptors = new ParameterDescriptor[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            for (int i = 0; i < len ; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                parameterDescriptors[i] = new ParameterDescriptor(old.parameterDescriptors[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
4960
99ac74ca2f2f 4498236: RFE: Provide a toString method for PropertyChangeEvent and other classes
malenkov
parents: 2
diff changeset
   221
    void appendTo(StringBuilder sb) {
99ac74ca2f2f 4498236: RFE: Provide a toString method for PropertyChangeEvent and other classes
malenkov
parents: 2
diff changeset
   222
        appendTo(sb, "method", this.methodRef);
99ac74ca2f2f 4498236: RFE: Provide a toString method for PropertyChangeEvent and other classes
malenkov
parents: 2
diff changeset
   223
        if (this.parameterDescriptors != null) {
99ac74ca2f2f 4498236: RFE: Provide a toString method for PropertyChangeEvent and other classes
malenkov
parents: 2
diff changeset
   224
            sb.append("; parameterDescriptors={");
99ac74ca2f2f 4498236: RFE: Provide a toString method for PropertyChangeEvent and other classes
malenkov
parents: 2
diff changeset
   225
            for (ParameterDescriptor pd : this.parameterDescriptors) {
99ac74ca2f2f 4498236: RFE: Provide a toString method for PropertyChangeEvent and other classes
malenkov
parents: 2
diff changeset
   226
                sb.append(pd).append(", ");
99ac74ca2f2f 4498236: RFE: Provide a toString method for PropertyChangeEvent and other classes
malenkov
parents: 2
diff changeset
   227
            }
99ac74ca2f2f 4498236: RFE: Provide a toString method for PropertyChangeEvent and other classes
malenkov
parents: 2
diff changeset
   228
            sb.setLength(sb.length() - 2);
99ac74ca2f2f 4498236: RFE: Provide a toString method for PropertyChangeEvent and other classes
malenkov
parents: 2
diff changeset
   229
            sb.append("}");
99ac74ca2f2f 4498236: RFE: Provide a toString method for PropertyChangeEvent and other classes
malenkov
parents: 2
diff changeset
   230
        }
99ac74ca2f2f 4498236: RFE: Provide a toString method for PropertyChangeEvent and other classes
malenkov
parents: 2
diff changeset
   231
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
}