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