Package jcurses.widgets

Examples of jcurses.widgets.ScrollbarPainter$ScrollbarData


 
  private ResponsiveLock uiLock = new ResponsiveLock();
  private Lock backgroundLock = uiLock.createBackgroundLock(1500);

  public Less() {
    this.scrollbar = new ScrollbarPainter(this);

    list.addPaintListener(this);
  }


 
  public ScrollbarCommand(Less less, CharSequence buffer) {
    this.less = less;
    this.buffer = buffer;
   
    this.scrollbar = new ScrollbarPainter(this);

    less.list.addPaintListener(this);
  }

TOP

Related Classes of jcurses.widgets.ScrollbarPainter$ScrollbarData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.