FileDocCategorySizeDatePackage
PersistentFieldInfo.javaAPI DocGlassfish v2 API2911Fri May 04 22:31:22 BST 2007com.sun.enterprise.deployment

PersistentFieldInfo

public final class PersistentFieldInfo extends Object implements Serializable
This class stores information about CMP and Foreign Key fields. Note: the "field" variable is only available at runtime.
author
Sanjeev Krishnan

Fields Summary
public transient Field
field
public String
name
public transient Class
type
public String
relatedName
public PersistenceDescriptor
relatedObj
Constructors Summary
public PersistentFieldInfo()

public PersistentFieldInfo(PersistentFieldInfo other)

        field       = other.field;
        name        = other.name;
        type        = other.type;
        relatedName = other.relatedName;
        relatedObj  =  other.relatedObj;
    
Methods Summary