Returns the name of this generic type. For wildcard types, returns "?"; otherwise returns the type name. @return the type name
()
| 178 | * @return the type name |
| 179 | */ |
| 180 | public String getName() { |
| 181 | return (isWildcard() ? "?" : name); |
| 182 | } |
| 183 | |
| 184 | /** |
| 185 | * Sets the name of this generic type. |
no test coverage detected