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

J2ME

开发平台:

Java

  1. /*
  2.  * PremiumAlertsTabPane.java
  3.  *
  4.  * Created on April 22, 2010, 5:42 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.design;
  10. import com.MOM.ui.control.*;
  11. import com.MOM.Constants;
  12. import com.MOM.resources.Resources;
  13. import com.MOM.ui.MOMUiFactory;
  14. import com.framework.ScrollableContainer;
  15. import com.framework.TickerTextControl;
  16. /**
  17.  *
  18.  * @author Tejaswi
  19.  */
  20. public class PremiumAlertsTabPane extends MOMTabPane{
  21.     
  22.     
  23.     /** Creates a new instance of PremiumAlertsTabPane */
  24.     public PremiumAlertsTabPane() {
  25.     }
  26.     
  27.     public void init() {
  28.        tabButton = MOMUiFactory.getCommanTabButton(Constants.PREMIUM_ALERTS_STRING);
  29.        tabBody = new ScrollableContainer();
  30.        tabBody = new ScrollableContainer();
  31.         tabBody.setLayout(Constants.LIST_LAYOUT_01);
  32.         for (int i = 0; i < 10; i++) {
  33.             TickerTextControl control = new TickerTextControl("premium alerts control: " + (i + 1) , Resources.getInstance().getFontBlackMediumBold() );
  34.             control.setSelectionBgColor(0xff0000);
  35.             tabBody.addChildren(control);
  36.         }
  37.     }
  38.     
  39. }