Here you can find the source of getScrollPaneViewComponent(JComponent component)
public static Component getScrollPaneViewComponent(JComponent component)
//package com.java2s; //License from project: Open Source License import javax.swing.*; import java.awt.*; public class Main { public static Component getScrollPaneViewComponent(JComponent component) { if (component instanceof JScrollPane) { return ((JScrollPane) component).getViewport().getView(); }// w w w . j a v a 2 s. c o m return null; } }