Searched refs:fromClazz (Results 1 – 1 of 1) sorted by relevance
23 private <T> void copy(T from, T to, Class<?> fromClazz) { in copy() argument24 while (fromClazz != Object.class) { in copy()25 copyValues(from, to, fromClazz); in copy()26 fromClazz = fromClazz.getSuperclass(); in copy()