BeanProperty.java 491 B

123456789101112131415161718192021222324
  1. package org.zhongzheng.common.utils;
  2. //
  3. // Source code recreated from a .class file by IntelliJ IDEA
  4. // (powered by FernFlower decompiler)
  5. //
  6. public class BeanProperty {
  7. private final String name;
  8. private final Class<?> type;
  9. public String getName() {
  10. return this.name;
  11. }
  12. public Class<?> getType() {
  13. return this.type;
  14. }
  15. public BeanProperty(final String name, final Class<?> type) {
  16. this.name = name;
  17. this.type = type;
  18. }
  19. }