FileDocCategorySizeDatePackage
XMLPrimaryKeyJoinColumns.javaAPI DocGlassfish v2 API3202Tue May 22 16:54:30 BST 2007oracle.toplink.essentials.internal.ejb.cmp3.xml.columns

XMLPrimaryKeyJoinColumns

public class XMLPrimaryKeyJoinColumns extends MetadataPrimaryKeyJoinColumns
Object to hold onto XML primary key join column metadata.
author
Guy Pelletier
since
TopLink EJB 3.0 Reference Implementation

Fields Summary
Constructors Summary
public XMLPrimaryKeyJoinColumns(Node node, XMLHelper helper, String sourceTableName, String targetTableName)
INTERNAL:

        super(sourceTableName, targetTableName);

        // Process the primary-key-join-column nodes.        
        NodeList nodes = helper.getNodes(node, XMLConstants.PK_JOIN_COLUMN);

        if (nodes != null) {
            for (int i = 0; i < nodes.getLength(); i++) {
                m_pkJoinColumns.add(new XMLPrimaryKeyJoinColumn(nodes.item(i), helper, sourceTableName, targetTableName));
            }
		}
    
Methods Summary
public booleanloadedFromXML()
INTERNAL:

        return true;