MCPcopy Index your code
hub / github.com/graphql-java/graphql-java / Cat

Class Cat

src/test/groovy/graphql/GarfieldSchema.java:51–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49 }
50
51 public static class Cat implements Named {
52 private final String name;
53
54 private final boolean meows;
55
56 public Cat(String name, boolean meows) {
57 this.name = name;
58 this.meows = meows;
59 }
60
61 public boolean isMeows() {
62 return meows;
63 }
64
65 @Override
66 public String getName() {
67 return name;
68 }
69 }
70
71 public static class Person implements Named {
72 private final String name;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected