MCPcopy Create free account
hub / github.com/LFYSec/MScan / ClassElement

Class ClassElement

src/main/java/pascal/taie/language/annotation/ClassElement.java:30–36  ·  view source on GitHub ↗

Represents class constant elements. We uses String instead of Type to represent the type information of class element for the same reason as Annotation.

Source from the content-addressed store, hash-verified

28 * information of class element for the same reason as {@link Annotation}.
29 */
30public record ClassElement(String classDescriptor) implements Element {
31
32 @Override
33 public String toString() {
34 return classDescriptor + ".class";
35 }
36}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected