(int type, String contact, String message)
| 74 | public boolean handled = false; |
| 75 | |
| 76 | synchronized public void addPopup(int type, String contact, String message){ |
| 77 | if (message!=null) { |
| 78 | //popUps.addElement(new PopUpElement(type, contact, StringUtils.parseMessage(message, width-border-padding, height-border-padding, false, font))); |
| 79 | font=FontCache.getFont(false, FontCache.baloon); //Issue 88 |
| 80 | popUps.addElement(new PopUpElement(type, contact, StringUtils.parseMessage(message, width-border-padding, font))); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | private PopUp() { |
| 85 | popUps = new Vector(); |
no test coverage detected