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

Class Wrapping

innerclasses/Wrapping.java:5–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3// We make no guarantees that this code is fit for any purpose.
4// Visit http://OnJava8.com for more book information.
5public class Wrapping {
6 private int i;
7 public Wrapping(int x) { i = x; }
8 public int value() { return i; }
9}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected