Guest User

Untitled

a guest
Jul 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. public void startMIDlet() {
  2. switchDisplayable(null, getList());
  3. try {
  4. getList().append("aaa", null);
  5. getList().setFont(0, Font.getFont(Font.FACE_SYSTEM, Font.STYLE_BOLD | Font.STYLE_ITALIC, Font.SIZE_SMALL));
  6. Thread.sleep(5000);
  7. getList().append("bbb", null);
  8. getList().setFont(1, Font.getFont(Font.FACE_SYSTEM, Font.STYLE_BOLD | Font.STYLE_ITALIC, Font.SIZE_SMALL));
  9. Thread.sleep(5000);
  10. getList().append("ccc", null);
  11. getList().setFont(2, Font.getFont(Font.FACE_SYSTEM, Font.STYLE_BOLD | Font.STYLE_ITALIC, Font.SIZE_SMALL));
  12. } catch(InterruptedException e) {
  13.  
  14. }
  15. }
Add Comment
Please, Sign In to add comment