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