Here you can find the source of getScrollPane(Component component)
public static JScrollPane getScrollPane(Component component)
//package com.java2s; import java.awt.Component; import javax.swing.JScrollPane; import javax.swing.SwingUtilities; public class Main { /**/*from ww w . j a va2s. c o m*/ * Get the JScrollPane that contains the passed in component. * Returns null if the component is not in a JScrollPane. */ public static JScrollPane getScrollPane(Component component) { return ((JScrollPane) SwingUtilities.getAncestorOfClass(JScrollPane.class, component)); } }