()
| 12 | private Vector keysList; |
| 13 | |
| 14 | public KeyScheme() { |
| 15 | keysList = new Vector(); |
| 16 | UserKey modificatorKey = new UserKey(); |
| 17 | modificatorKey.command_id = -1; |
| 18 | modificatorKey.modificator = false; |
| 19 | keysList.addElement(modificatorKey); |
| 20 | } |
| 21 | |
| 22 | public KeyScheme(KeyScheme keyScheme) { |
| 23 | // this(); |
nothing calls this directly
no test coverage detected