()
| 46 | } |
| 47 | |
| 48 | func (self *msgModel) MsgID() int { |
| 49 | return int(util.StringHash(self.FullName())) |
| 50 | } |
| 51 | |
| 52 | func (self *msgModel) FullName() string { |
| 53 | return fmt.Sprintf("%s.%s", self.parent.PackageName(), self.Name()) |
nothing calls this directly
no test coverage detected