Returns true if the element is package-private.
()
| 114 | |
| 115 | |
| 116 | public final boolean isPackagePrivate() { |
| 117 | return !isPrivate() && !isPublic() && !isProtected(); |
| 118 | } |
| 119 | |
| 120 | /** Returns true if the element is private. */ |
| 121 |
nothing calls this directly
no test coverage detected