(Long id, String content, Integer contentWordCount)
| 13 | private Integer contentWordCount; |
| 14 | |
| 15 | public PDFData(Long id, String content, Integer contentWordCount) { |
| 16 | this.id = id; |
| 17 | this.content = content; |
| 18 | this.contentWordCount = contentWordCount; |
| 19 | } |
| 20 | |
| 21 | public Long getId() { |
| 22 | return id; |
nothing calls this directly
no outgoing calls
no test coverage detected