1 23 24 package com.sun.enterprise.deployment; 25 26 import java.lang.reflect.*; 27 28 29 35 36 public final class PersistentFieldInfo { 37 38 public PersistentFieldInfo() {} 39 40 public PersistentFieldInfo(PersistentFieldInfo other) { 41 field = other.field; 42 name = other.name; 43 type = other.type; 44 relatedName = other.relatedName; 45 relatedObj = other.relatedObj; 46 } 47 48 public Field field; 49 public String name; 50 public Class type; 51 52 public String relatedName; 56 public PersistenceDescriptor relatedObj; 57 } 58 | Popular Tags |