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

J2ME

开发平台:

Java

  1. /*
  2.  * PortFolioTabPane.java
  3.  *
  4.  * Created on April 22, 2010, 5:39 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 PortFolioTabPane extends MOMTabPane{
  21.     
  22.     
  23.     /** Creates a new instance of PortFolioTabPane */
  24.     public PortFolioTabPane() {
  25.     }
  26.     
  27.     public void init() {
  28.        tabButton = MOMUiFactory.getCommanTabButton(Constants.PORTFOLIO_STRING);
  29.        tabBody = new ScrollableContainer();
  30.        
  31.        tabBody = new ScrollableContainer();
  32.         tabBody.setLayout(Constants.LIST_LAYOUT_01);
  33.         for (int i = 0; i < 10; i++) {
  34.             TickerTextControl control = new TickerTextControl("Port folio: " + (i + 1) , Resources.getInstance().getFontBlackMediumBold() );
  35.             control.setSelectionBgColor(0xff0000);
  36.             tabBody.addChildren(control);
  37.         }
  38.     }
  39.     
  40. }