//: c08:Wrapping.java // From 'Thinking in Java, 2nd ed.' by Bruce Eckel // www.BruceEckel.com. See copyright notice in CopyRight.txt. public class Wrapping { private int i; public Wrapping(int x) { i = x; } public int value() { return i; } } ///:~