001 package com.sptci.rwt.webui.tree;
002
003 import com.sptci.rwt.ForeignKeyMetaData;
004
005 /**
006 * A {@link echopointng.tree.TreeNode} that represents the foreign key
007 * columns for a table in the active database connection. This node uses
008 * a {@link ForeignKeyMetaData} object as its model.
009 *
010 * <p>© Copyright 2007 <a href='http://sptci.com/' target='_new'>Sans Pareil Technologies, Inc.</a></p>
011 * @author Rakesh Vidyadharan 2007-10-07
012 * @version $Id: ForeignKeyNode.java 4123 2008-05-25 21:49:01Z rakesh $
013 */
014 public class ForeignKeyNode extends LeafNode<ForeignKeyMetaData>
015 {
016 /**
017 * Create a new tree node using the specified metadata object. The
018 * object represents a column in the database.
019 *
020 * @param metadata The metadata object to use as the model for this node.
021 */
022 public ForeignKeyNode( final ForeignKeyMetaData metadata )
023 {
024 super( metadata );
025 }
026 }