Guest User

Untitled

a guest
May 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1.     for(int j=0; j< 10; j++)
  2.     {
  3.        
  4.         if(j == 2)
  5.             editorTA.setForeground(Color.red);
  6.         else
  7.             editorTA.setForeground(Color.black);                
  8.        
  9.         editorTA.append("" +j);
  10.         editorTA.append("\n");
  11.     }
Add Comment
Please, Sign In to add comment