MCPcopy Create free account
hub / github.com/L1yp/van-app / Demo

Class Demo

src/test/java/com/l1yp/Main.java:10–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8public class Main {
9
10 public static class Demo {
11 public Integer id;
12 public String name;
13
14 public Demo(Integer id, String name) {
15 this.id = id;
16 this.name = name;
17 }
18
19
20 public Integer getId() {
21 return id;
22 }
23 }
24
25 public static void main(String[] args) {
26 List<Demo> demos = new ArrayList<>();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected