Represents class constant elements. We uses String instead of Type to represent the type information of class element for the same reason as Annotation.
| 28 | * information of class element for the same reason as {@link Annotation}. |
| 29 | */ |
| 30 | public record ClassElement(String classDescriptor) implements Element { |
| 31 | |
| 32 | @Override |
| 33 | public String toString() { |
| 34 | return classDescriptor + ".class"; |
| 35 | } |
| 36 | } |
nothing calls this directly
no outgoing calls
no test coverage detected