Here you can find the source of findScrollPane(JTable p_Table)
public static JScrollPane findScrollPane(JTable p_Table)
//package com.java2s; //License from project: Open Source License import javax.swing.*; public class Main { public static JScrollPane findScrollPane(JTable p_Table) { return (JScrollPane) SwingUtilities.getAncestorOfClass(JScrollPane.class, p_Table); }/*from w w w . java2 s .com*/ }