1 19 20 package org.netbeans.modules.diff; 21 22 import java.awt.Rectangle ; 23 import javax.swing.*; 24 25 32 public interface NestableDiffView { 33 34 38 public void joinScrollPane(JScrollPane pane); 39 40 44 public int getInnerWidth(); 45 46 49 public void setInnerWidth(int width); 50 51 55 public void setHorizontalPosition(int pos); 56 57 60 public int getChangeY(int change); 61 62 63 public int getInnerScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction); 64 65 66 public int getInnerScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction); 67 } 68 | Popular Tags |