internal PeerFixer(ScrollPane scroller) { this.Scroller = scroller; }
internal PeerFixer(ScrollPane outerInstance, ScrollPane scroller) { this.OuterInstance = outerInstance; this.Scroller = scroller; }
public AccessibleAWTScrollPane(ScrollPane outerInstance) : base(outerInstance) { this.OuterInstance = outerInstance; }
/// <summary> /// Constructs a new object to represent specified scrollabar /// of the specified <code>ScrollPane</code>. /// Only ScrollPane creates instances of this class. </summary> /// <param name="sp"> <code>ScrollPane</code> </param> /// <param name="l"> <code>AdjustmentListener</code> to add upon creation. </param> /// <param name="orientation"> specifies which scrollbar this object represents, /// can be either <code>Adjustable.HORIZONTAL</code> /// or <code>Adjustable.VERTICAL</code>. </param> internal ScrollPaneAdjustable(ScrollPane sp, AdjustmentListener l, int orientation) { this.Sp = sp; this.Orientation_Renamed = orientation; AddAdjustmentListener(l); }