1. /*
  2. * @(#)ParameterDescriptor.java 1.19 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.beans;
  8. /**
  9. * The ParameterDescriptor class allows bean implementors to provide
  10. * additional information on each of their parameters, beyond the
  11. * low level type information provided by the java.lang.reflect.Method
  12. * class.
  13. * <p>
  14. * Currently all our state comes from the FeatureDescriptor base class.
  15. */
  16. public class ParameterDescriptor extends FeatureDescriptor {
  17. /**
  18. * Public default constructor.
  19. */
  20. public ParameterDescriptor() {
  21. }
  22. /**
  23. * Package private dup constructor.
  24. * This must isolate the new object from any changes to the old object.
  25. */
  26. ParameterDescriptor(ParameterDescriptor old) {
  27. super(old);
  28. }
  29. }