001    // GraphLab Project: http://graphlab.sharif.edu
002    // Copyright (C) 2008 Mathematical Science Department of Sharif University of Technology
003    // Distributed under the terms of the GNU General Public License (GPL): http://www.gnu.org/licenses/
004    
005    package graphlab.graph.ui;
006    
007    import javax.swing.*;
008    
009    /**
010     * @author Azin Azadi
011     */
012    public class GSplitedPane extends JSplitPane {
013        public GHTMLPageComponent helper;
014        public JComponent main;
015    
016        public GSplitedPane(GHTMLPageComponent helper, JComponent main) {
017            super(JSplitPane.VERTICAL_SPLIT, helper, main);
018            this.helper = helper;
019            this.main = main;
020            setDividerLocation(50);
021            setDividerSize(1);
022        }
023    }