| 8 | import jadx.api.data.ICodeRename; |
| 9 | |
| 10 | public class JadxCodeData implements ICodeData { |
| 11 | private List<ICodeComment> comments = Collections.emptyList(); |
| 12 | private List<ICodeRename> renames = Collections.emptyList(); |
| 13 | |
| 14 | @Override |
| 15 | public List<ICodeComment> getComments() { |
| 16 | return comments; |
| 17 | } |
| 18 | |
| 19 | public void setComments(List<ICodeComment> comments) { |
| 20 | this.comments = comments; |
| 21 | } |
| 22 | |
| 23 | @Override |
| 24 | public List<ICodeRename> getRenames() { |
| 25 | return renames; |
| 26 | } |
| 27 | |
| 28 | public void setRenames(List<ICodeRename> renames) { |
| 29 | this.renames = renames; |
| 30 | } |
| 31 | |
| 32 | @Override |
| 33 | public boolean isEmpty() { |
| 34 | return comments.isEmpty() && renames.isEmpty(); |
| 35 | } |
| 36 | } |
nothing calls this directly
no outgoing calls
no test coverage detected