Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while(true) {
- String selection = textArea.getSelectedText(); //název tý textarea
- if(selection!=null && selection.length()!=0) {
- System.out.println("není nic vybráno");
- }
- else {
- System.out.println("je vybrán tect o délce "+selection.length());
- }
- // "spát" po dobu 150 ms
- try {
- Thread.sleep(150);
- } catch(InterruptedException ex) {
- //pokud nás někdo probudí, prostě nebudem nic dělat :)
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement