| AnInteger.java |
package lectures.composite.objects_shapes;
import util.annotations.WebDocuments;
@WebDocuments({"Lectures/CompositeObjectsShapes.pptx", "Lectures/CompositeObjectsShapes.pdf", "Videos/CompositeObjectsShapes.avi"})
public class AnInteger implements MyInteger {
int wrappedInt;
public AnInteger (int anInt) {
wrappedInt = anInt;
}
@Override
public int intValue() {
return wrappedInt;
}
}