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

J2ME

开发平台:

Java

  1. /*
  2.  * MOMTabPaneInterface.java
  3.  *
  4.  * Created on April 22, 2010, 12:47 PM
  5.  *
  6.  * To change this template, choose Tools | Template Manager
  7.  * and open the template in the editor.
  8.  */
  9. package com.MOM.ui.control;
  10. import com.framework.ScrollableContainer;
  11. import com.framework.UIControl;
  12. /**
  13.  *
  14.  * @author Tejaswi
  15.  */
  16. public abstract class MOMTabPane {
  17.    protected UIControl tabButton;
  18.    protected ScrollableContainer tabBody;
  19.    protected boolean initTabPane = false;
  20.    public MOMTabPane()
  21.    {
  22.         init();
  23.    }
  24.    public final UIControl getTabButton()
  25.    {
  26.        return tabButton;
  27.    }
  28.    public final ScrollableContainer getTabPaneBody()
  29.    {
  30.        return tabBody;
  31.    }
  32.    public boolean getInitStatus()
  33.    {
  34.        return initTabPane;
  35.    }
  36.    public void setInitStatus(boolean value)
  37.    {
  38.        this.initTabPane = value;
  39.    }
  40.    public abstract void init();
  41. }