ScrollBarInterface.java
上传用户:luxiaowei
上传日期:2022-06-06
资源大小:58k
文件大小:1k
源码类别:

J2ME

开发平台:

Java

  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package com.framework;
  6. /**
  7.  *
  8.  * @author Swaroop Kumar
  9.  */
  10. public interface ScrollBarInterface {
  11. /**
  12.      * This method returns the current selected control of the component.
  13.      * @return Selected control of the component.
  14.      */
  15.     public UIControl getSelectedChild();
  16.     /**
  17.      * This method returns the addition of Y position of the container placed 
  18.      * on the control and Y position of control itself.
  19.      * @return actual Y position from where drawing of other controls can be started.
  20.      */
  21.     public int getDrawingYPos();
  22.     /**
  23.      * This method recursively calls the same method of its parent by adding it's own y position in Y parameter.
  24.      */
  25.     public  void setScrollBarPosition(int yPos, int controlHeight);
  26. }