MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / main

Method main

reuse/Orc.java:29–34  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

27 return "Orc " + orcNumber + ": " + super.toString();
28 }
29 public static void main(String[] args) {
30 Orc orc = new Orc("Limburger", 12);
31 System.out.println(orc);
32 orc.change("Bob", 19);
33 System.out.println(orc);
34 }
35}
36/* Output:
37Orc 12: I'm a Villain and my name is Limburger

Callers

nothing calls this directly

Calls 1

changeMethod · 0.95

Tested by

no test coverage detected