()
| 33 | private PropertyChangeSupport changes = new PropertyChangeSupport(this); |
| 34 | |
| 35 | public static Servers getInstance() throws Exception { |
| 36 | if (instance == null) { |
| 37 | |
| 38 | instance = new Servers(); |
| 39 | } |
| 40 | return instance; |
| 41 | } |
| 42 | |
| 43 | private Database database; |
| 44 | private Dao<Server, Integer> dao; |
no outgoing calls
no test coverage detected