GetTitle returns the loadpoint title
()
| 105 | |
| 106 | // GetTitle returns the loadpoint title |
| 107 | func (lp *Loadpoint) GetTitle() string { |
| 108 | lp.RLock() |
| 109 | defer lp.RUnlock() |
| 110 | return lp.title |
| 111 | } |
| 112 | |
| 113 | // SetTitle sets the loadpoint title |
| 114 | func (lp *Loadpoint) SetTitle(title string) { |
no test coverage detected