| 123456789101112131415161718192021222324 |
- package org.zhongzheng.common.utils;
- //
- // Source code recreated from a .class file by IntelliJ IDEA
- // (powered by FernFlower decompiler)
- //
- public class BeanProperty {
- private final String name;
- private final Class<?> type;
- public String getName() {
- return this.name;
- }
- public Class<?> getType() {
- return this.type;
- }
- public BeanProperty(final String name, final Class<?> type) {
- this.name = name;
- this.type = type;
- }
- }
|